Class: Hashie::Mash
- Inherits:
-
Object
- Object
- Hashie::Mash
- Defined in:
- lib/patchboard.rb
Instance Method Summary collapse
-
#values_at(*args) ⇒ Object
monkey patch to make #values_at work with symbols.
Instance Method Details
#values_at(*args) ⇒ Object
monkey patch to make #values_at work with symbols
25 26 27 |
# File 'lib/patchboard.rb', line 25 def values_at(*args) super *args.map {|arg| convert_key(arg)} end |