提交 336cb3c0 编写于 作者: M Mikel Lindsaar 提交者: José Valim

Adding Rails.env= to railties to allow changing of rails env on the fly for rake tasks etc

Signed-off-by: NJosé Valim <jose.valim@gmail.com>
上级 6891f46d
......@@ -79,6 +79,10 @@ def env
@_env ||= ActiveSupport::StringInquirer.new(ENV["RAILS_ENV"] || ENV["RACK_ENV"] || "development")
end
def env=(environment)
@_env = ActiveSupport::StringInquirer.new(environment)
end
def cache
RAILS_CACHE
end
......
......@@ -125,5 +125,16 @@ class MyTie < Rails::Railtie
require "#{app_path}/config/environment"
assert $ran_block
end
test "we can change our environment if we want to" do
begin
original_env = Rails.env
Rails.env = 'foo'
assert_equal('foo', Rails.env)
ensure
Rails.env = original_env
assert_equal(original_env, Rails.env)
end
end
end
end
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册