Method: Chid::Commands::Github#run

Defined in:
lib/chid/commands/github.rb

#runObject



26
27
28
29
30
31
32
33
# File 'lib/chid/commands/github.rb', line 26

def run
  search_expression = name
  repositories = GitHubApi.repositories(search_expression)

  Paginator.new(repositories).paginate do |repository|
    repository.summary
  end
end