Re: [MacRuby-devel] MacRuby System Requirements?

2010-02-04 Thread Conrad Taylor
On Thu, Feb 4, 2010 at 3:50 PM, Matt Aimonetti wrote: > It's not that simple, it depends how you build MacRuby. For instance, the > installer for the latest version explicitly tells you that it will only > install MacRuby on SnowLeopard, however you can build your own Leopard > installer. > > - Ma

Re: [MacRuby-devel] MacRuby System Requirements?

2010-02-04 Thread Timothy McDowell
So... my new iMac? ^_^ On Thu, Feb 4, 2010 at 2:08 PM, Laurent Sansonetti wrote: > Note that even if MacRuby may run on Leopard, it isn't supported much > anymore, since all the developers in the team are at least on SL. > > Officially, MacRuby will run on Leopard or higher with an Intel processo

Re: [MacRuby-devel] MacRuby System Requirements?

2010-02-04 Thread Laurent Sansonetti
Note that even if MacRuby may run on Leopard, it isn't supported much anymore, since all the developers in the team are at least on SL. Officially, MacRuby will run on Leopard or higher with an Intel processor. I recommend Snow Leopard with a 64-bit Intel processor. Laurent On Feb 4, 2010

Re: [MacRuby-devel] Macruby and serialport

2010-02-04 Thread Laurent Sansonetti
Hi, On Feb 4, 2010, at 8:03 AM, John-Paul Bader wrote: i was recently playing around with Arduino / Microcontrollers and wrote a little script to make a hardware itunes volume control out of a potentiometer. Now would love to do that with macruby instead of this disgrace: http://github.com/

Re: [MacRuby-devel] 3 Questions, One about language restriction, one about platform targeting and the final about the standard library.

2010-02-04 Thread Laurent Sansonetti
As Matt writes, the standard library only contains extra classes. Everything accessible without a #require is part of the core, which cannot be stripped down during the deployment phase (yet). As of trunk (0.6), the stdlib files are in /Library/Frameworks/ MacRuby.framework/Versions/0.6/usr/

Re: [MacRuby-devel] MacRuby System Requirements?

2010-02-04 Thread Matt Aimonetti
It's not that simple, it depends how you build MacRuby. For instance, the installer for the latest version explicitly tells you that it will only install MacRuby on SnowLeopard, however you can build your own Leopard installer. - Matt On Thu, Feb 4, 2010 at 12:38 PM, Conrad Taylor wrote: > Hi,

[MacRuby-devel] MacRuby System Requirements?

2010-02-04 Thread Conrad Taylor
Hi, could someone add the MacRuby system requirements (i.e. OS version) to the MacRuby.com website so that it clear to new users and developers? Thanks, -Conrad ___ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.or

Re: [MacRuby-devel] [MacRuby] #603: error handling breaks causing a WIN32API load error to escape from tmpdir

2010-02-04 Thread MacRuby
#603: error handling breaks causing a WIN32API load error to escape from tmpdir -+-- Reporter: j...@… | Owner: lsansone...@… Type: defect | Status: new Priority: bloc

[MacRuby-devel] [MacRuby] #603: error handling breaks causing a WIN32API load error to escape from tmpdir

2010-02-04 Thread MacRuby
#603: error handling breaks causing a WIN32API load error to escape from tmpdir -+-- Reporter: j...@… | Owner: lsansone...@… Type: defect | Status: new Priority: bloc

Re: [MacRuby-devel] Macruby and serialport

2010-02-04 Thread Matt Aimonetti
Paolo's repo: http://github.com/pbosetti/PBSerialPort (I did not try the code myself) - Matt On Thu, Feb 4, 2010 at 11:09 AM, Robert Rice wrote: > Hi Jordan: > > Paolo Bosettti put an ObjC class on github several months ago that works > well. > > Bob Rice > > > On Feb 4, 2010, at 1:03 PM, Jorda

Re: [MacRuby-devel] Macruby and serialport

2010-02-04 Thread Robert Rice
Hi Jordan: Paolo Bosettti put an ObjC class on github several months ago that works well. Bob Rice On Feb 4, 2010, at 1:03 PM, Jordan K. Hubbard wrote: > > On Feb 4, 2010, at 8:03 AM, John-Paul Bader wrote: > >> Do you guys have any idea how to make macruby talk to the serial port or do >>

