Re: [MacRuby-devel] floats in core data

2009-11-28 Thread John Shea
Hi Laurent, (sorry for the longish post) I did some simple tests where the bound variable is not actually bound to a CoreData store, but to a method in the custom NSManagedObject class.. (btw - I am not sure if anyone else noticed but a difference between 0.4 and 0.5, is that when binding to

Re: [MacRuby-devel] [MacRuby] #465: [0.5b2] Problem walking directory trees with unicode filenames

2009-11-28 Thread MacRuby
#465: [0.5b2] Problem walking directory trees with unicode filenames -+-- Reporter: robe...@…| Owner: lsansone...@… Type: defect | Status: new Priority:

[MacRuby-devel] Is anyone working on updating the macruby.org web site?

2009-11-28 Thread Jordan K. Hubbard
Hey folks, So, last time I brought this up, it seemed like there was an initial flurry of interest and some volunteer participation, then *poof*. All that seemingly went away. :) Which is a shame because there have been some nice articles written about MacRuby recently

[MacRuby-devel] Problem with (Ruby) bindings

2009-11-28 Thread Michael Winterstein
I'm not sure if this is a known bug, or related to any open issues with bindings, but I found this while messing around (using r3059): # This works lv1 = 1 lv2 = 2 lv1_binding = lv1.send(:binding) lv2_binding = lv2.send(:binding) # This fails. class A lv1 = 1 lv2 = 2 lv1_binding =

Re: [MacRuby-devel] String methods missing in MacRuby

2009-11-28 Thread Jordan Breeding
I think that String.each was mixed in from Enumerable, which 1.9 no longer does. each is not a method on String in 1.9 either, so I don't think this is a MacRuby problem. You should file a bug for the problem with split(). On Nov 28, 2009, at 14:30, Robert Rice wrote: Hi Group: The

Re: [MacRuby-devel] [MacRuby] #424: performance regression from ruby 1.8 and 1.9

2009-11-28 Thread MacRuby
#424: performance regression from ruby 1.8 and 1.9 -+-- Reporter: jordan.breed...@…| Owner: lsansone...@… Type: defect | Status: new Priority: blocker

Re: [MacRuby-devel] String methods missing in MacRuby

2009-11-28 Thread Conrad Taylor
Hi, String#each is not supported in Ruby 1.9. Also, MacRuby is based on Ruby 1.9 specification and not 1.8. -Conrd Sent from my iPhone On Nov 28, 2009, at 4:20 PM, Jordan Breeding jordan.breed...@me.com wrote: Also, just so you know this really is a 1.8 vs 1.9 problem and not an MRI