Skip to content

Instantly share code, notes, and snippets.

@akonan
Created July 21, 2012 15:47
Show Gist options
  • Save akonan/3156205 to your computer and use it in GitHub Desktop.
Save akonan/3156205 to your computer and use it in GitHub Desktop.
Using sqlite for dev and testing and pg in production
group :test, :development do
gem "sqlite3"
end
group :production do
gem "pg"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment