Skip to content

Instantly share code, notes, and snippets.

@pinzolo
Created June 25, 2014 01:04
Show Gist options
  • Save pinzolo/56085241650962685d9c to your computer and use it in GitHub Desktop.
Save pinzolo/56085241650962685d9c to your computer and use it in GitHub Desktop.
失敗した後のGemfile
source 'https://rubygems.org'
gem 'rails'
# some gems
group :development, :test do
gem 'rspec'
gem 'rspec-rails'
gem 'pry'
gem 'pry-rails'
if RUBY_VERSION >= '2.0.0'
gem 'pry-byebug'
else
gem 'pry-debugger'
end
# some gems
end
group :test do
gem 'poltergeist'
gem 'launchy'
gem 'database_cleaner'
# some gems
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment