我在使用Rails应用程序安装Spree时遇到问题。
当我运行gem'spree'时 (根据http://spreecommerce.com/documentation/getting_started.html)
上的说明我收到以下错误:
ERROR: While executing gem ... (RuntimeError) Unknown command spree
我安装了以下Spree宝石:
gem list spree *** LOCAL GEMS *** spree (0.30.1) spree_api (0.30.1) spree_auth (0.30.1) spree_core (0.30.1) spree_dash (0.30.1) spree_promo (0.30.1) spree_sample (0.30.1)
当我安装了我使用的Spree gem时:
sudo gem install spree
感谢您的帮助。
答案 0 :(得分:7)
instructions实际上是要将gem 'spree'
添加到Gemfile
(而不是将其作为命令执行):
编辑Rails中的Gemfile 应用程序添加以下内容:
gem 'spree'
答案 1 :(得分:0)
Spree gem安装说明:https://gist.github.com/kany/6334724