I'm using Anvil to manage my local sites. I have several and they all work fine apart from one, my most recent site.
The error i get when i attempt to start it is:
Error starting application
Your Rack app raised an exception when Pow tried to run it.
Bundler::GemNotFound: Could not find execjs-2.2.2 in any of the sources
Here is my Gemfile:
source 'https://rubygems.org'
gem 'rails', '4.1.4'
gem 'sqlite3', group: :development
gem 'sass-rails', '~> 4.0.3'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
# gem 'therubyracer', platforms: :ruby
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'spring', group: :development
gem "twitter-bootstrap-rails"
gem "simple_form"
gem "httparty"
gem 'rails_12factor', group: :production
gem 'pg', group: :production
I've had a look through questions on SO and google but haven't been able to figure it out.
I'm using RVM version 1.25.28
Thanks