Rails:是否可以在rails 4.2.6中使用active_scoffold gem

时间:2016-08-25 10:25:30

标签: ruby-on-rails-4

我运行时安装了那个宝石

rails g active_scaffold:install

它说

  

在过程6001中通过Spring预加载器运行

     

无法找到生成器'scoffold'。也许你的意思是'脚手架','css:scaffold'或'erb:scaffold'

     

运行rails generate --help以获取更多选项。

的Gemfile

gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
gem 'active_scaffold', github: 'activescaffold/active_scaffold', branch: 'master'

1 个答案:

答案 0 :(得分:1)

我找到了解决方案

我更改了安装gem的步骤,步骤是

1.将宝石插入宝石文件,宝石'active_scaffold'并运行捆绑安装

2.运行命令“rails g active_scaffold用户名:string”

3.在gemfile中将 gem'active_scaffold'更改为“gem'active_scaffold',github:'activescaffold / active_scaffold',branch:'master'”并再次安装该包。

4.通过“捆绑exec rake db:create”创建数据库。

5.Run “rails g active_scaffold:install”

6.最后将其迁移“rake db:migrate”