Class: Hashie::Clash
- Defined in:
- lib/pancake/vendor/hashie/lib/hashie/clash.rb
Overview
A Clash is a “Chainable Lazy Hash”. Inspired by libraries such as Arel, a Clash allows you to chain together method arguments to build a hash, something that’s especially useful if you’re doing something like constructing a complex options hash. Here’s a basic example:
c = Hashie::Clash.new.conditions(:foo => 'bar').order(:created_at)
c # => {:conditions => {:foo => 'bar'}, :order => :created_at}
Clash provides another way to create sub-hashes by using bang notation. You can dive into a sub-hash by providing a key with a bang and dive back out again with the _end! method. Example:
c = Hashie::Clash.new.conditions!.foo('bar').baz(123)._end!.order(:created_at)
c # => {:conditions => {:foo => 'bar', :baz => 123}, :order => :created_at}
Because the primary functionality of Clash is to build options objects, all keys are converted to symbols since many libraries expect symbols explicitly for keys.
Defined Under Namespace
Classes: ChainError
Instance Attribute Summary collapse
-
#_parent ⇒ Object
readonly
The parent Clash if this Clash was created via chaining.
Instance Method Summary collapse
-
#_end! ⇒ Object
Jump back up a level if you are using bang method chaining.
-
#id(*args) ⇒ Object
:nodoc:.
-
#initialize(other_hash = {}, parent = nil) ⇒ Clash
constructor
Initialize a new clash by passing in a Hash to convert and, optionally, the parent to which this Clash is chained.
-
#merge_store(key, *args) ⇒ Object
:nodoc:.
-
#method_missing(name, *args) ⇒ Object
:nodoc:.
Constructor Details
#initialize(other_hash = {}, parent = nil) ⇒ Clash
Initialize a new clash by passing in a Hash to convert and, optionally, the parent to which this Clash is chained.
32 33 34 35 36 37 |
# File 'lib/pancake/vendor/hashie/lib/hashie/clash.rb', line 32 def initialize(other_hash = {}, parent = nil) @_parent = parent other_hash.each_pair do |k, v| self[k.to_sym] = v end end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args) ⇒ Object
:nodoc:
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 |
# File 'lib/pancake/vendor/hashie/lib/hashie/clash.rb', line 66 def method_missing(name, *args) #:nodoc: name = name.to_s if name.match(/!$/) && args.empty? key = name[0...-1].to_sym if self[key].nil? self[key] = Clash.new({}, self) elsif self[key].is_a?(::Hash) && !self[key].is_a?(Clash) self[key] = Clash.new(self[key], self) else raise ChainError, "Tried to chain into a non-hash key." end self[key] elsif args.any? key = name.to_sym self.merge_store(key, *args) end end |
Instance Attribute Details
#_parent ⇒ Object (readonly)
The parent Clash if this Clash was created via chaining.
27 28 29 |
# File 'lib/pancake/vendor/hashie/lib/hashie/clash.rb', line 27 def _parent @_parent end |
Instance Method Details
#_end! ⇒ Object
Jump back up a level if you are using bang method chaining. For example:
c = Hashie::Clash.new.foo(‘bar’) c.baz!.foo(123) # => c c.baz!._end! # => c
45 46 47 |
# File 'lib/pancake/vendor/hashie/lib/hashie/clash.rb', line 45 def _end! self._parent end |
#id(*args) ⇒ Object
:nodoc:
49 50 51 |
# File 'lib/pancake/vendor/hashie/lib/hashie/clash.rb', line 49 def id(*args) #:nodoc: method_missing(:id, *args) end |
#merge_store(key, *args) ⇒ Object
:nodoc:
53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'lib/pancake/vendor/hashie/lib/hashie/clash.rb', line 53 def merge_store(key, *args) #:nodoc: case args.length when 1 val = args.first val = self[key].merge(val) if self[key].is_a?(::Hash) && val.is_a?(::Hash) else val = args end self[key.to_sym] = val self end |