提交 8665c754 编写于 作者: Y Yehuda Katz

Add a generator_paths config option

上级 7e6530b1
......@@ -22,15 +22,17 @@ def self.default_middleware_stack
end
end
attr_reader :middleware
attr_reader :middleware, :generator_paths
def initialize(base = nil)
if base
@options = base.options.dup
@middleware = base.middleware.dup
@options = base.options.dup
@middleware = base.middleware.dup
@generator_paths = base.generator_paths.dup
else
@options = Hash.new { |h,k| h[k] = ActiveSupport::OrderedOptions.new }
@middleware = self.class.default_middleware_stack
@options = Hash.new { |h,k| h[k] = ActiveSupport::OrderedOptions.new }
@middleware = self.class.default_middleware_stack
@generator_paths = []
end
end
......
......@@ -24,6 +24,12 @@ class Foo < Rails::Railtie ; config.foo.greetings = "hello" ; end
assert_equal "hello", AppTemplate::Application.config.foo.greetings
end
test "plugins can provide generators" do
class Foo < Rails::Railtie ; config.generator_paths << "/foo" ; end
require "#{app_path}/config/application"
assert_eqaul ["/foo"], AppTemplate::Application.config.generator_paths
end
test "plugin config merges are deep" do
class Foo < Rails::Railtie ; config.foo.greetings = 'hello' ; end
class MyApp < Rails::Application
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册