class SafeYAML::Transform::TransformationMap::CaseAgnosticMap

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/safe_yaml/transform/transformation_map.rb, line 9
def initialize(*args)
  super
end

Public Instance Methods

[](key) click to toggle source
Calls superclass method
# File lib/safe_yaml/transform/transformation_map.rb, line 17
def [](key)
  super(key.downcase)
end
freeze() click to toggle source

OK, I actually don’t think it’s all that important that this map be frozen.

# File lib/safe_yaml/transform/transformation_map.rb, line 23
def freeze
  self
end
include?(key) click to toggle source
Calls superclass method
# File lib/safe_yaml/transform/transformation_map.rb, line 13
def include?(key)
  super(key.downcase)
end