class Hyrb::Commands::Github

Public Instance Methods

create_repo(project_name = nil) click to toggle source
# File lib/hyrb/commands/github.rb, line 10
def create_repo(project_name = nil)
  pipeline(Hyrb::Tasks::Github::CreateRepo, {project_name: project_name})
end
show_repos() click to toggle source
# File lib/hyrb/commands/github.rb, line 5
def show_repos
  pipeline(Hyrb::Tasks::Github::ShowRepos)
end