我把我的批處理文件放在lib文件夾 中,並使用rails db configuration,active-record像這樣。如何設置腳本或批處理文件的rails_env
require "#{File.dirname(__FILE__)}/../config/environment.rb"
class Batch
def hello
Message.new do |t|
t.title = "hello"
t.save
end
end
end
batch = Batch.new
batch.hello
時EXCUTE一批
ruby lib/batch.rb
在開發環境中這是確定
,但生產環境還是節省開發數據庫...
如何設置RAILS_ENV batch.rb這樣
ruby lib/batch.rb RAILS_ENV=production
感謝非常有用的〜 – seapy 2010-02-08 17:49:37