标签: ruby-on-rails ruby ruby-on-rails-3
我的应用程序在/ lib / tasks文件夹下以这种方式编写了一个rake任务
task :import_feed => :environment do url = "url" decode json here post=Post.new post.attributes post.save end
每次运行此任务时,我都会收到错误,并且未配置登台数据库。如果我做RAILS_ENV =生产或RAILS_ENV =开发无关紧要。可能是什么原因?