Re: [MacRuby-devel] [YARD] Troubles with YARD on MacRuby 0.6

2010-10-02 Thread Rich Morin
I happen to be on both lists, so I saw this: At 1:24 AM -0400 10/3/10, Loren Segal wrote: > Just to clarify, the offending line seems to be: > > >http://github.com/lsegal/yard/blob/master/lib/yard/cli/command_parser.rb#L82 > > MacRuby doesn't seem to be able to do: > > "%-8s" % [:symbol] >

Re: [MacRuby-devel] MacRuby-devel Digest, Vol 32, Issue 7

2010-10-02 Thread Shaun August
t; byteNum = byteNum + 1 > end > byteNum = byteNum + 1 > end > check = @s.read(1) > byteNum = 0 > sleep(0.5) >end > end > end > > I really need to use raw TCP sockets to communicate with my device. I am > h

Re: [MacRuby-devel] Socket Class not implimented?

2010-10-02 Thread Rob Gleeson
On 3 Oct 2010, at 03:40, Rob Gleeson wrote: > > On 3 Oct 2010, at 03:36, Shaun August wrote: > >> Hi There, >> >> I am trying to run a ruby TCPsocket to get information from a quatech serial >> device server. The code runs well in ruby but I get an error when I try to >> reference the class

Re: [MacRuby-devel] Socket Class not implimented?

2010-10-02 Thread Rob Gleeson
On 3 Oct 2010, at 03:36, Shaun August wrote: > Hi There, > > I am trying to run a ruby TCPsocket to get information from a quatech serial > device server. The code runs well in ruby but I get an error when I try to > reference the class in my MacRuby code: > > uninitialized constant Coin_Coun

[MacRuby-devel] Socket Class not implimented?

2010-10-02 Thread Shaun August
Hi There, I am trying to run a ruby TCPsocket to get information from a quatech serial device server. The code runs well in ruby but I get an error when I try to reference the class in my MacRuby code: uninitialized constant Coin_Counter::TCPsocket (NameError) Here is the class where the error t

Re: [MacRuby-devel] MacRuby 0.7 release notes

2010-10-02 Thread Matt Aimonetti
Last I checked there was a problem with Sequel but Joshua had a work around and was planning on talking the the gem author. (Sequel overwrites require on some classes which causes some issues on our side) Regarding sqlite3, try the Ruby version before using the C extension, just in case ;) - M

Re: [MacRuby-devel] 0.7 Release

2010-10-02 Thread Robert Rice
Thanks Laurent: That worked. I tried that earlier today and it didn't work. I had to clean all dependencies first. Bob Rice On Oct 2, 2010, at 4:29 PM, Laurent Sansonetti wrote: > Hi Robert, > > Looks like -framework MacRuby is missing from your gcc line, which could > explain the missing s

Re: [MacRuby-devel] 0.7 Release

2010-10-02 Thread Laurent Sansonetti
Hi Robert, Looks like -framework MacRuby is missing from your gcc line, which could explain the missing symbol. Are you sure MacRuby.framework is included in your Xcode project as a dependency? If yes, try removing it and adding it again, maybe. Laurent On Oct 2, 2010, at 1:24 PM, Robert Rice

Re: [MacRuby-devel] 0.7 Release

2010-10-02 Thread Robert Rice
Hi Laurent: Thanks for the quick reply. I get a new error doing a clean build: Ld build/Debug/MacDriverLog-0.7.app/Contents/MacOS/MacDriverLog-0.7 normal x86_64 cd "/Users/robertrice/Desktop/MacDriverLog Development/MacDriverLog-0.7" setenv MACOSX_DEPLOYMENT_TARGET 10.5 /Developer/usr/bin/gcc-4.

Re: [MacRuby-devel] MacRuby 0.7 release notes

2010-10-02 Thread Laurent Sansonetti
Hi Mario, I don't know for DataMapper, but Sequel and the SQLite3 extension should work with MacRuby 0.7 (that's what we use for a web app). If you run into a problem, make sure to file a ticket and we will look. We have lots of work in our TODO list when it comes to Ruby compatibility, and fi

