Last active
August 29, 2015 14:02
-
-
Save pinzolo/ded5d2215ddb7ebffec3 to your computer and use it in GitHub Desktop.
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' | |
# some gems | |
end | |
group :test do | |
gem 'poltergeist' | |
gem 'launchy' | |
gem 'database_cleaner' | |
# some gems | |
end | |
local_gemfile = File.join(File.dirname(__FILE__), 'Gemfile.local') | |
instance_eval File.read(local_gemfile) if File.exists?(local_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
group :development, :test do | |
gem 'pry' | |
gem 'pry-rails' | |
gem 'pry-byebug' | |
# some gems for debug | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment