Class: Hash
- Includes:
- RubyApp::Mixins::HashMixin
- Defined in:
- lib/ruby_app/mixins/hash_mixin.rb
Instance Method Summary collapse
Methods included from RubyApp::Mixins::HashMixin
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class RubyApp::Mixins::HashMixin
Instance Method Details
#prepend!(key, value) ⇒ Object
25 26 27 |
# File 'lib/ruby_app/mixins/hash_mixin.rb', line 25 def prepend!(key, value) self[key] = "#{value} #{self[key]}" end |