Re: [MacRuby-devel] 0.7 Release

2010-10-02 Thread Laurent Sansonetti
Hi Robert, You need to rebuild your project. Do a clean before, to make sure. It will be linked to the "new" MacRuby. In the future we won't use the MacRuby version number in the link path to avoid these problems :) Laurent On Oct 2, 2010, at 11:43 AM, Robert Rice wrote: > Hi Laurent: > > G

[MacRuby-devel] 0.7 Release

2010-10-02 Thread Robert Rice
Hi Laurent: Great work! You have to reload version 0.6 to fully appreciate the performance increase. Today's nightly build deletes version 0.7 from the MacRuby framework but my project still references it: dyld: Library not loaded: /Library/Frameworks/MacRuby.framework/Versions/0.7/usr/lib/li

Re: [MacRuby-devel] Hotcocoa documentation

2010-10-02 Thread Jordan K. Hubbard
I think the issue wasn't that HotCocoa was "dropped" so much as people, including its primary author, seemed to simply lose interest in updating it. That is why the project was moved to github, in hopes that someone else would fork it and start doing interesting things with the project again.

Re: [MacRuby-devel] Hotcocoa documentation

2010-10-02 Thread Rich Morin
I asked Rich Kilmer about HotCocoa when we met at GoGaRuCo last month. He indicated that he's still interested in it, but is (IIRC) thinking about some different implementation strategies and waiting for MacRuby to settle down a bit. HotCocoa makes Cocoa look a lot more like the Ruby I know and lo

Re: [MacRuby-devel] Hotcocoa documentation

2010-10-02 Thread Rob Gleeson
Interface Builder? :-) Rob On 2 Oct 2010, at 13:48, Michael Sokol wrote: > Thank you for the answer, I feel a bit disappointed though... I loved the > simplicity of Hotcocoa. > > Is there any other library/layer on top of Macruby that helps simplifying the > creation of UI? > > Michael >

Re: [MacRuby-devel] MacRuby 0.7 release notes

2010-10-02 Thread Rob Gleeson
Hey, awesome work on the Sandbox class! I wrote a library to do something similar using FFI and MRI/REE. I'll definitely be taking a look at that :-) Congrats on 0.7, too! Rob On 2 Oct 2010, at 05:44, Laurent Sansonetti wrote: > Hi guys, > > MacRuby 0.7 is now ready to be released. I create

Re: [MacRuby-devel] Hotcocoa documentation

2010-10-02 Thread Michael Sokol
Thank you for the answer, I feel a bit disappointed though... I loved the simplicity of Hotcocoa. Is there any other library/layer on top of Macruby that helps simplifying the creation of UI? Michael On Sat, Oct 2, 2010 at 3:14 AM, Felix Holmgren wrote: > Ok, interesting to hear at least that i

Re: [MacRuby-devel] MacRuby 0.7 release notes

2010-10-02 Thread Mario Steele
Hopefully, 0.7 solves some of the issues that I've been running into, trying to get 3rd party Ruby libraries to work, and such. If I could get Sequel or DataMapper to work with SQLite3, in my app, I'd be happy. Keep up the good work. On Sat, Oct 2, 2010 at 7:18 AM, Daniel Lopes wrote: > Awesom

Re: [MacRuby-devel] MacRuby 0.7 release notes

2010-10-02 Thread Daniel Lopes
Awesome, thanks a lot. Sent from my iPhone On 02/10/2010, at 01:44, Laurent Sansonetti wrote: > Hi guys, > > MacRuby 0.7 is now ready to be released. I created a branch called "0.7" > which might host minor fixes, and I'm now working on preparing the release > and announcement post. It shoul

Re: [MacRuby-devel] Hotcocoa documentation

2010-10-02 Thread Felix Holmgren
Ok, interesting to hear at least that it wasn't deemed unworkable or somehow a faulty approach. /F 2010/10/2 Vincent Isambart : > >> Is there some information somewhere about why Hotcocoa was dropped? If >> not, a few words of explanation here would be appreciated! Hotcocoa >> does stand out as a