Commit 0bed90dc701d6139b8482946d433758b6b27ed9b
Exists in
master
and in
1 other branch
Merge pull request #818 from stevecrozz/gemfile_ruby_version
GEMFILE_RUBY_VERSION instead of RUBY_VERSION
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
Gemfile
... | ... | @@ -2,7 +2,7 @@ source 'https://rubygems.org' |
2 | 2 | |
3 | 3 | RAILS_VERSION = '~> 4.1.8' |
4 | 4 | |
5 | -ruby ENV['RUBY_VERSION'] if ENV['RUBY_VERSION'] | |
5 | +ruby ENV['GEMFILE_RUBY_VERSION'] if ENV['GEMFILE_RUBY_VERSION'] | |
6 | 6 | |
7 | 7 | gem 'actionmailer', RAILS_VERSION |
8 | 8 | gem 'actionpack', RAILS_VERSION | ... | ... |