Skip to content

Instantly share code, notes, and snippets.

@naoty
Last active December 30, 2015 22:09
Show Gist options
  • Select an option

  • Save naoty/7892453 to your computer and use it in GitHub Desktop.

Select an option

Save naoty/7892453 to your computer and use it in GitHub Desktop.
source "https://rubygems.org"
ruby "2.0.0"
#ruby-gemset=railstutorial_rails_4_0
gem "rails", "4.0.2"
group :development, :test do
gem "sqlite3", "1.3.8"
gem "rspec-rails", "2.13.1"
end
group :test do
gem "selenium-webdriver", "2.35.1"
gem "capybara", "2.1.0"
end
gem "sass-rails", "4.0.1"
gem "uglifier", "2.1.1"
gem "coffee-rails", "4.0.1"
gem "jquery-rails", "3.0.4"
gem "turbolinks", "1.1.1"
gem "jbuilder", "1.0.2"
group :doc do
gem "sdoc", "0.3.20", require: false
end
group :production do
gem "pg", "0.15.1"
gem "rails_12factor", "0.0.2"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment