[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.

***Self-contained script to reproduce:*** https://gist.github.com/797346.

***Example crash output:***

$ macruby nokogiri_test.rb
starting
Nokogiri parsed the html
Run # 0: OK
Run # 1: OK macruby(59860,0x100f81000) malloc: *** error for object
0x10944ce38: incorrect checksum for freed object - object was probably
modified after being freed.
*** set a breakpoint in malloc_error_break to debug
Abort trap

***My Nokogiri info:***

$ nokogiri -v
---
warnings: []
nokogiri: 1.4.4
ruby:
  version: 1.9.2
  platform: universal-darwin10.0
  engine: macruby
libxml:
  binding: extension
  compiled: 2.7.3
  loaded: 2.7.3

***MacRuby Info***

$ macruby -v
MacRuby 0.8 (ruby 1.9.2) [universal-darwin10.0, x86_64]


I posted to the Nokogiri list (
https://github.com/tenderlove/nokogiri/issues/issue/406). The test case runs
on all the other Ruby versions we've tried, so it seems Macruby-specific.

Any insight appreciated!

Andre
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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 mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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_tool on the embedded bundle files. I guess I should look into
the --gem option.
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


[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 huge improvement in 0.9.
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


[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're using embedded, compiled gems, so I'd
like to see it running successfully on a variety of Macs.

Download: http://redwoodapp.com/system/Redwood.zip  (note: OSX 10.6+
required)

A little technical background:

   - MacRuby 0.9, embedded in the application bundle
   - Two gems: Nokogiri and GData, also embedded in the application bundle.
   We use macruby_deploy --gem, which makes gem bundling a breeze.
   - A few Obj-C libraries: Sqlite3 and FMDB for database, ASIHTTPRequest
   for HTTP, Sparkle for auto-update. The app started out in Obj-C. We moved to
   MacRuby, but some parts remain in Obj-C. As we go, anything that needs
   refactoring moves to Ruby.
   - all the usual Cocoa APIs, mostly used from Ruby.
   - the main UI is rendered primarily in HTML/CSS, and events are passed
   back and forth between an embedded Webview and Cocoa


Please give it a whirl and let me know how it goes. Download link again:
http://redwoodapp.com/system/Redwood.zip

Thanks,

Andre
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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
> missing MacRuby files.
>
> --- Laurent Sansonetti ** schrieb am *Fr,
> 11.3.2011:
>
>
> Von: Laurent Sansonetti 
> Betreff: Re: [MacRuby-devel] Note of warning about Xcode 4
> An: "MacRuby development discussions."  >
> Datum: Freitag, 11. März, 2011 00:33 Uhr
>
>
> Hi Sven,
>
> On Mar 10, 2011, at 2:56 PM, Sven Schwyn wrote:
>
> > Hi Laurent
> >
> >> What Vincent is referring to is the Xcode 3 feature where IB would
> automatically reveal the outlets and actions written in Ruby. This is not
> working in Xcode 4, and may be the reason why you want to stick to Xcode 3.
> >
> > Well, it works for me. At least if by "reveal the outlets and actions"
> you mean the following:
> >
> > Create application_controller.rb:
> >
> > class AppliationController
> >  attr_accessor foobar
> >  def do_this(sender)
> >puts @foobar
> >  end
> > end
> >
> > Edit MainMenu.XIB:
> >
> > - Add an NSObject and set it to class ApplicationController
> > - Select the connection inspector for it
> > - The outlet "foobar" and the action "do_this" show up an can be linked
> to elements
>
> Strange! It wasn't working before, maybe they fixed that. I don't use
> Xcode, so I didn't see. Can someone else verify this? If it all works, we
> can include some Xcode4 templates in tomorrow's release.
>
> Laurent
> ___
> MacRuby-devel mailing list
> [email protected]
> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>
> *
>
>
> ___
> MacRuby-devel mailing list
> [email protected]
> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>
>


-- 
Scout Web Monitoring and Reporting ~ http://scoutapp.com
blog: http://blog.scoutapp.com
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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

2011-03-13 Thread Andre Lewis
HI Eloy, would you mind trying
http://redwoodapp.com/system/Redwood_macruby_trunk.zip -- it bundles MacRuby
0.10/trunk, and is compiled for x86_64. Thanks!

Andre

On Sat, Mar 12, 2011 at 9:25 AM, Eloy Duran  wrote:

> The app crashes on startup on my macbook: core 2 duo, osx 10.6.6
>
> 12-03-11 18:18:02 Redwood[22169]  starting Redwood 
> 12-03-11 18:18:04 [0x0-0x475475].com.highgroove.redwood[22169] 
> dlopen(/System/Library/Frameworks/CoreFoundation.framework/Resources/BridgeSupport/CoreFoundation.dylib,
> 1): no suitable image found.  Did find:
> 12-03-11 18:18:04 [0x0-0x475475].com.highgroove.redwood[22169] 
> /System/Library/Frameworks/CoreFoundation.framework/Resources/BridgeSupport/CoreFoundation.dylib:
> mach-o, but wrong architecture (RuntimeError)
> 12-03-11 18:18:04 com.apple.launchd.peruser.501[576] 
> ([0x0-0x475475].com.highgroove.redwood[22169])
> Exited with exit code: 1
>
> % file
> /System/Library/Frameworks/CoreFoundation.framework/Resources/BridgeSupport/CoreFoundation.dylib
> /System/Library/Frameworks/CoreFoundation.framework/Resources/BridgeSupport/CoreFoundation.dylib:
> Mach-O 64-bit dynamically linked shared library x86_64
>
> % file /Users/eloy/Downloads/Redwood.app/Contents/MacOS/Redwood
> /Users/eloy/Downloads/Redwood.app/Contents/MacOS/Redwood: Mach-O executable
> i386
>
> Not sure if that BridgeSupport file was updated by the preview installers,
> but it seems 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 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're using embedded, compiled gems, so I'd
> like to see it running successfully on a variety of Macs.
>
> Download: http://redwoodapp.com/system/Redwood.zip  (note: OSX 10.6+
> required)
>
> A little technical background:
>
>- MacRuby 0.9, embedded in the application bundle
>- Two gems: Nokogiri and GData, also embedded in the application
>bundle. We use macruby_deploy --gem, which makes gem bundling a breeze.
>- A few Obj-C libraries: Sqlite3 and FMDB for database, ASIHTTPRequest
>for HTTP, Sparkle for auto-update. The app started out in Obj-C. We moved 
> to
>MacRuby, but some parts remain in Obj-C. As we go, anything that needs
>refactoring moves to Ruby.
>- all the usual Cocoa APIs, mostly used from Ruby.
>- the main UI is rendered primarily in HTML/CSS, and events are passed
>back and forth between an embedded Webview and Cocoa
>
>
> Please give it a whirl and let me know how it goes. Download link again:
> http://redwoodapp.com/system/Redwood.zip
>
> Thanks,
>
> Andre
>
>
> ___
> MacRuby-devel mailing list
> [email protected]
> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>
>
>
> ___
> MacRuby-devel mailing list
> [email protected]
> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>
>


-- 
Scout Web Monitoring and Reporting ~ http://scoutapp.com
blog: http://blog.scoutapp.com
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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 controller
> class to the button and nothing shows in the list to make that link
>
>
> On Mar 11, 2011, at 10:22 AM, Matt Aimonetti wrote:
>
> Can you verify that the outlets are working?
> Laurent said he would commit the templates shortly so they should be
> available in a future nightly build.
>
> - Matt
>
> On Fri, Mar 11, 2011 at 8:59 AM, Manu  wrote:
>
>> Interestingly, I made the mistake to remove Xcode 3.. so I have only Xcode
>> 4 but I see it working with an older project.
>>
>> So where can I find the template for MacRuby? And where should they be
>> installed?  So far beside few path issues in the build it seems to mostly
>> work
>>
>> I created a new file SomeClass.rb and a class, and I see it working on the
>> Custom Class field of the interface
>>
>> Emmanuel
>>
>> On Mar 11, 2011, at 8:50 AM, Matt Aimonetti wrote:
>>
>> Indeed and others couldn't get Xcode to work.
>>
>> - Matt
>>
>> On Fri, Mar 11, 2011 at 8:34 AM, Manu  wrote:
>>
>>> Ok . Seems like someone got it to work but did not explain how he did...
>>>
>>>
>>> On Mar 10, 2011, at 10:54 PM, Matt Aimonetti wrote:
>>>
>>> Please refer to the other posts about the same topic sent today.
>>>
>>> - Matt
>>>
>>> On Thu, Mar 10, 2011 at 9:25 PM, Manu  wrote:
>>>
 Hi

 Now that Xcode 4 is out , and that MacRuby 0.9 is out,  any plans to
 integrate with Xcode 4? Just curious. I saw a post last month but was
 wondering if there were any update

 Emmanuel
 ___
 MacRuby-devel mailing list
 [email protected]
 http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel

>>>
>>>
>>>
>>
>>
>
>
> ___
> MacRuby-devel mailing list
> [email protected]
> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>
>


-- 
Scout Web Monitoring and Reporting ~ http://scoutapp.com
blog: http://blog.scoutapp.com
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


[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: ignoring
file
/Developer/SDKs/MacOSX10.6.sdk/Library/Frameworks//MacRuby.framework/MacRuby,
file was built for unsupported file format which is not the architecture
being linked (i386)" when archiving or doing a "build for => archiving" with
the Deployment scheme. Building with the non-Deployment scheme would still
work.

2. Deployment Scheme -> Edit Scheme -> Build
  * Add the default target to build before the Deployment target. (so you
have two targets building under the Deployment scheme)
  * if you don't make this change, you get the error "Path does not exist
`/Users/andre/Library/Developer/Xcode/DerivedData/Tango-duvzaijhkvprmzdhkzkydcudwljf/ArchiveIntermediates/Deployment/BuildProductsPath/Release/Tango.app'"

I'm still getting up to speed on Xcode4 schemes and build settings. Are
these changes that should be made in the Xcode4 templates?

Andre
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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 at XCode templates. I found the MacRuby
project templates, and it I see the Deployment target definition in
/Developer/Library/Xcode/Templates/Project Templates/Base/MacRuby
Application.xctemplate/TemplateInfo.plist. I'm stuck from there though - can
anyone point me in the right direction?
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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 list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


[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 fine on 1.9.2. Should I file a bug on trac?

Andre
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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 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 fine on 1.9.2. Should I file a bug on trac?
>
> Andre
>
>


-- 
Scout Web Monitoring and Reporting ~ http://scoutapp.com
blog: http://blog.scoutapp.com
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


[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.xml";))

NoMethodError: super: no superclass method `initialize' for
#
/Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/Gems/1.9.2/gems/xml-object-0.9.93/lib/xml-object/adapters/rexml.rb:32:in
`initialize:'
/Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/Gems/1.9.2/gems/xml-object-0.9.93/lib/xml-object/adapters.rb:13:in
`block'
/Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/Gems/1.9.2/gems/xml-object-0.9.93/lib/xml-object/adapters.rb:13:in
`initialize:'
/Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/Gems/1.9.2/gems/xml-object-0.9.93/lib/xml-object/adapters/rexml.rb:32:in
`initialize:'
/Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/Gems/1.9.2/gems/xml-object-0.9.93/lib/xml-object/adapters.rb:13:in
`block'
/Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/Gems/1.9.2/gems/xml-object-0.9.93/lib/xml-object/adapters.rb:13:in
`initialize:'
/Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/Gems/1.9.2/gems/xml-object-0.9.93/lib/xml-object/adapters/rexml.rb:32:in
`initialize:'
/Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/Gems/1.9.2/gems/xml-object-0.9.93/lib/xml-object/adapters/rexml.rb:9:in
`new:'
/Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/Gems/1.9.2/gems/xml-object-0.9.93/lib/xml-object.rb:15:in
`new:'

The same test case works fine on MRI 1.9.2.

Let me know if there's a better place to report issues like this.

Andre
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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
[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 eschew rvm for macruby stuff, so I use 'rvm system'
> whenever I want to interact with MacRuby, otherwise the gems get confused.
>
> --  Morgan
>
> On Thu, Apr 14, 2011 at 8:59 PM, Paul Davis  wrote:
>
>> 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".
>>
>> If you have ruby 1.9.2 installed via rvm (rvm.beginrescueend.com) as I
>> do, type:
>>  >rvm 1.9.2
>> >rvm info
>>
>> Look for the GEM_HOME and GEM_PATH values, and add these into the
>> Environment Variables table in the Arguments tab of the XCode/Scheme/Edit
>> Scheme dialog (whew!).
>>
>> Then just install whatever gems you need at the command line within rvm.
>>
>> PD
>>
>> Begin forwarded message:
>>
>> *From: *Paul Davis 
>> *Date: *15 April 2011 7:24:50 AM NZST
>> *To: *[email protected]
>> *Subject: **Re: [MacRuby-devel] How do I get gems into XCode/MacRuby
>> environment?*
>>
>> Good suggestion.
>>
>> macgem install hpricot # installs the gem (apparently)
>> macgem list --local# now shows rake and hpricot as the only two local
>> gems...
>>
>> After experimentation this appears to be because these are the only two
>> loaded under rvm for ruby 1.9.2. "macgem list --local" is just picking up
>> whatever gems are in the currently selected rvm environment, but not all of
>> these are showing up in XCode.
>>
>> Code snippet in rb_main.rb:
>>
>> ['rubygems', 'pp', 'rake'].each {|gem|
>>
>>  puts "Loading '#{gem}'... #{require gem}" #=> true
>>
>> }
>>
>> system ('macgem list --local')
>>
>>
>>
>> ==>
>>
>> Loading 'rubygems'... true
>>
>> Loading 'pp'... true
>>
>> Loading 'rake'... true
>>
>>
>> *** LOCAL GEMS ***
>>
>>
>>
>> applicationDidFinishLaunching
>>
>>
>>
>> More testing later.
>>
>> On 15-Apr-11, at 2:00 AM, [email protected]:
>>
>> Try using "macgem". All of the MacRuby binaries are prefixed with "mac-"
>>
>> (macruby, macirb, macri, etc.)
>>
>>
>> On Thu, Apr 14, 2011 at 1:44 AM, Paul Davis  wrote:
>>
>>
>> I'm past the Hello World tutorial, and want to try something useful but I
>>
>> cannot seem to access my gems from within the XCode/MacRuby environment.
>>
>> rubygems is there, as is pp; but not, for instance hpricot.
>>
>>
>> $gem list --local
>>
>> ...
>>
>> hpricot (0.8.1, 0.6.164)
>>
>> ...
>>
>> rack (1.0.1)
>>
>> rails (2.3.5, 2.3.4, 1.2.6)
>>
>> ...
>>
>>
>> Within rb_main.rb:
>>
>>
>> puts "Loading rubygems... #{require 'rubygems'}" #=> true
>>
>> puts "Loading pp... #{require 'pp'}" #=> true
>>
>>
>> but
>>
>>
>> puts "Loading hpricot... #{require 'hpricot'}"
>>
>>
>> gets me "no such file to load -- hpricot (LoadError)"
>>
>>
>> Any hints? Do I need to hunt down the full path?
>>
>> ___
>>
>> MacRuby-devel mailing list
>>
>> [email protected]
>>
>> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>>
>>
>>
>>
>>
>>
>>
>> ___
>> MacRuby-devel mailing list
>> [email protected]
>> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>>
>>
>
> ___
> MacRuby-devel mailing list
> [email protected]
> http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
>
>


-- 
Scout Web Monitoring and Reporting ~ http://scoutapp.com
blog: http://blog.scoutapp.com
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel


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] 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
___
MacRuby-devel mailing list
[email protected]
http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel