shiroe
shiroe

Reputation: 617

error while deploying with git to heroku

I'm trying to deploy myapp but I've encountered the following error:

error

Any idea? Where am I wrong?

Here my Gemfile:

source 'https://rubygems.org'

gem 'rails', '3.2.0'

gem 'pg'

group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'

  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'

require 'execjs'

Upvotes: 0

Views: 36

Answers (1)

Josh
Josh

Reputation: 5721

You should change the line

require 'execjs'

to

gem 'execjs'

Upvotes: 3

Related Questions