I'm using the appengine-apis and dm-appengine gems to talk to DataMapper on App Engine via JRuby on Rails.
When I try to save an instance of my Car model, I get an error saying that "org.jruby.RubyClass is not a supported property type". The full trace is here: http://pastie.org/502404 The Car model is basic: class Car include DataMapper::Resource property :id, Serial property :make, String property :model, String end And the Controller does very little beyond generic scaffold logic and trying to save an initial Car to the datastore: http://pastie.org/502400 This is my Environment.rb file: http://pastie.org/502405 Any feedback would be appreciated. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
