<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>DataMapper Google Group</title>
  <link>http://groups.google.com/group/datamapper</link>
  <description>Ruby DataMapper: http://datamapper.org</description>
  <language>en</language>
  <item>
  <title>Re: [DataMapper] Decimal datatype</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/697bb14aa902bdc2/e2e02f8b8d7ee22e?show_docid=e2e02f8b8d7ee22e</link>
  <description>
  I see him setting data to 10 - did you miss that? I&#39;m not where I can try &lt;br&gt; this, but I&#39;d rename data and see if that helps. DM has internal methods, &lt;br&gt; perhaps you have a a collision?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/697bb14aa902bdc2/e2e02f8b8d7ee22e?show_docid=e2e02f8b8d7ee22e</guid>
  <author>
  clifford.he...@gmail.com
  (Clifford Heath)
  </author>
  <pubDate>Fri, 24 May 2013 07:31:37 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Decimal datatype</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/697bb14aa902bdc2/ea94b0e56f23a3d6?show_docid=ea94b0e56f23a3d6</link>
  <description>
  You are asigning foo to the name field... and nothing to the data field... &lt;br&gt; in your model, you declared data as a requires field... if you don&#39;t assign &lt;br&gt; anything to it, it&#39;s nil... and data must have a value... that&#39;s why. &lt;br&gt; On May 23, 2013 11:18 AM, &amp;quot;Nicholas Wieland&amp;quot; &amp;lt;nicholas.wiel...@gmail.com&amp;gt; &lt;br&gt; wrote:
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/697bb14aa902bdc2/ea94b0e56f23a3d6?show_docid=ea94b0e56f23a3d6</guid>
  <author>
  antilla...@gmail.com
  (Antonio Antillon)
  </author>
  <pubDate>Thu, 23 May 2013 23:58:55 UT
</pubDate>
  </item>
  <item>
  <title>Decimal datatype</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/697bb14aa902bdc2/68d38530cc5441ea?show_docid=68d38530cc5441ea</link>
  <description>
  Hi *, I have a model like this: &lt;br&gt; class Trait &lt;br&gt; include DataMapper::Resource &lt;br&gt; property :id, Serial &lt;br&gt; property :name, Slug, :required =&amp;gt; true &lt;br&gt; property :data, Decimal, :required =&amp;gt; true &lt;br&gt; has n, :items, :through =&amp;gt; :assignments &lt;br&gt; has n, :assignments &lt;br&gt; end &lt;br&gt; and if I do: &lt;br&gt; irb(main):029:0&amp;gt; t = Trait.new
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/697bb14aa902bdc2/68d38530cc5441ea?show_docid=68d38530cc5441ea</guid>
  <author>
  nicholas.wiel...@gmail.com
  (Nicholas Wieland)
  </author>
  <pubDate>Thu, 23 May 2013 15:12:00 UT
</pubDate>
  </item>
  <item>
  <title>Re: Mariadb adapter - MySQl</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/d8d46b380fa5c694/b7eafd0677308934?show_docid=b7eafd0677308934</link>
  <description>
  MariaDB is compatible with MySQL, so it should work with using regular &lt;br&gt; &amp;quot;mysql&amp;quot; adapter. &lt;br&gt; &lt;p&gt;m. &lt;br&gt; &lt;p&gt;W dniu wtorek, 16 kwietnia 2013 02:51:47 UTC+2 użytkownik Sayth Renshaw &lt;br&gt; napisał:
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/d8d46b380fa5c694/b7eafd0677308934?show_docid=b7eafd0677308934</guid>
  <author>
  marcin.lewandow...@llp.pl
  (Marcin Lewandowski)
  </author>
  <pubDate>Tue, 21 May 2013 17:15:39 UT
</pubDate>
  </item>
  <item>
  <title>DataMapper is behaving differently when Rails app is run as console and server</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/f903206941288d1a/b5222864b28d9ef2?show_docid=b5222864b28d9ef2</link>
  <description>
  I have a Rails 3.1 app and I use DataMapper as ORM. &lt;br&gt; I have following models (stripped): &lt;br&gt; class Task &lt;br&gt; include DataMapper::Resource &lt;br&gt; belongs_to :group &lt;br&gt; end &lt;br&gt; class Group &lt;br&gt; include DataMapper::Resource &lt;br&gt; belongs_to :project &lt;br&gt; has n, :tasks &lt;br&gt; end &lt;br&gt; class Project &lt;br&gt; include DataMapper::Resource &lt;br&gt; has n, :groups
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/f903206941288d1a/b5222864b28d9ef2?show_docid=b5222864b28d9ef2</guid>
  <author>
  marcin.lewandow...@llp.pl
  (Marcin Lewandowski)
  </author>
  <pubDate>Tue, 21 May 2013 17:15:01 UT
</pubDate>
  </item>
  <item>
  <title>Re: Datamapper autoupgrade for test db</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/1808468ee419380e/05799e2167a06ccc?show_docid=05799e2167a06ccc</link>
  <description>
  RSpec.configure do |config| &lt;br&gt; config_file = YAML.load_file(&#39;settingsyml&#39;)[ &lt;br&gt; &#39;test&#39;] &lt;br&gt; DataMapper.setup(:default, config_file[&#39;db_url&#39;]) &lt;br&gt; DataMapper.finalize &lt;br&gt; DataMapper::Model.raise_on_sav e_failure = true &lt;br&gt; &lt;p&gt; # Flush all tables before each test and enter some default values # &lt;br&gt; &lt;p&gt; config.before(:each) {
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/1808468ee419380e/05799e2167a06ccc?show_docid=05799e2167a06ccc</guid>
  <author>
  luckysud...@gmail.com
  (draxxxeus)
  </author>
  <pubDate>Mon, 20 May 2013 05:48:51 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Digest for datamapper@googlegroups.com - 1 Message in 1 Topic</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/98114dd83fba7f8b/63053de8ab9d6817?show_docid=63053de8ab9d6817</link>
  <description>
  I have done this in my spec file: &lt;br&gt; &lt;p&gt;RSpec.configure do |config| &lt;br&gt; config_file = YAML.load_file(&#39;settingsyml&#39;)[ &#39;test&#39;] &lt;br&gt; #DataMapper::Logger.new($stdou t, :debug) &lt;br&gt; DataMapper.setup(:default, config_file[&#39;db_url&#39;]) &lt;br&gt; DataMapper.finalize &lt;br&gt; DataMapper::Model.raise_on_sav e_failure = true &lt;br&gt; &lt;p&gt; #----------------------------- ------------------------------ ------------------------------ ---#
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/98114dd83fba7f8b/63053de8ab9d6817?show_docid=63053de8ab9d6817</guid>
  <author>
  luckysud...@gmail.com
  (Sudeep Agarwal)
  </author>
  <pubDate>Mon, 20 May 2013 05:44:27 UT
</pubDate>
  </item>
  <item>
  <title>Datamapper autoupgrade for test db</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/1808468ee419380e/e932c6f0e113a5d9?show_docid=e932c6f0e113a5d9</link>
  <description>
  How can I run an autoupgrade for my test database to contain my schema &lt;br&gt; before running my specs ? &lt;br&gt; Currently I do not see a rake task doing that. &lt;br&gt; Am I missing something?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/1808468ee419380e/e932c6f0e113a5d9?show_docid=e932c6f0e113a5d9</guid>
  <author>
  aks...@reversehack.in
  (Akshay Khole)
  </author>
  <pubDate>Sun, 19 May 2013 05:01:41 UT
</pubDate>
  </item>
  <item>
  <title>Error message: SSL SYSCALL error: Connection timed out</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/4d051a0110579b0c/d9c3d7b1c7a8e9dd?show_docid=d9c3d7b1c7a8e9dd</link>
  <description>
  I have a Rails 3.2 application with DataMapper against Postgres that has &lt;br&gt; produced this error: &lt;br&gt; *Error message: SSL SYSCALL error: Connection timed out * &lt;br&gt; This seems to be a common problem with ActiveRecord and Postgres as &lt;br&gt; described here: &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://github.com/rails/rails/issues/3392&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; However, I am curious how the DataMapper community believes this can be
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/4d051a0110579b0c/d9c3d7b1c7a8e9dd?show_docid=d9c3d7b1c7a8e9dd</guid>
  <author>
  n...@vidyasource.com
  (Neil C)
  </author>
  <pubDate>Mon, 13 May 2013 19:41:16 UT
</pubDate>
  </item>
  <item>
  <title>Facing problems with multiple many-to-many relationship, getting &#39;+options[:links]+ should not be empty&#39;</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/80f3188316371f5e/500ccaa92403ba5c?show_docid=500ccaa92403ba5c</link>
  <description>
  I have the structure described here: &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://tny.cz/1cd100f7&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; Thanks
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/80f3188316371f5e/500ccaa92403ba5c?show_docid=500ccaa92403ba5c</guid>
  <author>
  luckysud...@gmail.com
  (draxxxeus)
  </author>
  <pubDate>Fri, 10 May 2013 07:00:38 UT
</pubDate>
  </item>
  <item>
  <title>Facing problem with multiple many-to-many associations</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/f119097ae5f65065/b8cd643f55c09727?show_docid=b8cd643f55c09727</link>
  <description>
  Hi, &lt;br&gt; I want to implement the following scenario: &lt;br&gt; One user can be owner of multiple groups &lt;br&gt; One user can be member of multiple groups &lt;br&gt; One group can have multiple owners &lt;br&gt; One group can have multiple users &lt;br&gt; I have two models, User and Group. &lt;br&gt; In the user model, when I try to do this: &lt;br&gt; User.get(:id =&amp;gt; 1).group_owners
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/f119097ae5f65065/b8cd643f55c09727?show_docid=b8cd643f55c09727</guid>
  <author>
  luckysud...@gmail.com
  (draxxxeus)
  </author>
  <pubDate>Fri, 10 May 2013 06:56:54 UT
</pubDate>
  </item>
  <item>
  <title>querying 2 tables on a single DM call</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/4f30ac766daafe62/675cd80ffa08dec1?show_docid=675cd80ffa08dec1</link>
  <description>
  Hello, &lt;br&gt; &lt;p&gt;I have a performance related question. &lt;br&gt; &lt;p&gt;We have a call which runs multiple times per page load. After reading &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://datamapper.org/docs/associations.html&quot;&gt;[link]&lt;/a&gt; we currently have &lt;br&gt; TranslationTarget.first(:trans lation_key =&amp;gt; {:source =&amp;gt; source}) but it &lt;br&gt; first does a query to table TranslationKey then the query
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/4f30ac766daafe62/675cd80ffa08dec1?show_docid=675cd80ffa08dec1</guid>
  <author>
  i...@tiagomatos.org
  (Tiago Matos)
  </author>
  <pubDate>Mon, 06 May 2013 22:57:50 UT
</pubDate>
  </item>
  <item>
  <title>Mariadb adapter - MySQl</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/d8d46b380fa5c694/3cb40a5b20841b66?show_docid=3cb40a5b20841b66</link>
  <description>
  Simple and short question. &lt;br&gt; Is it possible to use the MySQL adapter to connect with the MariaDB &lt;br&gt; database? If Yes How? &lt;br&gt; Thanks &lt;br&gt; sayth
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/d8d46b380fa5c694/3cb40a5b20841b66?show_docid=3cb40a5b20841b66</guid>
  <author>
  flebber.c...@gmail.com
  (Sayth Renshaw)
  </author>
  <pubDate>Tue, 16 Apr 2013 00:51:47 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] DM 1.2 and various integration issues?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/192710d7f22d92a0?show_docid=192710d7f22d92a0</link>
  <description>
  If it&#39;s for a greenfield project with no existing database(s), I&#39;d suggest &lt;br&gt; using ActiveRecord for the reasons that Chris mentioned. However, I still &lt;br&gt; think that DataMapper shines when you have an existing (legacy) database &lt;br&gt; schema that you can&#39;t change that you want to write models for. &lt;br&gt; &lt;p&gt;ActiveRecord assumes that it controls the schema, so it wants to put an
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/192710d7f22d92a0?show_docid=192710d7f22d92a0</guid>
  <author>
  a...@abevoelker.com
  (Abe Voelker)
  </author>
  <pubDate>Fri, 05 Apr 2013 14:35:05 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] DM 1.2 and various integration issues?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/3e5173cdd6b26266?show_docid=3e5173cdd6b26266</link>
  <description>
  You&#39;re welcome. &lt;br&gt; &lt;p&gt;Initially we adopted DM since we needed to fit Rails around our legacy database schema and didn&#39;t want to take the hit of having to migrate large parts of our schema (which is accessed by a PHP app and a Rails app, both of which are large). DM helped us greatly in that regard, since it lets you map table names and column names cleanly. We&#39;re losing that benefit by leaving DM, but we&#39;re just going to get our schema more in line with how AR wants it, over a period of time.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/3e5173cdd6b26266?show_docid=3e5173cdd6b26266</guid>
  <author>
  ch...@w3style.co.uk
  (Chris Corbyn)
  </author>
  <pubDate>Fri, 05 Apr 2013 13:50:04 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] DM 1.2 and various integration issues?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/304bb68e4a5bf8b4?show_docid=304bb68e4a5bf8b4</link>
  <description>
  Thanks very much for the detailed response. This is very helpful. &lt;br&gt; &lt;p&gt;Did you consider other Ruby ORMs, like Sequel, rather than ActiveRecord? &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://sequel.rubyforge.org/&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; If so, I&#39;d appreciate your thoughts on why you chose to go with &lt;br&gt; ActiveRecord instead. &lt;br&gt; &lt;p&gt;Best, &lt;br&gt; David &lt;br&gt; &lt;p&gt;-- &lt;br&gt; David Harrison
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/304bb68e4a5bf8b4?show_docid=304bb68e4a5bf8b4</guid>
  <author>
  david_harri...@brown.edu
  (Harrison, David)
  </author>
  <pubDate>Fri, 05 Apr 2013 13:31:26 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] DM 1.2 and various integration issues?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/52d0c0a69f379a82?show_docid=52d0c0a69f379a82</link>
  <description>
  You&#39;re nuts, sorry ;) You&#39;re moving to a dead project from an actively developed one. &lt;br&gt; &lt;p&gt;Il giorno 05/apr/2013, alle ore 22:10, kristian &amp;lt;m.krist...@web.de&amp;gt; ha scritto:
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/52d0c0a69f379a82?show_docid=52d0c0a69f379a82</guid>
  <author>
  ch...@w3style.co.uk
  (Chris Corbyn)
  </author>
  <pubDate>Fri, 05 Apr 2013 11:27:34 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] DM 1.2 and various integration issues?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/bfac973cb7441fce?show_docid=bfac973cb7441fce</link>
  <description>
  Here&#39;s my $0.02. We&#39;re currently in the middle of the huge refactor to remove DM1 from our app and switch over to ActiveRecord. We&#39;ve been using DM1 for about 18 months at this point. &lt;br&gt; &lt;p&gt; - DM1 is not being actively developed. Discussion with the core contributors on Twitter came to the conclusion that support for it has ceased and there are no plans to maintain the code any further (&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://twitter.com/dkubb/status/304315005619273728&quot;&gt;[link]&lt;/a&gt;)
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/bfac973cb7441fce?show_docid=bfac973cb7441fce</guid>
  <author>
  ch...@w3style.co.uk
  (Chris Corbyn)
  </author>
  <pubDate>Fri, 05 Apr 2013 11:26:31 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] DM 1.2 and various integration issues?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/20157d16543037f2?show_docid=20157d16543037f2</link>
  <description>
  I need to add my two cents. I am currently moving 2-3 three little &lt;br&gt; application from AR to DM1 using rails and once that is done the next step &lt;br&gt; is to move from rails to cuba. all problems on the way could be solved so &lt;br&gt; far. &lt;br&gt; &lt;p&gt;- christian
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/20157d16543037f2?show_docid=20157d16543037f2</guid>
  <author>
  m.krist...@web.de
  (kristian)
  </author>
  <pubDate>Fri, 05 Apr 2013 11:10:44 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] DM 1.2 and various integration issues?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/77f765fe0ef997c1?show_docid=77f765fe0ef997c1</link>
  <description>
  Thanks very much for the response. &lt;br&gt; &lt;p&gt;So there are no specific integration issues, but simply much better support &lt;br&gt; for AR? &lt;br&gt; &lt;p&gt;Best, &lt;br&gt; David &lt;br&gt; &lt;p&gt;-- &lt;br&gt; David Harrison &lt;br&gt; Lead Developer Analyst &lt;br&gt; Computing &amp;amp; Information Services &lt;br&gt; Brown University &lt;br&gt; 401-863-7455
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/77f765fe0ef997c1?show_docid=77f765fe0ef997c1</guid>
  <author>
  david_harri...@brown.edu
  (Harrison, David)
  </author>
  <pubDate>Fri, 05 Apr 2013 11:09:30 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] DM 1.2 and various integration issues?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/50b971236faca91d?show_docid=50b971236faca91d</link>
  <description>
  Various gems working with multiple ORMs have better support for AR than DM1. It&#39;s just easier to work with AR than DM1 because it has better support in the community. We&#39;ve shifted focus on DM2 so DM1 is being EOLed. &lt;br&gt; &lt;p&gt;Cheers
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/50b971236faca91d?show_docid=50b971236faca91d</guid>
  <author>
  piotr.soln...@gmail.com
  (Piotr Solnica)
  </author>
  <pubDate>Fri, 05 Apr 2013 11:07:16 UT
