Re: [MacRuby-devel] Sequel and macruby

2011-09-14 Thread Morgan Schweers
by development discussions." > > Subject: Re: [MacRuby-devel] Sequel and macruby > Message-ID: > > Content-Type: text/plain; charset="iso-8859-1" > > > Greetings, > You can check out an old thread on this subject: > http://lists.macosforge.org/pipermail/m

Re: [MacRuby-devel] Sequel and macruby

2011-09-13 Thread Wladjmir Godioz
Hi, thanks your tweak still works for this basic example. you filed a bug report for this? > Message: 1 > Date: Thu, 8 Sep 2011 11:00:05 -0700 > From: Morgan Schweers > To: "MacRuby development discussions." > > Subject: Re: [MacRuby-devel] Seq

Re: [MacRuby-devel] Sequel and macruby

2011-09-08 Thread Morgan Schweers
Greetings, You can check out an old thread on this subject: http://lists.macosforge.org/pipermail/macruby-devel/2011-April/007547.html I lost the plot somewhere in there, and never got back to it. :( -- Morgan On Wed, Sep 7, 2011 at 9:15 AM, Wladjmir Godioz wrote: > Hi, > > in my first exper

[MacRuby-devel] Sequel and macruby

2011-09-07 Thread Wladjmir Godioz
Hi, in my first experience with sequel, i installer sqlite3 and sequel gems without problem, then i tried to run the simple example in readme.doc of sequel require 'rubygems' require 'sequel' DB = Sequel.sqlite # memory database DB.create_table :items do primary_key :id String :name Float