Skip to content

Commit

Permalink
Add uglifier to Gemfile
Browse files Browse the repository at this point in the history
Problem:

The demo app could not deploy on Heroku
because of a missing dependency on uglifier.

Solution:

Add uglifier to the `production` group in the Gemfile.
  • Loading branch information
c-lliope committed Nov 12, 2015
1 parent 7ce7e12 commit fc3f4c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ end
group :staging, :production do
gem "rack-timeout"
gem "rails_stdout_logging"
gem "uglifier"
end
4 changes: 4 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,9 @@ GEM
tins (1.6.0)
tzinfo (1.2.2)
thread_safe (~> 0.1)
uglifier (2.7.2)
execjs (>= 0.3.0)
json (>= 1.8.0)
unicorn (4.9.0)
kgio (~> 2.6)
rack
Expand Down Expand Up @@ -306,6 +309,7 @@ DEPENDENCIES
rspec-rails (~> 3.1.0)
shoulda-matchers (~> 2.8.0)
timecop
uglifier
unicorn
web-console (>= 2.1.3)
webmock
Expand Down

0 comments on commit fc3f4c3

Please sign in to comment.