Re: [MacRuby-devel] thread-safety and collections in macruby

2011-10-20 Thread Sven A. Schmidt
I found that searching the google groups mirror was much easier and this might be the thread you're referring to: https://groups.google.com/d/topic/macruby/ceyNNqComMc/discussion -sas On Oct 19, 2011, at 22:43, Jordan K. Hubbard wrote: > > On Oct 19, 2011, at 11:38 AM, Terry Moore wrote: > >

Re: [MacRuby-devel] thread-safety and collections in macruby

2011-10-20 Thread Matt Aimonetti
Hmm thanks, I didn't realize we had a google groups mirror. I'm wondering if we shouldn't just move there since it's much easier to use and maintain than macosforge. Thoughts, ideas, suggestions? - Matt On Thu, Oct 20, 2011 at 12:13 AM, Sven A. Schmidt wrote: > I found that searching the google

[MacRuby-devel] Configuring IDE to use MacRuby?

2011-10-20 Thread Jean-Denis MUYS
Hi, Out of curiosity, I tried to set up a few IDEs other than Xcode to use for MacRuby development, and I have mostly failed. I would appreciate any advice/suggestion. - TextMate: Success. I found some rather complex recipes on the net. Mine is much simpler: go to Preferences > Advanced > Shel

Re: [MacRuby-devel] Configuring IDE to use MacRuby?

2011-10-20 Thread denny trebbin
Hello, MacRuby the Bridging concept and language extensions are not designed to work well with other IDE's than Xcode. RubyMine will may offer support in later versions. I already filed a 'bug' which has been changed to a 'feature request'. Please have a look at this URL http://youtrack.jetbrai

Re: [MacRuby-devel] Configuring IDE to use MacRuby?

2011-10-20 Thread Antony Blakey
On 20/10/2011, at 7:24 PM, Jean-Denis MUYS wrote: > Any suggestion? Or is there no other working option than Xcode and TextMate? I submitted a feature request to JetBrains to make their AppCode product work with MacRuby. The request was allocated to a developer, so I'm hopeful. I use IntelliJ

Re: [MacRuby-devel] thread-safety and collections in macruby

2011-10-20 Thread Andy Park
On 19 Oct 2011, at 22:43, Jordan K. Hubbard wrote: > If the mail archives were easier to search, I'd pull it up, but it isn't and > I'm too lazy. :) > I set up an entry in gmane for the mailing list a while ago in order to search the list a bit better: http://news.gmane.org/gmane.comp.lang

[MacRuby-devel] CocoaPods, an Objective-C library package manager. Now with OS X and BridgeSupport support!

2011-10-20 Thread Eloy Duran
Hi, I’ve just released CocoaPods 0.1.0 https://github.com/alloy/cocoapods, which can now be used for OS X development. In addition it now also generated BridgeSupport metadata files from the Pods, which makes it very easy to use these libraries from MacRuby. There is a MacRuby example which us

Re: [MacRuby-devel] thread-safety and collections in macruby

2011-10-20 Thread terl
Just a note to the original question macruby collections are based on objc mutable collections...e.g. a = %w{my array of strings} ["my","array","of"strings"] b = a.dup. b is still a mutable array. c = NSarray.alloc.initWithArray( a ) immutable array c << "hi" runtime error cannot modify