</pubDate>
  </item>
  <item>
  <title>DM 1.2 and Active Scaffold or Formtastic?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/4bf57cc319e9d57c/d3afd23a0a9ad975?show_docid=d3afd23a0a9ad975</link>
  <description>
  Just curious, has anyone used Active Scaffold or Formtastic with DM 1.2? &lt;br&gt; I haven&#39;t found references to the two being used together. I hope to try &lt;br&gt; Active Scaffold with DM 1.2 later today. &lt;br&gt; Thanks very much.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/4bf57cc319e9d57c/d3afd23a0a9ad975?show_docid=d3afd23a0a9ad975</guid>
  <author>
  david_harri...@brown.edu
  </author>
  <pubDate>Fri, 05 Apr 2013 11:03:15 UT
</pubDate>
  </item>
  <item>
  <title>DM 1.2 and various integration issues?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/82eb816631fd8a36?show_docid=82eb816631fd8a36</link>
  <description>
  Hello, &lt;br&gt; I&#39;m considering using datamapper 1.2 on a project. &lt;br&gt; However, I&#39;m curious what are the &amp;quot;various integration issues&amp;quot; that might &lt;br&gt; be encountered when using DM 1.2? (See reference below, from December). &lt;br&gt; Have those issues been resolved?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/5021c2e5317a2343/82eb816631fd8a36?show_docid=82eb816631fd8a36</guid>
  <author>
  david_harri...@brown.edu
  </author>
  <pubDate>Fri, 05 Apr 2013 10:58:16 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Writing DM queries using newer 1.9+ symbol format, how?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/7177dabea0ac08f5?show_docid=7177dabea0ac08f5</link>
  <description>
  So :age.gt doesn&#39;t work anymore? Is there a more up-to-date documentation than the DataMapper.org site? &lt;br&gt; &lt;p&gt;Thanks for the help. &lt;br&gt; &lt;p&gt;gutsho...@gmail.com
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/7177dabea0ac08f5?show_docid=7177dabea0ac08f5</guid>
  <author>
  gutsho...@gmail.com
  (gutshorty@gmail.com)
  </author>
  <pubDate>Thu, 04 Apr 2013 01:50:00 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Writing DM queries using newer 1.9+ symbol format, how?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/bf3b33e6271809fe?show_docid=bf3b33e6271809fe</link>
  <description>
  Not quite. Datamapper does two things intelligently. The first is that it &lt;br&gt; infers what it&#39;s supposed to do based on the value of a property. &lt;br&gt; &lt;p&gt;So when you say `People.all(age: (start..end))` it&#39;ll infer that you want &lt;br&gt; to look for ages within that range. &lt;br&gt; &lt;p&gt;Additionally DataMapper allows you to use structured keys to indicate other
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/bf3b33e6271809fe?show_docid=bf3b33e6271809fe</guid>
  <author>
  t...@knowtheory.net
  (Ted Han)
  </author>
  <pubDate>Thu, 04 Apr 2013 01:45:42 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Writing DM queries using newer 1.9+ symbol format, how?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/0d26900625c54980?show_docid=0d26900625c54980</link>
  <description>
  Ah, I see. &lt;br&gt; &lt;p&gt;I did notice that zoo.all(population: (start..end)) is valid. I guess that&#39;s what you meant by &amp;quot;mix the two syntaxes.&amp;quot; &lt;br&gt; &lt;p&gt;gutsho...@gmail.com
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/0d26900625c54980?show_docid=0d26900625c54980</guid>
  <author>
  gutsho...@gmail.com
  (gutshorty@gmail.com)
  </author>
  <pubDate>Thu, 04 Apr 2013 01:17:24 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Writing DM queries using newer 1.9+ symbol format, how?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/2808c1169adb308f?show_docid=2808c1169adb308f</link>
  <description>
  That syntax is not a new Symbol format, it&#39;s a new Hash syntax, where the keys are Symbols. You can&#39;t use that with DataMapper, since :staff.gt is not a Symbol itself. You can mix the two syntaxes if you want though. &lt;br&gt; &lt;p&gt;Il giorno 04/apr/2013, alle ore 11:50, Gus Shotz &amp;lt;gutsho...@gmail.com&amp;gt; ha scritto:
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/2808c1169adb308f?show_docid=2808c1169adb308f</guid>
  <author>
  ch...@w3style.co.uk
  (Chris Corbyn)
  </author>
  <pubDate>Thu, 04 Apr 2013 01:08:40 UT
