我正在尝试创建一个自定义的rake任务,但似乎我无权访问我的模型。我认为这是Rails任务中隐含的内容。
我在lib / tasks / test.rake中有以下代码:
namespace :test do
task :new_task do
puts Parent.all.inspect
end
end
这是我的父模型的样子:
class Parent < ActiveRecord::Base
has_many :children
end
这是一个非常简单的示例,但是出现以下错误:
/> rake test:new_task
(in /Users/arash/Documents/dev/soft_deletes)
rake aborted!
uninitialized constant Parent
(See full trace by running task with --trace)
有任何想法吗?谢谢
new_task
给当前环境?的当前值是多少:environment
多少?谷歌没有帮助。