class SafeYAML::Transform::TransformationMap::CaseAgnosticMap
Public Class Methods
Source
# File lib/safe_yaml/transform/transformation_map.rb, line 9 def initialize(*args) super end
Calls superclass method
Public Instance Methods
Source
# File lib/safe_yaml/transform/transformation_map.rb, line 17 def [](key) super(key.downcase) end
Calls superclass method
Source
# File lib/safe_yaml/transform/transformation_map.rb, line 23 def freeze self end
OK, I actually don’t think it’s all that important that this map be frozen.
Source
# File lib/safe_yaml/transform/transformation_map.rb, line 13 def include?(key) super(key.downcase) end
Calls superclass method