Re: [MacRuby-devel] Blog post: Accessing the Keychain with MacRuby

2010-02-04 Thread Matt Aimonetti
Great stuff Carlo, I wrote something a bit similar a while back: http://www.macruby.org/recipes/create-an-objective-c-bundle.html Would you mind converting your article into a recipe for the macruby site? (more info there: http://www.macruby.org/documentation/website-contributions.html) Thanks, -

[MacRuby-devel] Blog post: Accessing the Keychain with MacRuby

2010-02-04 Thread Carlo Zottmann
Hi guys, I got around building a wrapper around a C class in order to be able to access OSX' Keychain from MR. I hadn't done something like this before, so I thought it'd be a good idea to write it down. Maybe it'll help some other (Obj-)C newbs. ;) http://blog.zottmann.org/post/370827421/access-

Re: [MacRuby-devel] Macruby and serialport

2010-02-04 Thread Jordan K. Hubbard
On Feb 4, 2010, at 8:03 AM, John-Paul Bader wrote: > Do you guys have any idea how to make macruby talk to the serial port or do i > have to be a bit more patient ? ;) One assumes you still have no problem talking to the serial port from ObjectiveC, therefore the best approach would be to crea

Re: [MacRuby-devel] 3 Questions, One about language restriction, one about platform targeting and the final about the standard library.

2010-02-04 Thread Matt Aimonetti
std libs are all the "extra" classes that you need to require in your code like rexml, yaml, CGI etc... - Matt On Thu, Feb 4, 2010 at 8:39 AM, Anthony Buck wrote: > Thank you for such prompt response! I am surprised that the standard > lib can be left out though! Is there any formal/informal li

Re: [MacRuby-devel] [MacRuby] #354: Bundling framework in SL release build will not run on Leopard

2010-02-04 Thread Jordan K. Hubbard
On Feb 4, 2010, at 1:38 AM, MacRuby wrote: > Is there a way for devs like me to build a combined Leopard/Snopard MR > release at home? And if yes, could you please point me in the right > direction (build instructions or anything else) so I can go learn about it > and test my mettle? In *theory*,

Re: [MacRuby-devel] 3 Questions, One about language restriction, one about platform targeting and the final about the standard library.

2010-02-04 Thread Anthony Buck
Thank you for such prompt response! I am surprised that the standard lib can be left out though! Is there any formal/informal list of what ruby considers "standard library"? Can we safely assume that most container classes are available for instance? Array, Hash etc? Am I right in assuming that wha

[MacRuby-devel] Macruby and serialport

2010-02-04 Thread John-Paul Bader
Hey guys, i was recently playing around with Arduino / Microcontrollers and wrote a little script to make a hardware itunes volume control out of a potentiometer. Now would love to do that with macruby instead of this disgrace: http://github.com/hukl/Arduino-Experiments/blob/master/itunes_volu

Re: [MacRuby-devel] [MacRuby] #597: Dispatch Queue async method inconsistent results

2010-02-04 Thread MacRuby
#597: Dispatch Queue async method inconsistent results --+- Reporter: knut.olaf.l...@… |Owner: ernest.prabha...@… Type: defect| Status: closed

Re: [MacRuby-devel] [MacRuby] #354: Bundling framework in SL release build will not run on Leopard

2010-02-04 Thread MacRuby
#354: Bundling framework in SL release build will not run on Leopard --+- Reporter: jtc...@… | Owner: lsansone...@… Type: defect| Status: new Priority: block

Re: [MacRuby-devel] [MacRuby] #601: hashes with empty values cannot writeToFile

2010-02-04 Thread MacRuby
#601: hashes with empty values cannot writeToFile +--- Reporter: lastobe...@…| Owner: lsansone...@… Type: defect | Status: new Priority: major

[MacRuby-devel] [MacRuby] #602: File.dirname cuts string at wrong index with unicode strings

2010-02-04 Thread MacRuby
#602: File.dirname cuts string at wrong index with unicode strings +--- Reporter: mark.hubb...@… | Owner: lsansone...@… Type: defect | Status: new

[MacRuby-devel] [MacRuby] #601: hashes with empty values cannot writeToFile

2010-02-04 Thread MacRuby
#601: hashes with empty values cannot writeToFile +--- Reporter: lastobe...@…| Owner: lsansone...@… Type: defect | Status: new Priority: major