Updated the system to Rails 1.2.
[selectricity-live] / 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 (executable)
index 00f6b63..0000000
+++ /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

Benjamin Mako Hill || Want to submit a patch?