So, Solidus is the Spree plug, and Spree is no longer supported. Follow the instructions on the Solidus Github page ( https://github.com/solidusio/solidus ) to install it. And I am stuck in this command bundle exec rails g spree:install, this command causes the following error:
/Users/user1/.rbenv/versions/2.2.3/lib/ruby/gems/2.2.0/gems/handlebars_assets-0.19.1/lib/handlebars_assets.rb:20:in 'block in register_extensions': undefined method 'register_engine' for nil:NilClass (NoMethodError)
Not sure if this can help, but before trying to install Solidus, I worked on the Spree project.
Also, here is my gemfile:
source 'https://rubygems.org'
gem 'solidus'
gem 'solidus_auth_devise'
gem 'rails', '4.2.4'
gem 'sqlite3'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.1.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 2.0'
gem 'sdoc', '~> 0.4.0', group: :doc
group :development, :test do
gem 'byebug'
end
group :development do
gem 'web-console', '~> 2.0'
gem 'spring'
end
Any help really appreciated.
source
share