Created
August 22, 2014 09:10
-
-
Save filiptepper/c4e0e821cd4b8f3ba173 to your computer and use it in GitHub Desktop.
Conditional 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/' | |
if ENV['DEVELOPMENT'] == '1' | |
gem 'rails', '4.0.0' | |
else | |
gem 'rails', '4.1.0' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment