aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-12-12 14:39:22 +0100
committerJosé Valim <jose.valim@gmail.com>2011-12-12 14:57:09 +0100
commit5c234ab8ed4659a74a6c47ce8337055a62f75eff (patch)
tree9c2fe11cf2729deeef03c2eebe8563f56e8e6def /railties
parent9147613ce09710e70790ac45d3b20c3ef6c1fa46 (diff)
downloadrails-5c234ab8ed4659a74a6c47ce8337055a62f75eff.tar.gz
rails-5c234ab8ed4659a74a6c47ce8337055a62f75eff.tar.bz2
rails-5c234ab8ed4659a74a6c47ce8337055a62f75eff.zip
Composition > inheritance.
Diffstat (limited to 'railties')
-rw-r--r--railties/lib/rails/application/routes_reloader.rb14
1 files changed, 11 insertions, 3 deletions
diff --git a/railties/lib/rails/application/routes_reloader.rb b/railties/lib/rails/application/routes_reloader.rb
index 1d1f5e1b06..c1f435a3ee 100644
--- a/railties/lib/rails/application/routes_reloader.rb
+++ b/railties/lib/rails/application/routes_reloader.rb
@@ -1,13 +1,21 @@
module Rails
class Application
- class RoutesReloader < ::ActiveSupport::FileUpdateChecker
+ class RoutesReloader
attr_reader :route_sets
- def initialize
- super([]) { reload! }
+ def initialize(updater=ActiveSupport::FileUpdateChecker)
+ @updater = updater.new([]) { reload! }
@route_sets = []
end
+ def paths
+ @updater.paths
+ end
+
+ def execute_if_updated
+ @updater.execute_if_updated
+ end
+
def reload!
clear!
load_paths