module Typekit::Element::Query::ClassMethods

Public Instance Methods

all() click to toggle source
# File lib/typekit/element/query.rb, line 9
def all
  process(:index)
end
find(id) click to toggle source
# File lib/typekit/element/query.rb, line 17
def find(id)
  find!(id)
rescue ServerError
  nil
end
find!(id) click to toggle source
# File lib/typekit/element/query.rb, line 13
def find!(id)
  process(:show, id)
end