Method: Thingiverse::Pagination#method_missing

Defined in:
lib/thingiverse/pagination.rb

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



42
43
44
45
46
47
48
# File 'lib/thingiverse/pagination.rb', line 42

def method_missing(meth, *args, &block)
  if meth.to_s =~ /^(.*)_page$/
    get_url_page($1, *args, &block)
  else
    super
  end
end