diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-03-29 14:54:03 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-03-29 14:54:03 -0700 |
commit | 1555023973d2f60050f16b055335abc4e038e20f (patch) | |
tree | dc162d6951dfed9384642ec2146a3801742a6ad5 /railties/lib/rails | |
parent | e51322a34b740a4ad3b651345e2420912fe2a15f (diff) | |
parent | cec170b9634b4028681eb227a36664e930aed4ca (diff) | |
download | rails-1555023973d2f60050f16b055335abc4e038e20f.tar.gz rails-1555023973d2f60050f16b055335abc4e038e20f.tar.bz2 rails-1555023973d2f60050f16b055335abc4e038e20f.zip |
Merge pull request #5617 from Empact/paths
Spring cleaning in Rails::Paths
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/paths.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/railties/lib/rails/paths.rb b/railties/lib/rails/paths.rb index 9730ed16e9..e9bd0f181e 100644 --- a/railties/lib/rails/paths.rb +++ b/railties/lib/rails/paths.rb @@ -1,5 +1,3 @@ -require 'set' - module Rails module Paths # This object is an extended hash that behaves as root of the <tt>Rails::Paths</tt> system. @@ -47,15 +45,13 @@ module Rails attr_accessor :path def initialize(path) - raise "Argument should be a String of the physical root path" if path.is_a?(Array) @current = nil @path = path @root = {} end def []=(path, value) - value = Path.new(self, path, [value].flatten) unless value.is_a?(Path) - @root[path] = value + add(path, :with => value) end def add(path, options={}) |