aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/engine.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/engine.rb')
-rw-r--r--railties/lib/rails/engine.rb9
1 files changed, 3 insertions, 6 deletions
diff --git a/railties/lib/rails/engine.rb b/railties/lib/rails/engine.rb
index aaa669ef32..cf6ca7c3f5 100644
--- a/railties/lib/rails/engine.rb
+++ b/railties/lib/rails/engine.rb
@@ -4,6 +4,7 @@ module Rails
class Engine < Railtie
class << self
attr_accessor :called_from
+ delegate :middleware, :root, :paths, :to => :config
def original_root
@original_root ||= find_root_with_file_flag("lib")
@@ -18,7 +19,6 @@ module Rails
call_stack = caller.map { |p| p.split(':').first }
File.dirname(call_stack.detect { |p| p !~ %r[railties/lib/rails|rack/lib/rack] })
end
-
super
end
@@ -33,17 +33,14 @@ module Rails
end
root = File.exist?("#{root_path}/#{flag}") ? root_path : default
-
raise "Could not find root path for #{self}" unless root
RUBY_PLATFORM =~ /(:?mswin|mingw)/ ?
- Pathname.new(root).expand_path :
- Pathname.new(root).realpath
+ Pathname.new(root).expand_path : Pathname.new(root).realpath
end
end
- delegate :config, :to => :'self.class'
- delegate :middleware, :root, :to => :config
+ delegate :middleware, :paths, :root, :config, :to => :'self.class'
# Add configured load paths to ruby load paths and remove duplicates.
initializer :set_load_path do