I am using the DataMapper gem with Sinatra and followed the tutorial here: http://net.tutsplus.com/tutorials/ruby/ruby-for-newbies-working-with-datamapper/
I am connecting to the database and migrating as such:
DataMapper.setup :default, "sqlite://#{Dir.pwd}/ex2.db"
DataMapper.auto_migrate!
My data model:
class User
include DataMapper::Resource
property :id , Serial
property :username , String
property :email , String
end
I am executing using this command:
rackup config.ru
However, when I get to this line:
User.create username: "JoeSchmo", email: "joe@schmo.com"
I receive the error:
Rack::Lint::LintError: Status must be >=100 seen as integer
Any idea why this is happening?
requirestatements from your app? And are your gems up-to-date? Please include versions if possible. – Kashyap Jul 24 '12 at 6:31begin; User.create(username: "foo", email: "abc@def.com"); rescue => e; return e.inspect; endand see what it outputs. – cuvius Dec 6 '12 at 18:17