提交 c4e3344a 编写于 作者: J José Valim

Revert "Add a generator_paths config option"

This reverts commit 8665c754.
上级 a5c45e69
......@@ -22,17 +22,15 @@ def self.default_middleware_stack
end
end
attr_reader :middleware, :generator_paths
attr_reader :middleware
def initialize(base = nil)
if base
@options = base.options.dup
@middleware = base.middleware.dup
@generator_paths = base.generator_paths.dup
@options = base.options.dup
@middleware = base.middleware.dup
else
@options = Hash.new { |h,k| h[k] = ActiveSupport::OrderedOptions.new }
@middleware = self.class.default_middleware_stack
@generator_paths = []
@options = Hash.new { |h,k| h[k] = ActiveSupport::OrderedOptions.new }
@middleware = self.class.default_middleware_stack
end
end
......
......@@ -24,12 +24,6 @@ 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.
先完成此消息的编辑!
想要评论请 注册