Skip to content

Commit

Permalink
Install rails 4.2 dependencies if no RAILS_VERSION env variable is set.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkeck committed Jan 6, 2015
1 parent 17bc6c7 commit e45b83d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ else
gem 'rails', ENV['RAILS_VERSION']

# explicitly include sass-rails to get compatible sprocket dependencies
if ENV['RAILS_VERSION'] and ENV['RAILS_VERSION'] =~ /^4.2/
if ENV['RAILS_VERSION'].nil? || ENV['RAILS_VERSION'] =~ /^4.2/
gem 'coffee-rails', '~> 4.1.0'
gem 'sass-rails', '~> 5.0'
gem 'responders', "~> 2.0"
Expand Down

0 comments on commit e45b83d

Please sign in to comment.