Re: [MacRuby-devel] Does everyone do this with their MacRuby apps?

2011-06-17 Thread Andre Lewis
I wrote the post at http://redwoodapp.posterous.com/macruby-and-xcode-4-build-a-self-contained-ma, but I haven't submitted to the app store yet. The post was very much in the "just get it working" spirit. If anyone has better steps, would love to see them! Andre ___

Re: [MacRuby-devel] hpricot and macruby?

2011-05-04 Thread Andre Lewis
Daniel, I've had good lock with Nokogiri on MacRuby. ___ MacRuby-devel mailing list [email protected] http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel

Re: [MacRuby-devel] Fwd: How do I get gems into XCode/MacRuby environment?

2011-04-15 Thread Andre Lewis
> > Okay, one elegant way to do make gems visible to MacRuby in XCode4 is to > add environment variables GEM_HOME and GEM_PATH in the "Scheme". Does this approach work with macruby_deploy as well? On Fri, Apr 15, 2011 at 12:02 PM, Morgan Schweers wrote: > Greetings, > Interesting; I actually es

Re: [MacRuby-devel] no superclass method `initialize' with xml-object gem

2011-04-12 Thread Andre Lewis
On Tue, Apr 12, 2011 at 8:15 PM, Joshua Ballanco wrote: > Actually, it would be great if you could file a report on MacRuby's trac: > https://www.macruby.org/trac/report Done: https://www.macruby.org/trac/ticket/1221 ___ MacRuby-devel mailing list Mac

[MacRuby-devel] no superclass method `initialize' with xml-object gem

2011-04-12 Thread Andre Lewis
Hey all, I hit a snag with the xml-objectgem on MacRuby; the code works on MRI 1.9.2. A simple test case: $ macgem install xml-object $ macirb > require "rubygems" require "open-uri" require "xml-object" o=XMLObject.new(open("http://www.w3schools.com/xml/simple

Re: [MacRuby-devel] Concurrent SSL requests -> segfault

2011-04-05 Thread Andre Lewis
Hm. trying something similar within Xcode gives the following: https://gist.github.com/904634 Looks like there's a hardcoded path to /Users/lrz/src/macruby-0.10 s omewhere. On Tue, Apr 5, 2011 at 12:37 PM, Andre Lewis wrote: > Think I found a bug with Net:HTTP on MacRuby 0.10. Code

[MacRuby-devel] Concurrent SSL requests -> segfault

2011-04-05 Thread Andre Lewis
Think I found a bug with Net:HTTP on MacRuby 0.10. Code is here: https://gist.github.com/904320. In a nutshell: * Multiple, concurrent SSL http requests generate a segfault * Multiple, concurrent non-SSL http requests are OK * Multiple, sequential SSL http requests are OK All the scenarios run fi

Re: [MacRuby-devel] WWDC ?

2011-03-30 Thread Andre Lewis
> At 12:36 PM -0700 3/30/11, Christian Niles wrote: > > Are there any MacRuby-related events planned yet? > > If not, we should coordinate an informal meetup. > Good idea, it would be cool to meet up with some other MacRubyists. ___ MacRuby-devel mailing

Re: [MacRuby-devel] Two changes to Xcode4 templates

2011-03-29 Thread Andre Lewis
On Mon, Mar 28, 2011 at 6:21 PM, Matt Aimonetti wrote: > > I'm still getting up to speed on Xcode4 schemes and build settings. Are > these changes that should be made in the Xcode4 templates? > > Looks like it, could you send us a GitHub pull request please? > This is the first time I've looked

[MacRuby-devel] Two changes to Xcode4 templates

2011-03-28 Thread Andre Lewis
Starting from scratch with the Xcode4 MacRuby application template, I had to make a couple changes for Archiving to work: 1. Project -> Build Settings -> Valid Architectures * change to X86_64 only (remove the i386 default) * if you don't make this change, you get the error "ld: warning: ignor

Re: [MacRuby-devel] Xcode 4 is out... any plan to integrate soon?

2011-03-15 Thread Andre Lewis
If anyone is still having problems with this, make sure you re-install MacRuby trunk *after* installing Xcode4. On Fri, Mar 11, 2011 at 8:13 PM, Manu wrote: > does not seem to work for now.. I tried creating a simple class with a > simple attribute (for a button place holder) and link it the con

Re: [MacRuby-devel] Help test a new MacRuby app

2011-03-13 Thread Andre Lewis
eems that your app does not want to load mine because your app is > only compiled for i368. > > HTH > > On 10 mrt 2011, at 19:00, Andre Lewis wrote: > > Redwood is a "Spotlight for your web apps" -- it searches Basecamp, GMail, > and GDocs from one search bar on your deskto

Re: [MacRuby-devel] Note of warning about Xcode 4

2011-03-10 Thread Andre Lewis
Does not work for me -- IB doesn't recognize outlets or actions on Ruby controllers. On Thu, Mar 10, 2011 at 9:49 PM, denny trebbin wrote: > On Lion it does not work. Xcode4.x didn't show anything related to MacRuby. > Opening my StarCraft2 Replay Analyzer will cause Xcode4 to blame me about > m

[MacRuby-devel] Help test a new MacRuby app

2011-03-10 Thread Andre Lewis
Redwood is a "Spotlight for your web apps" -- it searches Basecamp, GMail, and GDocs from one search bar on your desktop. Developing in MacRuby has been a joy, and I'd like to make Redwood a showcase for desktop MacRuby. You can help by installing Redwood and let me know if you have any issues. We

[MacRuby-devel] macruby_deploy --gem

2011-03-03 Thread Andre Lewis
Just wanted to report from the field that gem packaging in the new macruby_deploy is working great. It really simplified our build scripts. For reference: PATH="$PATH:/usr/local/bin" macruby_deploy --embed "$TARGET_BUILD_DIR/Redwood.app" --gem nokogiri --gem gdata_19 --compile Thanks for this hug

Re: [MacRuby-devel] 0.9 update

2011-02-24 Thread Andre Lewis
On Wed, Feb 23, 2011 at 6:51 PM, Laurent Sansonetti wrote: > Are you using the new macruby_deploy --gem option to embed the gems? > I'm not ... I'm using macruby_deploy --embed to embed MacRuby, and then my own custom Rake task to 1) copy the gem files into the application; 2) run install_name_to

Re: [MacRuby-devel] 0.9 update

2011-02-23 Thread Andre Lewis
> > It would be nice if you could try the latest nightly build with your > app and favorite Ruby lib My app is working with 0.9. My build process embeds MacRuby in the app bundle, and packages the Nokogiri and Gdata gems. Everything is working so far with 0.9. Thanks! Cheers, Andre

[MacRuby-devel] "incorrect checksum for freed object" with Nokogiri (w/simple test case)

2011-02-02 Thread Andre Lewis
Hello, Nokogiri started working with MacRuby 0.8, which is awesome. However, I'm getting sporadic crashes: "incorrect checksum for freed object - object was probably modified after being freed." It doesn't crash every time I run the test, but if I run it 10 times, I get one or more failures. ***