Skip to content

Instantly share code, notes, and snippets.

@timurvafin
Created April 3, 2015 10:15
Show Gist options
  • Save timurvafin/2cbfce250dc1d267a2cc to your computer and use it in GitHub Desktop.
Save timurvafin/2cbfce250dc1d267a2cc to your computer and use it in GitHub Desktop.
Ruby base with Standalone Migrations
development:
adapter: sqlite3
database: db/development.sqlite3
pool: 5
timeout: 5000
source "https://rubygems.org"
ruby "2.2.1"
gem "sqlite3"
gem "activerecord"
gem "standalone_migrations"
group :development do
gem "rubocop"
gem "rspec"
end
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