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:
>
>
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
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
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
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
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
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
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