X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/25bfcc0f6b5344acb4039457f8492df7fbada7fc..5f51982916827b84d73bfa8f3a98a9ee1d48d3ce:/vendor/plugins/engines/lib/engines/routing_extensions.rb diff --git a/vendor/plugins/engines/lib/engines/routing_extensions.rb b/vendor/plugins/engines/lib/engines/routing_extensions.rb deleted file mode 100755 index 00f6b63..0000000 --- a/vendor/plugins/engines/lib/engines/routing_extensions.rb +++ /dev/null @@ -1,28 +0,0 @@ -module ActionController - module Routing - - class << self - # This holds the global list of valid controller paths - attr_accessor :controller_paths - end - - class ControllerComponent - class << self - protected - def safe_load_paths #:nodoc: - if defined?(RAILS_ROOT) - paths = $LOAD_PATH.select do |base| - base = File.expand_path(base) - # Check that the path matches one of the allowed paths in controller_paths - base.match(/^#{ActionController::Routing.controller_paths.map { |p| File.expand_path(p) } * '|'}/) - end - Engines.log.debug "Engines safe_load_paths: #{paths.inspect}" - paths - else - $LOAD_PATH - end - end - end - end - end -end \ No newline at end of file