Created
June 25, 2014 01:04
-
-
Save pinzolo/56085241650962685d9c to your computer and use it in GitHub Desktop.
失敗した後のGemfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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