Re: [MacRuby-devel] MacRuby / Hotcocoa / Macrake issue

2011-04-18 Thread Gary Weaver
If you go down the road of fixing it, you might want to fork HotCocoa and/or MacRuby in GitHub. For HotCocoa, check out the other branches first in the network graph below to see whether someone already fixed, and if not there then maybe want to branch off of Rich's version, fix and do a pull

Re: [MacRuby-devel] hotcocoa virus

2011-03-31 Thread Gary Weaver
t.rb:assert_equal HotCocoa::Mappings, Object.full_const_get("HotCocoa::Mappings") test-macruby/cases/hotcocoa/plist_test.rb:require 'hotcocoa' test-macruby/cases/hotcocoa/plist_test.rb: include HotCocoa On 3/31/11 12:59 PM, Vincenzo Piombo wrote: Ok, thanks a lot, Gary: I

Re: [MacRuby-devel] hotcocoa virus

2011-03-31 Thread Gary Weaver
thing along the lines of this http://www.nongnu.org/gstutorial/en/ch13s04.html. By the way, do you know where can I find a working drag&drop macruby example ? Enzo On Wed, Mar 30, 2011 at 11:17 PM, Gary Weaver <mailto:gary.wea...@duke.edu>> wrote: Enzo, It might be a tra

Re: [MacRuby-devel] hotcocoa virus

2011-03-30 Thread Gary Weaver
Enzo, It might be a translation issue, but I wouldn't call that a virus (it doesn't replicate, it is just something that freezes your computer). I wouldn't call it "Virus" in the gist either, if I were you. If it is a bug in HotCocoa, than it may be a bug (or at least undesired functionality

Re: [MacRuby-devel] is hotcocoa dead ?

2011-03-24 Thread Gary Weaver
1 3:24 PM, Vincenzo Piombo wrote: Gary, Thanks for the info. I'm surprised you say there could be size problems in the produced app. Do you mean that if I write the same app using IB and hotcocoa the last one would be sensibly larger ? Why ? Enzo On Thu, Mar 24, 2011 at 4:01 PM, Gary

Re: [MacRuby-devel] is hotcocoa dead ?

2011-03-24 Thread Gary Weaver
Vincenzo, There was work on HotCocoa at least as recently as Jan 11, 2011, I think. Here is the github graph of changes: https://github.com/richkilmer/hotcocoa/network As of today (3/24/2011), this is the most recent list of committers (I think): https://github.com/gmanley/hotcocoa/contributo

Re: [MacRuby-devel] Extending MacRuby to platforms other than OSX?

2011-01-25 Thread Gary Weaver
Not trying to be a downer, because I really like the idea of it being more accessible, but: Looks like no recent activity on PureFoundation: https://code.google.com/p/purefoundation/ http://www.puredarwin.org/purefoundation Some activity 3 months ago on opencflite, which there was claim that P

Re: [MacRuby-devel] Neat MacRuby app, HotCocoa, and more!

2010-11-15 Thread Gary Weaver
Leigh, The impression I got with HotCocoa is that the core MacRuby team was busy enough with MacRuby to not want to get distracted with helping develop it. I know that many including myself would be interested in seeing it expand. (Rich did an awesome job with it, but it seemed to have a long

Re: [MacRuby-devel] MacRuby Graphics

2010-07-14 Thread Gary Weaver
Looked at the source. They really need to break that project out into separate libraries/jars (it includes everything but the kitchen sink). Some of the stuff looks interesting though, and might make interesting individual projects. Some looks like it might have been written by a college stude

Re: [MacRuby-devel] macgem & macrake take so much time to start ??

2010-06-14 Thread Gary Weaver
I'm using MacRuby 0.6, HotCocoa 0.5.1, OS X 10.6.3 and it only took a few seconds on my Mac Pro (2 x Dual-Core Intel Xeon 2.66 GHz (4 cores total), 4MB L2 Cache, 2 GB Memory). My guess is that you might be pushing your memory limit and/or running on a fairly slow Mac and/or have other processe

Re: [MacRuby-devel] status and prospects of HotCocoa?

2010-06-10 Thread Gary Weaver
These posts are a bit old now but: Lots of examples linked to in this: * http://stufftohelpyouout.blogspot.com/2010/03/hotcocoamacruby-links.html Some lame stuff I did in a few days: * http://stufftohelpyouout.blogspot.com/2010/02/hotcocoa-app-to-track-time-on-tasks.html * http://stufftohelpyo

Re: [MacRuby-devel] Security for licensing a MacRuby app

2010-04-21 Thread Gary Weaver
Isaac please forgive me for mispelling your name. I type too quickly sometimes! On Apr 21, 2010, at 3:46 PM, Gary Weaver wrote: > Daniel, > > Thanks for sharing! Getting a MacRuby app down to 4.4 MB is definitely cool. > > I'm in the minority here because I developed my Ho

Re: [MacRuby-devel] Security for licensing a MacRuby app

2010-04-21 Thread Gary Weaver
ckaged file and > remove things that you don't need (like showed in video). > > > On Wed, Apr 21, 2010 at 11:18 AM, Gary Weaver wrote: > Laurent, > > That sounds cool! > > I read the section on compilation in http://www.macruby.org/blog/index.html > but am curi

Re: [MacRuby-devel] Security for licensing a MacRuby app

2010-04-21 Thread Gary Weaver
Laurent, That sounds cool! I read the section on compilation in http://www.macruby.org/blog/index.html but am curious- is there an easy way to compile an app completely (specifically a HotCocoa app) into machine code using macrake (similar to "macrake deploy") and not just on a file-by-file ba

Re: [MacRuby-devel] Size of the apps

2010-04-14 Thread Gary Weaver
Laurent, Thanks! That is awesome! Will this reduce the footprint of HotCocoa apps as well? Thanks, Gary On Apr 9, 2010, at 8:27 PM, Laurent Sansonetti wrote: > Hi Daniel, > > As Matt said, it is possible to trim out your .app bundle to only ship what's > really needed. If you do not need t

Re: [MacRuby-devel] smaller macruby apps?

2010-02-26 Thread Gary Weaver
c's fix, but just curious)? Thanks! Gary Gary Weaver wrote: In the MacRuby tutorial ( http://www.macruby.org/documentation/tutorial.html ) there is a brief section about Embedding MacRuby in Your Application, and when you use HotCocoa's macrake deploy, it includes the framework also. Howe

[MacRuby-devel] smaller macruby apps?

2010-02-26 Thread Gary Weaver
In the MacRuby tutorial ( http://www.macruby.org/documentation/tutorial.html ) there is a brief section about Embedding MacRuby in Your Application, and when you use HotCocoa's macrake deploy, it includes the framework also. However, the smallest resulting app in MacRuby 0.5/HotCocoa 0.5.1 is r

Re: [MacRuby-devel] macruby/hotcocoa questions

2010-02-19 Thread Gary Weaver
computer is off (since it is storing the start_time of the task). It is very simplistic, but it works. So yay, a working standlone multiple-timer application in HotCocoa/MacRuby! Let me know if you have any thoughts on this. Thanks, Gary Gary Weaver wrote: Hello, I wrote a small application in

[MacRuby-devel] is active_support supported in MacRuby 0.5?

2010-02-18 Thread Gary Weaver
Is active_support supported in MacRuby 0.5? $ macirb irb(main):001:0> require 'rubygems' => true irb(main):002:0> require 'active_support' NoMethodError: undefined method `alias_method_chain' for Range:Class Thanks in advance, Gary ___ MacRuby-devel ma

[MacRuby-devel] macruby/hotcocoa questions

2010-02-18 Thread Gary Weaver
Hello, I wrote a small application in HotCocoa/MacRuby just to get familiar with it ( http://github.com/garysweaver/hourz ). MacRuby and HotCocoa are awesome! I did have a few issues during development that I thought I'd share in case anyone can assist. I'm using MacRuby 0.5 and HotCocoa 0.5