aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/plugins/rake_tasks/tasks/environment.rake
blob: 223bba3e5ce9d9867fe6a724e75ef5c9b66b0a1a (plain)
1
2
3
4
5
6
7
8
9
#
# Thanks to Chris for this handy task (http://errtheblog.com/post/33)
#
%w[development test production].each do |env|
  desc "Runs the following task in the #{env} environment" 
  task env do
    RAILS_ENV = ENV['RAILS_ENV'] = env
  end
end