1

我需要在 Redmine Ruby 应用程序中执行一些 Ruby 代码,以便一次在所有项目中启用一个模块。

令人惊讶的是,ruby 确实访问了项目,但在访问每个“项目”对象中的一些特定方法时会引发 NoMethodError。

这是代码:

Project.find(:all).each do |project|

  print "Enabling modules for project '#{project.identifier}' ... "

  puts project.methods.sort            # this does print "enabled_module_names"
  puts project.enabled_module_names

end

这失败了:

hostname:/srv/apps/redmine# script/runner  vendor/plugins/customplugin/lib/enable_modules.rb
/var/lib/gems/1.8/gems/activerecord-2.3.5/lib/active_record/attribute_methods.rb:260:in `method_missing': undefined method `enabled_module_names' for #<Project:0x7f28985c1cb0> (NoMethodError)
    from vendor/plugins/customplugin/lib/enable_modules.rb:14
    from vendor/plugins/customplugin/lib/enable_modules.rb:7:in `each'
    from vendor/plugins/customplugin/lib/enable_modules.rb:7
    from /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `eval'
    from /var/lib/gems/1.8/gems/rails-2.3.5/lib/commands/runner.rb:46
    from /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
    from /usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in `require'
    from script/runner:3

我已经摸不着头脑了,但我不明白为什么代码会找到“Project”符号而不是其中的方法,尤其是“project.methods”确实列出了“enabled_module_names”。

欢迎任何帮助。

4

1 回答 1

2

你确定 enable_module_names 是一个实例方法吗?

是在里面Project.instance_methods吗?

编辑(以下评论摘要):

在早期版本中,您必须使用以下内容:

enabled_module_names = project.enabled_modules.collect(&:name)

getter 仅存在于更高版本中(有关此更改的详细信息,请参见rev.4460 )

于 2012-11-20T11:50:22.970 回答