Commit 6d2b414ca28367a2cb23a09751ee2052a0546c87
1 parent
fc25ef3a
Exists in
master
and in
1 other branch
Allow to specify Ruby version in Gemfile
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
Gemfile
| @@ -2,6 +2,8 @@ source 'https://rubygems.org' | @@ -2,6 +2,8 @@ source 'https://rubygems.org' | ||
| 2 | 2 | ||
| 3 | RAILS_VERSION = '~> 4.1.8' | 3 | RAILS_VERSION = '~> 4.1.8' |
| 4 | 4 | ||
| 5 | +ruby ENV['RUBY_VERSION'] if ENV['RUBY_VERSION'] | ||
| 6 | + | ||
| 5 | gem 'actionmailer', RAILS_VERSION | 7 | gem 'actionmailer', RAILS_VERSION |
| 6 | gem 'actionpack', RAILS_VERSION | 8 | gem 'actionpack', RAILS_VERSION |
| 7 | gem 'railties', RAILS_VERSION | 9 | gem 'railties', RAILS_VERSION |