4

我正在尝试按照Fernando Villalobos 的这个 Airpair 教程,通过react-railsgem 来玩 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 installbundle update(以防万一)。

但是,每当我尝试rails g react:install 按照此处的建议运行时,我都会收到以下错误:

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.

知道这里有什么问题吗?

4

2 回答 2

2

尝试运行spring stop。您可能已附加到旧流程。

于 2016-01-19T06:41:03.900 回答
1

我有同样的问题。我刚刚在一个新的 rails 项目中再次尝试了它——没有先运行 bundle install ——它成功了。

于 2015-11-16T18:20:41.307 回答