Created
April 3, 2015 10:15
-
-
Save timurvafin/2cbfce250dc1d267a2cc to your computer and use it in GitHub Desktop.
Ruby base with Standalone Migrations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
development: | |
adapter: sqlite3 | |
database: db/development.sqlite3 | |
pool: 5 | |
timeout: 5000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "https://rubygems.org" | |
ruby "2.2.1" | |
gem "sqlite3" | |
gem "activerecord" | |
gem "standalone_migrations" | |
group :development do | |
gem "rubocop" | |
gem "rspec" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "bundler/setup" | |
require "tasks/standalone_migrations" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment