Skip to content

Commit

Permalink
Move pg gem to production and sqlite3 to development
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodney Degracia authored and Rodney Degracia committed Dec 4, 2011
1 parent c4b705a commit 0ca70d3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Gemfile
Expand Up @@ -6,8 +6,8 @@ gem "therubyracer", :require => 'v8'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'pg'
gem 'sqlite3'



gem 'json'

Expand Down Expand Up @@ -35,7 +35,12 @@ gem 'jquery-rails'

gem 'devise'

group :production do
gem 'pg'
end

group :test, :development do
gem 'sqlite3'
gem 'webrat' # necessary since capybara is not yet supported in view specs
gem 'capybara'
gem "rspec-rails", "~> 2.6"
Expand Down

0 comments on commit 0ca70d3

Please sign in to comment.