instance method
[]=
Ruby on Rails 3.2.22.5
Since v3.1.12Signature
[]=(path, value)
No documentation comment.
Parameters
-
pathreq -
valuereq
Source
# File railties/lib/rails/paths.rb, line 57
def []=(path, value)
value = Path.new(self, path, value) unless value.is_a?(Path)
super(path, value)
end
Defined in railties/lib/rails/paths.rb line 57
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in Rails::Paths::Root