</pubDate>
  </item>
  <item>
  <title>Writing DM queries using newer 1.9+ symbol format, how?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/cbd66348dd419e48?show_docid=cbd66348dd419e48</link>
  <description>
  How would I write zoo.all(:population.gte =&amp;gt; 100, :staff.gt =&amp;gt; 2) using the &lt;br&gt; newer symbol: format? I was hoping I could do zoo.all(population: &amp;gt;= 100, &lt;br&gt; staff: &amp;gt; 2) but it doesn&#39;t work.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/1437dea574b05c45/cbd66348dd419e48?show_docid=cbd66348dd419e48</guid>
  <author>
  gutsho...@gmail.com
  (Gus Shotz)
  </author>
  <pubDate>Thu, 04 Apr 2013 00:50:30 UT
</pubDate>
  </item>
  <item>
  <title>In memory adapter example for DM2</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/0ae580092744c8eb/e0991110cf0e68e6?show_docid=e0991110cf0e68e6</link>
  <description>
  Hi, I&#39;ve been trying to setup an in memory adapter example for DM2. &lt;br&gt; Want to use it in a project, so this is kind of an experiment. &lt;br&gt; Anyway, I&#39;m having trouble inserting records. &lt;br&gt; Example code can be found here: &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://gist.github.com/elvanja/5228179&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; The commented out attempt was taken from dm-mapper source, as noted.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/0ae580092744c8eb/e0991110cf0e68e6?show_docid=e0991110cf0e68e6</guid>
  <author>
  elva...@gmail.com
  (Vanja Radovanović)
  </author>
  <pubDate>Sat, 30 Mar 2013 01:30:20 UT
</pubDate>
  </item>
  <item>
  <title>How to use Postgres&#39; NOTIFY/LISTEN from DataMapper?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/13f9466d354a4229/08a976c09b6b7e62?show_docid=08a976c09b6b7e62</link>
  <description>
  I&#39;m trying to take advantage of Postgres&#39; awesome NOTIFY&amp;lt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.postgresql.org/docs/9.2/static/sql-notify.html&quot;&gt;[link]&lt;/a&gt;&amp;gt; &lt;br&gt; /LISTEN &amp;lt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://www.postgresql.org/docs/9.2/static/sql-listen.html&quot;&gt;[link]&lt;/a&gt;&amp;gt; feature &lt;br&gt; to avoid polling a table for changes, but am having trouble trying to &lt;br&gt; figure out how to use them from DataMapper. With the pg driver&amp;lt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://rubygems.org/gems/pg&quot;&gt;[link]&lt;/a&gt;&amp;gt;you can call
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/13f9466d354a4229/08a976c09b6b7e62?show_docid=08a976c09b6b7e62</guid>
  <author>
  a...@abevoelker.com
  (Abe Voelker)
  </author>
  <pubDate>Fri, 29 Mar 2013 19:52:06 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Usage of dm-oracle-adapter</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/f620c1c13efb2937/b93090a22a219787?show_docid=b93090a22a219787</link>
  <description>
  Thanks Till. &lt;br&gt; Here is the format of the database.yml file that worked for me. Rather &lt;br&gt; than using TNS, we used the full host &lt;br&gt; defaults: &amp;amp;defaults &lt;br&gt; adapter: oracle &lt;br&gt; development: &lt;br&gt; host: some_machine.somewhere.edu:[po rt num]/[SID] &lt;br&gt; username: MY_SCHEMA &lt;br&gt; password: NOT_REALLY_MY_PW &lt;br&gt; &amp;lt;&amp;lt;: *defaults &lt;br&gt; ...
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/f620c1c13efb2937/b93090a22a219787?show_docid=b93090a22a219787</guid>
  <author>
  david_harri...@brown.edu
  </author>
  <pubDate>Fri, 29 Mar 2013 16:30:58 UT
