stash.rb

Path: lib/more/facets/stash.rb
Last Update: Sat Aug 14 05:16:25 -0600 2010

Required files

facets/hash/rekey  

Methods

merge!   replace   update   values_at  

Public Instance methods

[Source]

# File lib/more/facets/stash.rb, line 53
  def merge!(other)
    super(other.rekey(&:to_s))
  end

[Source]

# File lib/more/facets/stash.rb, line 57
  def replace
    super(other.rekey(&:to_s))
  end

[Source]

# File lib/more/facets/stash.rb, line 49
  def update(other)
    super(other.rekey(&:to_s))
  end

[Source]

# File lib/more/facets/stash.rb, line 61
  def values_at(*keys)
    super(keys.map{|k|k.to_s})
  end

[Validate]