Skip to content

Instantly share code, notes, and snippets.

@achiurizo
Created November 9, 2009 21:12
Show Gist options
  • Save achiurizo/230282 to your computer and use it in GitHub Desktop.
Save achiurizo/230282 to your computer and use it in GitHub Desktop.
module DataMapperInitializer
def self.registered(app)
app.configure :production do
DataMapper.setup(:default, 'your_db_here')
end
app.configure :development do
DataMapper.setup(:default, 'your_db_dev_here')
end
app.configure :test do
DataMapper.setup(:default,'your_db_test_here')
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment