Skip to content

Commit

Permalink
Make bundling for deployment happy
Browse files Browse the repository at this point in the history
When deploying to heroku or running on travis, I was seeing:

You are trying to install in deployment mode after changing
       your Gemfile. Run `bundle install` elsewhere and add the
       updated Gemfile.lock to version control.
       You have added to the Gemfile:
       * therubyracer (~> 0.11.3)

I assume because of the conditional we had for platform. Sooo let's take
that out.
  • Loading branch information
carols10cents committed Sep 29, 2014
1 parent 1034d2c commit 05ffad9
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ group :assets do
gem 'coffee-rails', "~> 3.2.2"
gem 'uglifier', "~> 1.0.0"
gem 'jquery-ui-rails', "~> 2.0.0"

# Many Linux environments do not have a javascript environment which is
# required by the asset generators. However, windows and os x have one
# provided by the system.
gem "therubyracer", "~> 0.11.3" unless RUBY_PLATFORM.match(/darwin|mswin/)
gem "therubyracer", "~> 0.11.3"
end

gem "haml", "~> 3.1.4"
Expand Down

0 comments on commit 05ffad9

Please sign in to comment.