Method: Lookbook::Page#method_missing

Defined in:
lib/lookbook/page.rb

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



84
85
86
87
88
89
90
# File 'lib/lookbook/page.rb', line 84

def method_missing(method_name, *args, &block)
  if args.none? && !block
    options[method_name]
  else
    super
  end
end