我试图跟随Fernando Villalobos的this Airpair tutorial,通过react-rails
宝石玩Rails和React。
我创建了一个全新的Rails 4应用程序,现在我正在尝试安装react-rails
。
这是我的Gemfile:
source 'https://rubygems.org'
gem 'rails', '4.2.2'
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
gem 'bootstrap-sass'
gem 'react-rails', '~> 1.4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
group :development, :test do
gem 'byebug'
gem 'web-console', '~> 2.0'
gem 'spring'
end
我已经同时运行bundle install
和bundle update
(以防万一)。
但是,每当我尝试运行rails g react:install
as recommended here时,我都会收到以下错误:
Could not find generator 'react:install'. Maybe you meant 'test_unit:job' or 'test_unit:model' or 'generator'
Run `rails generate --help` for more options.
知道这里有什么问题吗?
答案 0 :(得分:2)
尝试运行spring stop
。您可能已附加到旧流程。
答案 1 :(得分:1)
我遇到了同样的问题。我刚刚在一个新的rails项目中尝试了它 - 没有先运行bundle install - 它工作正常。