Method: ASE#method_missing

Defined in:
lib/ase.rb

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



35
36
37
38
39
40
41
# File 'lib/ase.rb', line 35

def method_missing(method, *args, &block)
  if @palettes.has_key?(method.to_s)
    return @palettes[method.to_s]
  end

  super
end