class HornOfPlenty::Adapters::Github::Responses::ListCards

Public Instance Methods

parser_class() click to toggle source
# File lib/horn_of_plenty/adapters/github/responses/list_cards.rb, line 16
def parser_class
  @parser_class ||= Parsers::Card
end
result() click to toggle source
# File lib/horn_of_plenty/adapters/github/responses/list_cards.rb, line 11
def result
  @result ||= Collections::Card.new(items:  items,
                                    parser: parser_class)
end