我正在尝试创建自定义 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)
有任何想法吗?谢谢