</pubDate>
  </item>
  <item>
  <title>How to Manipulate Join Table Data?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/7413dab0c01505c3/7df5221c768d9045?show_docid=7df5221c768d9045</link>
  <description>
  Hi, &lt;br&gt; I just recently started using DM and I&#39;m unclear on how one can/should &lt;br&gt; manipulate data in join tables. Using the photo, tag, tagging example (see &lt;br&gt; below) -- how can I using DM add, change, or delete data from the &amp;quot;tagging&amp;quot; &lt;br&gt; table? &lt;br&gt; class Photo &lt;br&gt; include DataMapper::Resource &lt;br&gt; property :id, Serial
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/7413dab0c01505c3/7df5221c768d9045?show_docid=7df5221c768d9045</guid>
  <author>
  ari.brandeis.k...@gmail.com
  (Ari King)
  </author>
  <pubDate>Thu, 28 Mar 2013 14:08:58 UT
</pubDate>
  </item>
  <item>
  <title>Re: MySQL auto_upgrade! failing</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/8c196bb733110029/fe3887ea3c811ca6?show_docid=fe3887ea3c811ca6</link>
  <description>
  I seem to have fixed it. &lt;br&gt; I noticed that there was a storage_exists? function in both &lt;br&gt; dm-do-adapter.rb and dm-mysql-adapter.rb. &lt;br&gt; Commenting out this block in dm-mysql-adapter.rb solves my issue: &lt;br&gt; 21 def storage_exists?(storage_name) &lt;br&gt; 22 select(&#39;SHOW TABLES LIKE ?&#39;, storage_name).first == storage_name
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/8c196bb733110029/fe3887ea3c811ca6?show_docid=fe3887ea3c811ca6</guid>
  <author>
  sdsurfg...@gmail.com
  (Dan D)
  </author>
  <pubDate>Wed, 27 Mar 2013 23:49:40 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] MySQL auto_upgrade! failing</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/8c196bb733110029/a70a390503d2e8e5?show_docid=a70a390503d2e8e5</link>
  <description>
  Same error with different table name. &lt;br&gt; Output of dm.log: &lt;br&gt; Wed, 27 Mar 2013 23:02:11 GMT ~ info ~ Logfile created &lt;br&gt; ~ (0.000000) SET sql_auto_is_null = 0 &lt;br&gt; ~ (0.000000) SET SESSION sql_mode = &lt;br&gt; &#39;ANSI,NO_BACKSLASH_ESCAPES,NO_ DIR_IN_CREATE,NO_ENGINE_SUBSTI TUTION,NO_UNSIGNED_SUBTRACTION ,TRADITIONAL&#39; &lt;br&gt; ~ (0.000000) SHOW TABLES LIKE &#39;Inv1&#39;
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/8c196bb733110029/a70a390503d2e8e5?show_docid=a70a390503d2e8e5</guid>
  <author>
  sdsurfg...@gmail.com
  (Dan D)
  </author>
  <pubDate>Wed, 27 Mar 2013 23:11:12 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] MySQL auto_upgrade! failing</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/8c196bb733110029/77d861a37b5eb1de?show_docid=77d861a37b5eb1de</link>
  <description>
  frst turn on the logger then you see what SQL is going to DB &lt;br&gt; &lt;p&gt; DataMapper::Logger.new($stdout , :debug) &lt;br&gt; &lt;p&gt;does the same error pop up with a different storage name ?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/8c196bb733110029/77d861a37b5eb1de?show_docid=77d861a37b5eb1de</guid>
  <author>
  m.krist...@web.de
  (kristian)
  </author>
  <pubDate>Wed, 27 Mar 2013 03:34:57 UT
</pubDate>
  </item>
  <item>
  <title>MySQL auto_upgrade! failing</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/8c196bb733110029/ac7b955ad642daa8?show_docid=ac7b955ad642daa8</link>
  <description>
  I&#39;m migrating an app from sqlite to mysql. auto_upgrade! works great with &lt;br&gt; sqlite, but crashes with mysql saying that the table already exists. &lt;br&gt; C:/Ruby/lib/ruby/gems/1.8/gems /dm-migrations-1.2.0/lib/dm-mi grations/adapters/dm-do-adapte r.rb:100:in &lt;br&gt; `execute_non_query&#39;: Table &#39;inv&#39; already exists (DataObjects::SyntaxError)
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/8c196bb733110029/ac7b955ad642daa8?show_docid=ac7b955ad642daa8</guid>
  <author>
  sdsurfg...@gmail.com
  (Dan D)
  </author>
  <pubDate>Wed, 27 Mar 2013 00:46:58 UT
</pubDate>
  </item>
  <item>
  <title>Re: [Experimental] Repository Pattern on top of Virtus for ActiveRecord, etc</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/28cf9c8031145ac4/13da73cb9791444c?show_docid=13da73cb9791444c</link>
  <description>
  Update: I have just added support for mapping attributes to different ORMs &lt;br&gt; (ActiveRecord and Sequel for now) for the same entity!
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/28cf9c8031145ac4/13da73cb9791444c?show_docid=13da73cb9791444c</guid>
  <author>
  ifre...@gmail.com
  (Fred Wu)
  </author>
  <pubDate>Tue, 19 Mar 2013 12:50:27 UT
