class Gh::Trending::Repositories

Returns an array of representation of the trending repositories in github.

Public Class Methods

get(**args) click to toggle source
# File lib/gh_trending/repositories.rb, line 11
def self.get(**args)
  parser = Gh::Trending::Parsers::ReposParser.new
  parse_args = Gh::Trending::Parsers::ParserArguments.new(**args)
  parser.parse(parse_args).to_a.compact
end