class EventStore::HTTP::JSON::Deserialize::ObjectClass

Public Instance Methods

[]=(raw_key, value) click to toggle source
Calls superclass method
# File lib/event_store/http/json/deserialize.rb, line 10
def []=(raw_key, value)
  key = key_cache[raw_key]

  super key, value
end
key_cache() click to toggle source
# File lib/event_store/http/json/deserialize.rb, line 16
def key_cache
  @@key_cache ||= Hash.new do |cache, raw_key|
    cache[raw_key] = Casing::Underscore.(raw_key).to_sym
  end
end