[MacRuby-devel] MacRuby.h not found
Hello, After installing, in order: - Xcode 4.3.3 (update of 4.3.2) - Xcode 4.5DP1 - MacRuby 0.12 binary distribution I create a new MacRuby project (so some MacRuby template is found), but Xcode 4.3.3 fails to compile the main.m file. It chokes on "#import " with the error "MacRuby/MacRuby.h file not found". I checked that the MacRuby framework appear in my project and is listed in the "Link Binary With Libraries" build phases. However, it appears in red in both places and file inspector says it's located at "Library/Frameworks/MacRuby.framework", "Relative to Developer Directory". I'm not sure which is the "Developer Directory" (how can I find out?), but MacRuby.framework sure doesn't appear in my ~/Developer directory. Inspecting the MacRuby installer logs shows that it installed it right in /Library/Frameworks, not in any developer directory. This is confirmed by a search of MacRuby.framework using the mdfind command: MacRuby.framework is only to be found in /Library/Frameworks. xcode-select -print-path reports /Applications/Xcode433.app/Developer, but MacRuby.framework doesn't appear in /Applications/Xcode433.app/Developer/Library/Frameworks. I tried to replace the MacRuby.framework from the template by the one that is located in /Library/Frameworks. The project now shows it in black, not red, so it's found now. However, I still have the exact same compiler error. Looking at the Xcode target settings, I found that the Framework Search Paths setting points to the Frameworks directory within Xcode433. This seems to suggest that the installer installed MacRuby.framework in the wrong location: /Library instead of the currently-selected Xcode directory. What would be the next step in my case? Is it enough to copy over MacRuby.framework to /Applications/Xcode433.app/Developer/Library/Frameworks? Thanks, Jean-Denis PS: to be complete: Calling "macruby --version" in the terminal reports "MacRuby 0.12 (ruby 1.9.2) [universal-darwin10.0, x86_64]", but if I recall correctly, so did the rather old nightly build I had installed previously. Calling "which macruby" reports /usr/local/bin/macruby, which is consistent with the MacRuby installer. [Logo Kleegroup] Klee Group is a great place to work – Il fait bon travailler à Klee Group ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] MacRuby.h not found
Hi, MacRuby does not support Mountain Lion yet. Please use MacRuby with Lion or Snow Leopard. Thanks 2012/6/12 Jean-Denis MUYS : > Hello, > > After installing, in order: > > - Xcode 4.3.3 (update of 4.3.2) > - Xcode 4.5DP1 > - MacRuby 0.12 binary distribution > > I create a new MacRuby project (so some MacRuby template is found), but Xcode > 4.3.3 fails to compile the main.m file. It chokes on "#import > " with the error "MacRuby/MacRuby.h file not found". > > I checked that the MacRuby framework appear in my project and is listed in > the "Link Binary With Libraries" build phases. > > However, it appears in red in both places and file inspector says it's > located at "Library/Frameworks/MacRuby.framework", "Relative to Developer > Directory". > > I'm not sure which is the "Developer Directory" (how can I find out?), but > MacRuby.framework sure doesn't appear in my ~/Developer directory. Inspecting > the MacRuby installer logs shows that it installed it right in > /Library/Frameworks, not in any developer directory. This is confirmed by a > search of MacRuby.framework using the mdfind command: MacRuby.framework is > only to be found in /Library/Frameworks. > > xcode-select -print-path reports /Applications/Xcode433.app/Developer, but > MacRuby.framework doesn't appear in > /Applications/Xcode433.app/Developer/Library/Frameworks. > > I tried to replace the MacRuby.framework from the template by the one that is > located in /Library/Frameworks. The project now shows it in black, not red, > so it's found now. However, I still have the exact same compiler error. > > Looking at the Xcode target settings, I found that the Framework Search Paths > setting points to the Frameworks directory within Xcode433. > > This seems to suggest that the installer installed MacRuby.framework in the > wrong location: /Library instead of the currently-selected Xcode directory. > > What would be the next step in my case? Is it enough to copy over > MacRuby.framework to /Applications/Xcode433.app/Developer/Library/Frameworks? > > Thanks, > > Jean-Denis > > > PS: to be complete: > > Calling "macruby --version" in the terminal reports "MacRuby 0.12 (ruby > 1.9.2) [universal-darwin10.0, x86_64]", but if I recall correctly, so did the > rather old nightly build I had installed previously. > > Calling "which macruby" reports /usr/local/bin/macruby, which is consistent > with the MacRuby installer. > > > > [Logo Kleegroup] > Klee Group is a great place to work – Il fait bon travailler à Klee Group > ___ > MacRuby-devel mailing list > [email protected] > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] MacRuby.h not found
I am not sure this is really the right thing to do, but copying the MacRuby.framework directory back inside the Xcode.app bundle solved my issue. This even lets me work indifferently with Xcode 4.3.3 and Xcode 45DP1. I used the ditto command, e.g.: sudo ditto /Library/Frameworks/MacRuby.framework /Applications/Xcode45-DP1.app/Contents/Developer/Library/Frameworks/MacRuby.framework Regards, Jean-Denis On 12 juin 2012, at 13:27, Jean-Denis Muys wrote: > Hello, > > After installing, in order: > > - Xcode 4.3.3 (update of 4.3.2) > - Xcode 4.5DP1 > - MacRuby 0.12 binary distribution > > I create a new MacRuby project (so some MacRuby template is found), but Xcode > 4.3.3 fails to compile the main.m file. It chokes on "#import > " with the error "MacRuby/MacRuby.h file not found". > > I checked that the MacRuby framework appear in my project and is listed in > the "Link Binary With Libraries" build phases. > > However, it appears in red in both places and file inspector says it's > located at "Library/Frameworks/MacRuby.framework", "Relative to Developer > Directory". > > I'm not sure which is the "Developer Directory" (how can I find out?), but > MacRuby.framework sure doesn't appear in my ~/Developer directory. Inspecting > the MacRuby installer logs shows that it installed it right in > /Library/Frameworks, not in any developer directory. This is confirmed by a > search of MacRuby.framework using the mdfind command: MacRuby.framework is > only to be found in /Library/Frameworks. > > xcode-select -print-path reports /Applications/Xcode433.app/Developer, but > MacRuby.framework doesn't appear in > /Applications/Xcode433.app/Developer/Library/Frameworks. > > I tried to replace the MacRuby.framework from the template by the one that is > located in /Library/Frameworks. The project now shows it in black, not red, > so it's found now. However, I still have the exact same compiler error. > > Looking at the Xcode target settings, I found that the Framework Search Paths > setting points to the Frameworks directory within Xcode433. > > This seems to suggest that the installer installed MacRuby.framework in the > wrong location: /Library instead of the currently-selected Xcode directory. > > What would be the next step in my case? Is it enough to copy over > MacRuby.framework to /Applications/Xcode433.app/Developer/Library/Frameworks? > > Thanks, > > Jean-Denis > > > PS: to be complete: > > Calling "macruby --version" in the terminal reports "MacRuby 0.12 (ruby > 1.9.2) [universal-darwin10.0, x86_64]", but if I recall correctly, so did the > rather old nightly build I had installed previously. > > Calling "which macruby" reports /usr/local/bin/macruby, which is consistent > with the MacRuby installer. > > ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
[MacRuby-devel] macgem 'undefined method' error
Hi, When executing: macgem install sequel I get: Fetching: sequel-3.36.1.gem ( 4%)ERROR: While executing gem … (NoMethodError) undefined method `to_str' for # I have no idea whether the issue is with MacRuby or sequel. Any suggestion? Thanks, Jean-Denis [Logo Kleegroup] Klee Group is a great place to work – Il fait bon travailler à Klee Group ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] macgem 'undefined method' error
OK, when I "sudo" that command, the error goes away. Sorry about the waste of bandwidth. Maybe the error message could be more explicit… Jean-Denis On 12 juin 2012, at 14:41, Jean-Denis Muys wrote: > Hi, > > When executing: > >macgem install sequel > > I get: > >Fetching: sequel-3.36.1.gem ( 4%)ERROR: While executing gem … > (NoMethodError) >undefined method `to_str' for # > > I have no idea whether the issue is with MacRuby or sequel. > > Any suggestion? > > Thanks, > > Jean-Denis > ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
[MacRuby-devel] problem using gems with MacRuby 0.12
Hi again, It seems there is some issue with MacRuby installing gems, as they don't seem to be made available to macirb: sudo macgem install --remote progressbar succeeds. macgem list --local mentions progressbar just fine macirb irb(main):001:0> require 'progressbar' LoadError: no such file to load -- progressbar The same try using the regular gem and irb works fine. I really don't know what to do here. Any help welcome. Jean-Denis [Logo Kleegroup] Klee Group is a great place to work – Il fait bon travailler à Klee Group ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] problem using gems with MacRuby 0.12
Hi, MacRuby does not load `rubygems' automatically. So, you need 'require "rubygems"' before loading gem which you want. Please refer to http://macruby.macosforge.org/trac/ticket/855 Thanks 2012/6/12 Jean-Denis MUYS : > Hi again, > > It seems there is some issue with MacRuby installing gems, as they don't seem > to be made available to macirb: > > sudo macgem install --remote progressbar > > succeeds. > > macgem list --local > > mentions progressbar just fine > > macirb > irb(main):001:0> require 'progressbar' > LoadError: no such file to load -- progressbar > > The same try using the regular gem and irb works fine. I really don't know > what to do here. Any help welcome. > > Jean-Denis > > > > [Logo Kleegroup] > Klee Group is a great place to work – Il fait bon travailler à Klee Group > ___ > MacRuby-devel mailing list > [email protected] > http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] MacRuby.h not found
This is happening under Lion 10.7.4. Jean-Denis On 12 juin 2012, at 15:55, Watson wrote: > Date: Tue, 12 Jun 2012 20:31:21 +0900 > From: Watson > To: "MacRuby development discussions." > > Subject: Re: [MacRuby-devel] MacRuby.h not found > Message-ID: > > Content-Type: text/plain; charset=windows-1252 > > Hi, > > MacRuby does not support Mountain Lion yet. > Please use MacRuby with Lion or Snow Leopard. > > > Thanks > > 2012/6/12 Jean-Denis MUYS : >> Hello, >> >> After installing, in order: >> >> - Xcode 4.3.3 (update of 4.3.2) >> - Xcode 4.5DP1 >> - MacRuby 0.12 binary distribution >> >> I create a new MacRuby project (so some MacRuby template is found), but >> Xcode 4.3.3 fails to compile the main.m file. It chokes on "#import >> " with the error "MacRuby/MacRuby.h file not found". >> >> I checked that the MacRuby framework appear in my project and is listed in >> the "Link Binary With Libraries" build phases. >> >> However, it appears in red in both places and file inspector says it's >> located at "Library/Frameworks/MacRuby.framework", "Relative to Developer >> Directory". >> >> I'm not sure which is the "Developer Directory" (how can I find out?), but >> MacRuby.framework sure doesn't appear in my ~/Developer directory. >> Inspecting the MacRuby installer logs shows that it installed it right in >> /Library/Frameworks, not in any developer directory. This is confirmed by a >> search of MacRuby.framework using the mdfind command: MacRuby.framework is >> only to be found in ?/Library/Frameworks. >> >> xcode-select -print-path reports /Applications/Xcode433.app/Developer, but >> MacRuby.framework doesn't appear in >> /Applications/Xcode433.app/Developer/Library/Frameworks. >> >> I tried to replace the MacRuby.framework from the template by the one that >> is located in /Library/Frameworks. The project now shows it in black, not >> red, so it's found now. However, I still have the exact same compiler error. >> >> Looking at the Xcode target settings, I found that the Framework Search >> Paths setting points to the Frameworks directory within Xcode433. >> >> This seems to suggest that the installer installed MacRuby.framework in the >> wrong location: /Library instead of the currently-selected Xcode directory. >> >> What would be the next step in my case? Is it enough to copy over >> MacRuby.framework to /Applications/Xcode433.app/Developer/Library/Frameworks? >> >> Thanks, >> >> Jean-Denis >> >> >> PS: to be complete: >> >> Calling "macruby --version" in the terminal reports "MacRuby 0.12 (ruby >> 1.9.2) [universal-darwin10.0, x86_64]", but if I recall correctly, so did >> the rather old nightly build I had installed previously. >> >> Calling "which macruby" reports /usr/local/bin/macruby, which is consistent >> with the MacRuby installer. >> >> >> >> [Logo Kleegroup] >> Klee Group is a great place to work ? Il fait bon travailler ? Klee Group >> ___ >> MacRuby-devel mailing list >> [email protected] >> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel > ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] MacRuby-devel Digest, Vol 52, Issue 7
Arf, OK, thanks. My mistake then. My reduction was incorrect. Indeed when I require 'ruby gems' first in macirb, there is no issue. But the issue remains in my MacRuby app. I get the following error when the app launches: /path/to/rb_main.rb:14: in `': no such file to load -- sequel (LoadError) rb_main.rb read: framework 'Cocoa' require 'ruby gems' require 'sequel' # line 14 Of course I have installed the sequel gem with macgem, and I checked that I can require it in macirb (after rubygems). I suspect this is related to my install issue I described earlier. copying the MacRuby.framework from /Library/Frameworks to within Xcode wasn't good enough after all. (and again, this is all under Lion 10.7.4) So I am back to square one. Any suggestion for installing MacRuby 0.12? Regards, Jean-Denis On 12 juin 2012, at 15:55, mailto:[email protected]>> Watson mailto:[email protected]>> wrote: Message: 6 Date: Tue, 12 Jun 2012 22:52:36 +0900 From: Watson mailto:[email protected]>> To: "MacRuby development discussions." mailto:[email protected]>> Subject: Re: [MacRuby-devel] problem using gems with MacRuby 0.12 Message-ID: mailto:CAL5q=w7wulyjnvmcxrhkyncqndvrbaffyzukpiwj0iaapme...@mail.gmail.com>> Content-Type: text/plain; charset=windows-1252 Hi, MacRuby does not load `rubygems' automatically. So, you need 'require "rubygems"' before loading gem which you want. Please refer to http://macruby.macosforge.org/trac/ticket/855 Thanks ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] MacRuby.h not found
As reported by Jean-Denis:
>> After installing, in order:
>>
>> - Xcode 4.3.3 (update of 4.3.2)
>> - MacRuby 0.12 binary distribution
>>
>> I create a new MacRuby project (so some MacRuby template is found), but
>> Xcode 4.3.3 fails to compile the main.m file. It chokes on "#import
>> " with the error "MacRuby/MacRuby.h file not found".
The same is happening with me. I went on to install the latest MacRuby nightly
build, but that did not help. MacRuby no longer shows up in Xcode’s “Choose
frameworks and libraries to add” dialog. The dialog offers to “Add Other…”,
which I did, by navigating to /Library/Frameworks/MacRuby.framework. This
appeared to work at first as MacRuby framework showed up in the project
navigator. Running the app, however, failed immediately with the same error as
with Jean-Denis ("MacRuby/MacRuby.h file not found”).
Anyone else having similar problems after updating Xcode and MacRuby?
milos
On 12 Jun 2012, at 16:00, Jean-Denis MUYS wrote:
> This is happening under Lion 10.7.4.
>
> Jean-Denis
>
>
> On 12 juin 2012, at 15:55,
> Watson wrote:
>
>> Date: Tue, 12 Jun 2012 20:31:21 +0900
>> From: Watson
>> To: "MacRuby development discussions."
>>
>> Subject: Re: [MacRuby-devel] MacRuby.h not found
>> Message-ID:
>>
>> Content-Type: text/plain; charset=windows-1252
>>
>> Hi,
>>
>> MacRuby does not support Mountain Lion yet.
>> Please use MacRuby with Lion or Snow Leopard.
>>
>>
>> Thanks
>>
>> 2012/6/12 Jean-Denis MUYS :
>>> Hello,
>>>
>>> After installing, in order:
>>>
>>> - Xcode 4.3.3 (update of 4.3.2)
>>> - Xcode 4.5DP1
>>> - MacRuby 0.12 binary distribution
>>>
>>> I create a new MacRuby project (so some MacRuby template is found), but
>>> Xcode 4.3.3 fails to compile the main.m file. It chokes on "#import
>>> " with the error "MacRuby/MacRuby.h file not found".
>>>
>>> I checked that the MacRuby framework appear in my project and is listed in
>>> the "Link Binary With Libraries" build phases.
>>>
>>> However, it appears in red in both places and file inspector says it's
>>> located at "Library/Frameworks/MacRuby.framework", "Relative to Developer
>>> Directory".
>>>
>>> I'm not sure which is the "Developer Directory" (how can I find out?), but
>>> MacRuby.framework sure doesn't appear in my ~/Developer directory.
>>> Inspecting the MacRuby installer logs shows that it installed it right in
>>> /Library/Frameworks, not in any developer directory. This is confirmed by a
>>> search of MacRuby.framework using the mdfind command: MacRuby.framework is
>>> only to be found in ?/Library/Frameworks.
>>>
>>> xcode-select -print-path reports /Applications/Xcode433.app/Developer, but
>>> MacRuby.framework doesn't appear in
>>> /Applications/Xcode433.app/Developer/Library/Frameworks.
>>>
>>> I tried to replace the MacRuby.framework from the template by the one that
>>> is located in /Library/Frameworks. The project now shows it in black, not
>>> red, so it's found now. However, I still have the exact same compiler error.
>>>
>>> Looking at the Xcode target settings, I found that the Framework Search
>>> Paths setting points to the Frameworks directory within Xcode433.
>>>
>>> This seems to suggest that the installer installed MacRuby.framework in the
>>> wrong location: /Library instead of the currently-selected Xcode directory.
>>>
>>> What would be the next step in my case? Is it enough to copy over
>>> MacRuby.framework to
>>> /Applications/Xcode433.app/Developer/Library/Frameworks?
>>>
>>> Thanks,
>>>
>>> Jean-Denis
>>>
>>>
>>> PS: to be complete:
>>>
>>> Calling "macruby --version" in the terminal reports "MacRuby 0.12 (ruby
>>> 1.9.2) [universal-darwin10.0, x86_64]", but if I recall correctly, so did
>>> the rather old nightly build I had installed previously.
>>>
>>> Calling "which macruby" reports /usr/local/bin/macruby, which is consistent
>>> with the MacRuby installer.
>>>
>>>
>>>
>>> [Logo Kleegroup]
>>> Klee Group is a great place to work ? Il fait bon travailler ? Klee Group
>>> ___
>>> MacRuby-devel mailing list
>>> [email protected]
>>> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>>
>
> ___
> MacRuby-devel mailing list
> [email protected]
> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Re: [MacRuby-devel] MacRuby.h not found
The problem is that /Library/Frameworks is no longer in the default search path
for frameworks. The workaround is simply to add it back to the "Framework
Search Paths" in the project settings.
We're tracking this issue on Github:
https://github.com/MacRuby/MacRuby/issues/107
On 2012-06-12, at 3:28 PM, Milos & Slavica wrote:
> As reported by Jean-Denis:
>
>>> After installing, in order:
>>>
>>> - Xcode 4.3.3 (update of 4.3.2)
>>> - MacRuby 0.12 binary distribution
>>>
>>> I create a new MacRuby project (so some MacRuby template is found), but
>>> Xcode 4.3.3 fails to compile the main.m file. It chokes on "#import
>>> " with the error "MacRuby/MacRuby.h file not found".
>
> The same is happening with me. I went on to install the latest MacRuby
> nightly build, but that did not help. MacRuby no longer shows up in Xcode’s
> “Choose frameworks and libraries to add” dialog. The dialog offers to “Add
> Other…”, which I did, by navigating to /Library/Frameworks/MacRuby.framework.
> This appeared to work at first as MacRuby framework showed up in the project
> navigator. Running the app, however, failed immediately with the same error
> as with Jean-Denis ("MacRuby/MacRuby.h file not found”).
>
> Anyone else having similar problems after updating Xcode and MacRuby?
>
> milos
>
> On 12 Jun 2012, at 16:00, Jean-Denis MUYS wrote:
>
>> This is happening under Lion 10.7.4.
>>
>> Jean-Denis
>>
>>
>> On 12 juin 2012, at 15:55,
>> Watson wrote:
>>
>>> Date: Tue, 12 Jun 2012 20:31:21 +0900
>>> From: Watson
>>> To: "MacRuby development discussions."
>>>
>>> Subject: Re: [MacRuby-devel] MacRuby.h not found
>>> Message-ID:
>>>
>>> Content-Type: text/plain; charset=windows-1252
>>>
>>> Hi,
>>>
>>> MacRuby does not support Mountain Lion yet.
>>> Please use MacRuby with Lion or Snow Leopard.
>>>
>>>
>>> Thanks
>>>
>>> 2012/6/12 Jean-Denis MUYS :
Hello,
After installing, in order:
- Xcode 4.3.3 (update of 4.3.2)
- Xcode 4.5DP1
- MacRuby 0.12 binary distribution
I create a new MacRuby project (so some MacRuby template is found), but
Xcode 4.3.3 fails to compile the main.m file. It chokes on "#import
" with the error "MacRuby/MacRuby.h file not found".
I checked that the MacRuby framework appear in my project and is listed in
the "Link Binary With Libraries" build phases.
However, it appears in red in both places and file inspector says it's
located at "Library/Frameworks/MacRuby.framework", "Relative to Developer
Directory".
I'm not sure which is the "Developer Directory" (how can I find out?), but
MacRuby.framework sure doesn't appear in my ~/Developer directory.
Inspecting the MacRuby installer logs shows that it installed it right in
/Library/Frameworks, not in any developer directory. This is confirmed by
a search of MacRuby.framework using the mdfind command: MacRuby.framework
is only to be found in ?/Library/Frameworks.
xcode-select -print-path reports /Applications/Xcode433.app/Developer, but
MacRuby.framework doesn't appear in
/Applications/Xcode433.app/Developer/Library/Frameworks.
I tried to replace the MacRuby.framework from the template by the one that
is located in /Library/Frameworks. The project now shows it in black, not
red, so it's found now. However, I still have the exact same compiler
error.
Looking at the Xcode target settings, I found that the Framework Search
Paths setting points to the Frameworks directory within Xcode433.
This seems to suggest that the installer installed MacRuby.framework in
the wrong location: /Library instead of the currently-selected Xcode
directory.
What would be the next step in my case? Is it enough to copy over
MacRuby.framework to
/Applications/Xcode433.app/Developer/Library/Frameworks?
Thanks,
Jean-Denis
PS: to be complete:
Calling "macruby --version" in the terminal reports "MacRuby 0.12 (ruby
1.9.2) [universal-darwin10.0, x86_64]", but if I recall correctly, so did
the rather old nightly build I had installed previously.
Calling "which macruby" reports /usr/local/bin/macruby, which is
consistent with the MacRuby installer.
[Logo Kleegroup]
Klee Group is a great place to work ? Il fait bon travailler ? Klee Group
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>>>
>>
>> ___
>> MacRuby-devel mailing list
>> [email protected]
>> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>
> ___
> MacRuby-devel mailing list
> Ma
