Method: PSD::Node::Group#method_missing

Defined in:
lib/psd/nodes/group.rb

#method_missing(method, *args, &block) ⇒ Object

If the method is missing, we blindly send it to the layer. The layer handles the case in which the method doesn’t exist.



31
32
33
# File 'lib/psd/nodes/group.rb', line 31

def method_missing(method, *args, &block)
  @layer.send(method, *args, &block)
end