You can subscribe to this list here.
2002 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(3) |
Nov
|
Dec
(2) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(1) |
Feb
(11) |
Mar
(9) |
Apr
(1) |
May
(5) |
Jun
(5) |
Jul
(4) |
Aug
(3) |
Sep
(15) |
Oct
(8) |
Nov
(9) |
Dec
(11) |
2004 |
Jan
(5) |
Feb
(2) |
Mar
(1) |
Apr
(3) |
May
(6) |
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
|
Dec
(3) |
2005 |
Jan
(1) |
Feb
(7) |
Mar
(6) |
Apr
(36) |
May
(20) |
Jun
(42) |
Jul
(21) |
Aug
(12) |
Sep
(56) |
Oct
(5) |
Nov
(55) |
Dec
(53) |
2006 |
Jan
(43) |
Feb
(83) |
Mar
(98) |
Apr
(42) |
May
(68) |
Jun
(55) |
Jul
(50) |
Aug
(104) |
Sep
(13) |
Oct
(70) |
Nov
(37) |
Dec
(42) |
2007 |
Jan
(56) |
Feb
(18) |
Mar
(43) |
Apr
(80) |
May
(65) |
Jun
(149) |
Jul
(103) |
Aug
(71) |
Sep
(62) |
Oct
(67) |
Nov
(72) |
Dec
(63) |
2008 |
Jan
(64) |
Feb
(63) |
Mar
(31) |
Apr
(42) |
May
(71) |
Jun
(62) |
Jul
(37) |
Aug
(25) |
Sep
(5) |
Oct
(2) |
Nov
(7) |
Dec
(14) |
2009 |
Jan
(20) |
Feb
(15) |
Mar
(19) |
Apr
(8) |
May
(7) |
Jun
|
Jul
(37) |
Aug
(12) |
Sep
(19) |
Oct
(5) |
Nov
(1) |
Dec
(4) |
2010 |
Jan
(5) |
Feb
(24) |
Mar
(16) |
Apr
(9) |
May
(4) |
Jun
|
Jul
|
Aug
(6) |
Sep
(2) |
Oct
(1) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(7) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
(6) |
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
(2) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(5) |
Dec
|
2016 |
Jan
|
Feb
(1) |
Mar
(1) |
Apr
|
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
(1) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: FUJIMOTO H. <hi...@im...> - 2002-12-28 12:45:03
|
RubyCocoa 0.4.0 was released! http://www.imasy.or.jp/~hisa/mac/rubycocoa/ The '.pkg' binary package is available for Mac OS X 10.2. All of framework, library, documents, samples and ProejctBuilder templates are contained in the package. These items will be installed into the appropriate place. It is available to start of RubyCocoa programming or use of RubyCocoa application immediately. == Changes from 0.3.2 * Ruby 1.8 supported * revive RubyCocoa.framework All of core implementation which are written with Objective-C or Ruby is contained in the RubyCocoa framework. * rename the extended library and move the library == What's RubyCocoa? RubyCocoa is a Mac OS X framework that allows Cocoa programming in the Object-Oriented Scripting Language Ruby. RubyCocoa allows writing a Cocoa application in Ruby. It allows creating and using a Cocoa object in a Ruby script. In Cocoa application, mixture of program written by both Ruby and Objective-C is possible. Some cases using RubyCocoa: * Exploration of a Cocoa object's feature with 'irb' interactively * Prototyping of a Cocoa application * Cocoa application that include good feature of Ruby and Objective-C * Wrapping Mac OS X native GUI for Ruby script -- FUJIMOTO Hisakuni |
From: FUJIMOTO H. <hi...@im...> - 2002-10-04 09:48:57
|
RubyCocoa 0.3.2 has released. http://www.imasy.or.jp/~hisa/mac/rubycocoa/ == changes from 0.3.1 add a library for AddressBook.framework e.g.: require 'osx/addressbook' ab = OSX::ABAddressBook.sharedAddressBook ab.people.to_a.each {|i| puts i.compositeName.to_s } regards, -- FUJIMOTO Hisa |
From: Chris T. <cj...@cj...> - 2002-10-04 04:06:29
|
On Thursday, October 3, 2002, at 08:47 PM, Rod Schmidt wrote: > I haven't seen anything on this and I'm wondering what the options are > for deploying a RubyCocoa app. Does the user have to install RubyCocoa > on their machine or can I deploy it so that it is part of the > application bundle. If so, how? > > Or do I have to create some kind of installer that will install > RubyCocoa for them? Again, how or has somebody already done this? In CVS, see the file tools/gen_standalone_library.rb on the ct-file-size-opt branch. This script generates a Ruby + RubyCocoa static library that you can link into your app. You can distribute the resulting application, and the user should never know the difference. No installer required. This actually worked around RubyCocoa 0.2.5ish, but I haven't had time to continue work on it (new job, new baby), and I don't know if it still works with 0.3. It's pretty simple, though, and there are obvious improvements that could be made. Shouldn't be too difficult to bring up to date if needed (famous last words...). Another way to do it would be to bundle the RubyCocoa framework and libruby inside your app bundle, but this solution incurs additional launch time overhead. Chris |
From: Rod S. <rsc...@xm...> - 2002-10-04 03:47:16
|
I haven't seen anything on this and I'm wondering what the options are for deploying a RubyCocoa app. Does the user have to install RubyCocoa on their machine or can I deploy it so that it is part of the application bundle. If so, how? Or do I have to create some kind of installer that will install RubyCocoa for them? Again, how or has somebody already done this? Thanks, Rod Schmidt 'There is no gene for the human spirit" www.rodschmidt.com |
From: FUJIMOTO H. <hi...@im...> - 2002-09-30 08:48:07
|
test. reply-to check. |
From: FUJIMOTO H. <hi...@im...> - 2002-09-30 07:53:56
|
Hi Rod-san, At Sun, 29 Sep 2002 23:52:42 -0600, Rod Schmidt wrote: > Does RubyCocoa let you call ruby using objective-C syntax? For example, > say you have the following class: > > class Hello > def sayHello > "Hello" > end > end > > From an Objective-C class can I do the following (or something similar): > > id hello = [Hello alloc] initialize]; > NSLog(@"%@", [hello sayHello]]; Following code may be available for your purpose. But such conding is almost no tested currently. I am not confident about this code work. const char* ruby_script = "class Hello;def sayHello() \"Hello\" end end"; id hello = [[NSClassFromString(@"RBObject") alloc] initWithCStrig: ruby_script]; > I don't think RubyCocoa does this, because it's the opposite of what it > is designed for. Is there perhaps another project that is working on > this? You are right. I think that my decision which removed RubyCocoa.framework from RubyCocoa 0.3 was a mistake. I have a plan for RubyCocoa 0.4. Almost RubyCocoa code and libruby will be implemented as RubyCocoa.framework. This framework will be able to use directory or through osx_objc.bundle. thanks, first e-mail for this mailing list :-) -- FUJIMOTO Hisa |
From: Rod S. <rsc...@xm...> - 2002-09-30 05:52:45
|
Does RubyCocoa let you call ruby using objective-C syntax? For example, say you have the following class: class Hello def sayHello "Hello" end end From an Objective-C class can I do the following (or something similar): id hello = [Hello alloc] initialize]; NSLog(@"%@", [hello sayHello]]; I don't think RubyCocoa does this, because it's the opposite of what it is designed for. Is there perhaps another project that is working on this? Rod Schmidt infiniteNIL Software www.infinitenil.com |
From: FUJIMOTO H. <hi...@im...> - 2002-01-16 14:15:08
|
RubyCocoa is libraries and framework for using Cocoa Objects on MacOS X in Ruby scripts. You can use RubyCocoa for: * using Cocoa objects in Ruby Script. * writing Cocoa application by Ruby. This mailing list is the place for talking about RubyCocoa (and RubyAEOSA). Don't hesitate to talk. Feel free. If you don't know about RubyCocoa, Ruby, Cocoa or MacOS X, visit some web sites follows: RubyCocoa project http://sourceforge.net/projects/rubycocoa/ RubyCocoa http://www.imasy.or.jp/~hisa/mac/rubycocoa/ RubyAEOSA http://www.imasy.or.jp/~hisa/mac/rubyaeosa/ Ruby http://www.ruby-lang.org/ MacOS X http://developer.apple.com/macosx/ Cocoa http://developer.apple.com/cocoa/index.html -- FUJIMOTO Hisakuni |
From: FUJIMOTO H. <hi...@im...> - 2002-01-16 14:02:14
|
RubyCocoa is libraries and framework for using Cocoa Objects on MacOS X in Ruby scripts. You can use RubyCocoa for: * using Cocoa objects in Ruby Script. * writing Cocoa application by Ruby. This mailing list is the place for talking about RubyCocoa (and RubyAEOSA). Don't hesitate to talk. Feel free. If you don't know about RubyCocoa, Ruby, Cocoa or MacOS X, visit some web sites follows: RubyCocoa project http://sourceforge.net/projects/rubycocoa/ RubyCocoa http://www.imasy.or.jp/~hisa/mac/rubycocoa/ RubyAEOSA http://www.imasy.or.jp/~hisa/mac/rubyaeosa/ Ruby http://www.ruby-lang.org/ MacOS X http://developer.apple.com/macosx/ Cocoa http://developer.apple.com/cocoa/index.html -- FUJIMOTO Hisakuni |