On Thu, Dec 8, 2011 at 8:47 PM, Dominic Sisneros <[email protected]> wrote: > The do_adapters for sqlite and mysql are several generations behind. In > fact, in looking for the pre-compiled versions on their respective sites, > sqlite and mysql, the ones mentioned in the do gems are no longer available > for easy download from the sites. >
Hello Dominic, What you mean by those adapters not updated? data_mapper gem do not depend directly on any adapter gem or DataObjects dm-mysql-adapter and dm-sqlite-adapter depend on dm-do-adapter (1.2.0) and the right do_* adapter: http://rubygems.org/gems/dm-sqlite-adapter http://rubygems.org/gems/dm-mysql-adapter Those gems depends on do_mysql and do_sqlite respectively and locked at version 0.10 Please note that the version of DataObjects (0.10.6) has no direct relation with the version of DataMapper (1.2.0), they are independent components with their own versioning policies. So, if you install data_mapper metagem, then you need to install either dm-sqlite-adapter or dm-mysql-adapter which will also download the right do_mysql or do_sqlite gem. Both do_mysql and do_sqlite gems also provide binaries for Windows: http://rubygems.org/gems/do_mysql http://rubygems.org/gems/do_sqlite3 So dunno where is the problem you're having? > Can someone please update these adapters to the newer versions of the > libraries? > Can you be more specific about the problem? -- Luis Lavena AREA 17 - Perfection in design is achieved not when there is nothing more to add, but rather when there is nothing more to take away. Antoine de Saint-Exupéry -- You received this message because you are subscribed to the Google Groups "DataMapper" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/datamapper?hl=en.
