我正在使用 Rails 3.2.13、Ruby 1.9.3 和 bigbluebutton。
Gemfile.rb 包含这些 gem
gem 'bigbluebutton-api-ruby', :git => 'git://github.com/mconf/bigbluebutton-api-ruby.git'
gem 'bigbluebutton_rails', :git => 'git://github.com/mconf/bigbluebutton_rails.git'
我在 3 个月前测试了应用程序,在 bundle install 时,安装了 bigbluebutton-api-ruby 版本 1.2.0 并安装了 bigbluebutton_rails 版本 1.3.0。
现在使用相同的 gem,我将 gem 版本更新到 1.3.0
我使用 rails 应用程序在 bigbluebutton 中所需的任何内容成功地创建了所有内容。
在我的 seed.rb 中,我放置了以下代码以将一些记录插入到 bigbluebutton 服务器表中。
BigbluebuttonServer.create(
:name => "Online Education",
:url => "http://siteurl/bigbluebutton/api",
:salt => "salt",
:version => "0.8",
:param => "123123123"
)
我遇到以下错误:
Faraday::Builder is now Faraday::RackBuilder.
Connecting to database specified by database.yml
(5.8ms) SELECT `schema_migrations`.`version` FROM `schema_migrations`
rake aborted!
uninitialized constant ActiveModel::ForbiddenAttributesProtection
/home/prz/.rvm/gems/ruby-1.9.3-p448/bundler/gems/bigbluebutton_rails- 3bcff964062f/app/models/bigbluebutton_server.rb:4:in `<class:BigbluebuttonServer>'
/home/prz/.rvm/gems/ruby-1.9.3-p448/bundler/gems/bigbluebutton_rails-3bcff964062f/app/models/bigbluebutton_server.rb:3:in `<top (required)>'
/home/prz/project/tsxproject/techzoo3.tsxp.0/db/seeds.rb:11:in `<top (required)>'
/home/prz/.rvm/gems/ruby-1.9.3-p448/gems/railties-3.2.13/lib/rails/engine.rb:520:in `load_seed'
这是因为 bigbluebutton 更新了 gem 版本。他们在模型中使用了强参数。现在我该如何解决这个问题。以前我从未遇到过 Rails 3.2.13 的严重参数问题。
等待你的答复。提前致谢。