</pubDate>
  </item>
  <item>
  <title>[Experimental] Repository Pattern on top of Virtus for ActiveRecord, etc</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/28cf9c8031145ac4/a725f040f45f89fe?show_docid=a725f040f45f89fe</link>
  <description>
  Hey guys, &lt;br&gt; Over the past few days I&#39;ve started experimenting with the idea of &lt;br&gt; implementing the repository pattern on top of ActiveRecord (yes, it sounds &lt;br&gt; scary). The motivation came after we were about to kick start a relatively &lt;br&gt; large scale system. It would be great to retain the powerfulness of &lt;br&gt; ActiveRecord as well as making our app easier to maintain and test. It is
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/28cf9c8031145ac4/a725f040f45f89fe?show_docid=a725f040f45f89fe</guid>
  <author>
  ifre...@gmail.com
  (Fred Wu)
  </author>
  <pubDate>Tue, 19 Mar 2013 04:09:40 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] do_oracle adapter and others for 2.0 on windows</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/8d09a8bb9139ce9d/4cbe8525b2341d0f?show_docid=4cbe8525b2341d0f</link>
  <description>
  Hello, &lt;br&gt; &lt;p&gt;The gem authors of do_* adapters rely on rake-compiler and OSX/Linux &lt;br&gt; setups to be able to produce these binaries. &lt;br&gt; &lt;p&gt;There are several details for Ruby 2.0.0 and cross-compilation, &lt;br&gt; specially it is recommended GCC 4.7.2 as compiler since that is the &lt;br&gt; one used in Windows. &lt;br&gt; &lt;p&gt;Until today, the recommended compiler for rake-compiler (and ruby
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/8d09a8bb9139ce9d/4cbe8525b2341d0f?show_docid=4cbe8525b2341d0f</guid>
  <author>
  luislav...@gmail.com
  (Luis Lavena)
  </author>
  <pubDate>Thu, 14 Mar 2013 05:41:07 UT
</pubDate>
  </item>
  <item>
  <title>do_oracle adapter and others for 2.0 on windows</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/8d09a8bb9139ce9d/1819714a93c26671?show_docid=1819714a93c26671</link>
  <description>
  in looking at the code for windows, &lt;br&gt; &lt;p&gt;rescue LoadError &lt;br&gt; if RUBY_PLATFORM =~ /mingw|mswin/ then &lt;br&gt; RUBY_VERSION =~ /(\d+.\d+)/ &lt;br&gt; require &amp;quot;do_oracle/#{$1}/do_oracle&amp;quot; &lt;br&gt; else &lt;br&gt; &lt;p&gt;it is requiring the code based on RUBY_VERSION so the gems need to be &lt;br&gt; updated to require a 2.0 directory for ruby2
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/8d09a8bb9139ce9d/1819714a93c26671?show_docid=1819714a93c26671</guid>
  <author>
  dsisn...@gmail.com
  (Dominic Sisneros)
  </author>
  <pubDate>Wed, 13 Mar 2013 19:23:09 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Adding custom methods to a model ?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/25bd925e8592c097/2a4e9f8d70bd8c35?show_docid=2a4e9f8d70bd8c35</link>
  <description>
  Well, I&#39;m pretty confused... Defining my method as an instance method &lt;br&gt; didn&#39;t seem to work when I tried it. I checked it again this morning and... &lt;br&gt; boum, it&#39;s working. Really doesn&#39;t have a clue why it didn&#39;t work at first &lt;br&gt; and works today, I must have missed something last time. &lt;br&gt; &lt;p&gt;Anyway thanks a lot for your answer, and sorry for this dumb question.
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/25bd925e8592c097/2a4e9f8d70bd8c35?show_docid=2a4e9f8d70bd8c35</guid>
  <author>
  pabuis...@gmail.com
  (Pierre-Adrien Buisson)
  </author>
  <pubDate>Mon, 11 Mar 2013 10:20:40 UT
</pubDate>
  </item>
  <item>
  <title>Re: Using postgres&#39;s &quot;SIMILAR TO&quot; in a query</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/4751b05343deea2b/6fc631b7497a78cc?show_docid=6fc631b7497a78cc</link>
  <description>
  While this topic may be very old, i figured i may as well respond to it &lt;br&gt; just in case someone else happens to look for this. &lt;br&gt; &lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;https://gist.github.com/Speljohan/5124955&quot;&gt;[link]&lt;/a&gt; &lt;br&gt; Drop that code in your project, and you&#39;ll be able to use the symbol &lt;br&gt; additions like so: &lt;br&gt; Model.all(:column.similar =&amp;gt; &#39;[0-9]&#39;) &lt;br&gt; Model.all(:column.ilike =&amp;gt; &#39;%hello%&#39;)
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/4751b05343deea2b/6fc631b7497a78cc?show_docid=6fc631b7497a78cc</guid>
  <author>
  johan.f.ljungb...@gmail.com
  (Johan Ljungberg)
  </author>
  <pubDate>Sun, 10 Mar 2013 07:34:48 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Re: Where is DataMapper 2?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/f45541a8380dc50e?show_docid=f45541a8380dc50e</link>
  <description>
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/f45541a8380dc50e?show_docid=f45541a8380dc50e</guid>
  <author>
  piotr.soln...@gmail.com
  (Piotr Solnica)
  </author>
  <pubDate>Fri, 08 Mar 2013 19:30:32 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Adding custom methods to a model ?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/25bd925e8592c097/8e84d7f37a5d046a?show_docid=8e84d7f37a5d046a</link>
  <description>
  what you&#39;re doing there is defining a class method named more_than_fifty? &lt;br&gt; a method declared like that can be called from the class itself, not an &lt;br&gt; instance of it. &lt;br&gt; &lt;p&gt;So, you end up with: &lt;br&gt; Day.more_than_fifty? &lt;br&gt; &lt;p&gt;instead of: &lt;br&gt; day = Day.new &lt;br&gt; day.more_tan_fifty? &lt;br&gt; &lt;p&gt;to add instance methods to a class, just declare them like this:
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/25bd925e8592c097/8e84d7f37a5d046a?show_docid=8e84d7f37a5d046a</guid>
  <author>
  antilla...@gmail.com
  (Antonio Antillon)
  </author>
  <pubDate>Thu, 07 Mar 2013 22:05:52 UT
</pubDate>
  </item>
  <item>
  <title>Re: Datamapper and setex from redis</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/a3d62cf49319c533/cceacb4b5c9c33f0?show_docid=cceacb4b5c9c33f0</link>
  <description>
  Yep, I am using datamapper with redis, so, I would like to set my objects &lt;br&gt; with this redis function your know. Any way to make this happens?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/a3d62cf49319c533/cceacb4b5c9c33f0?show_docid=cceacb4b5c9c33f0</guid>
  <author>
  cifani.thi...@gmail.com
  (Thiago Cifani)
  </author>
  <pubDate>Thu, 07 Mar 2013 20:39:15 UT
</pubDate>
  </item>
  <item>
  <title>Adding custom methods to a model ?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/25bd925e8592c097/16a2bd7f97905ce1?show_docid=16a2bd7f97905ce1</link>
  <description>
  Hey guys, &lt;br&gt; I&#39;m beginning with Sinatra and using DataMapper as my ORM tool of choice. &lt;br&gt; I&#39;ve been doing great, playing with this today, but I&#39;m now stuck. I&#39;d like &lt;br&gt; to add a custom method to one of my models, that would check some values of &lt;br&gt; an instance, make some comparisons and return a boolean. &lt;br&gt; I tried the following :
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/25bd925e8592c097/16a2bd7f97905ce1?show_docid=16a2bd7f97905ce1</guid>
  <author>
  pabuis...@gmail.com
  (Pierre-Adrien Buisson)
  </author>
  <pubDate>Thu, 07 Mar 2013 17:55:32 UT
</pubDate>
  </item>
  <item>
  <title>Re: [DataMapper] Re: Where is DataMapper 2?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/57435bcdafd50c8f?show_docid=57435bcdafd50c8f</link>
  <description>
  As a rookie looking to help out if time materializes, where might you &lt;br&gt; suggest looking?
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/57435bcdafd50c8f?show_docid=57435bcdafd50c8f</guid>
  <author>
  m...@planetmcd.com
  (Michael McDermott)
  </author>
  <pubDate>Mon, 04 Mar 2013 13:03:22 UT
</pubDate>
  </item>
  <item>
  <title>Re: Where is DataMapper 2?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/253b174ce86b425e?show_docid=253b174ce86b425e</link>
  <description>
  I should add that dm-mapper is going through another round of refactoring. &lt;br&gt; We&#39;ve decided to drop the idea of using &amp;quot;engines&amp;quot; and always rely on &lt;br&gt; veritas as our RA abstraction (this means that for Arel support we need a &lt;br&gt; veritas-arel-adapter). It seems like we&#39;re finally going into right &lt;br&gt; direction though so I expect after refactoring is done we&#39;ll be able to
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/253b174ce86b425e?show_docid=253b174ce86b425e</guid>
  <author>
  piotr.soln...@gmail.com
  (solnic)
  </author>
  <pubDate>Mon, 04 Mar 2013 06:22:36 UT
</pubDate>
  </item>
  <item>
  <title>Re: Where is DataMapper 2?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/6bb0a4b9ceb7b904?show_docid=6bb0a4b9ceb7b904</link>
  <description>
  Here is the official status and roadmap page.&amp;lt;&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://solnic.eu/2012/12/20/datamapper-2-status-and-roadmap.html&quot;&gt;[link]&lt;/a&gt;&amp;gt;
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/6bb0a4b9ceb7b904?show_docid=6bb0a4b9ceb7b904</guid>
  <author>
  gutsho...@gmail.com
  (Gus Shotz)
  </author>
  <pubDate>Sun, 03 Mar 2013 00:29:48 UT
</pubDate>
  </item>
  <item>
  <title>Where is DataMapper 2?</title>
  <link>http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/88d9df03c218e129?show_docid=88d9df03c218e129</link>
  <description>
  I noticed various references to DataMapper 2 on the developer&#39;s Github &lt;br&gt; account, but cannot locate it anywhere. &lt;br&gt; Has it actually been released yet? Is there a list of changes anywhere? &lt;br&gt; Thanks
  </description>
  <guid isPermaLink="true">http://groups.google.com/group/datamapper/browse_thread/thread/9e0f9ee2461a09c9/88d9df03c218e129?show_docid=88d9df03c218e129</guid>
  <author>
  i...@groupp5.com
  (Ivan Pavkovic)
  </author>
  <pubDate>Sat, 02 Mar 2013 23:56:42 UT
</pubDate>
  </item>
  </channel>
</rss>
