I want to run some thor task on rails 3 in production, but I do not know how to set it up. The following code did not work
class CheckData < Thor
require File.expand_path('config/environment.rb')
end
I want to run some thor task on rails 3 in production, but I do not know how to set it up. The following code did not work
class CheckData < Thor
require File.expand_path('config/environment.rb')
end
Setting the RAILS_ENV environment variable to 'production' right above the
require
statement should work. I used conditional assignment here to default the environment to 'production' if the environment variable is not set ahead of time.If you are running it as a Thor task from the command-line you can then set the environment variable before running and thus override the default assignment:
See Configuring Rails Applications Rails Environment Settings from RailsGuides for more environment variables.