module Startling::Github

Public Class Methods

api() click to toggle source
# File lib/startling/github.rb, line 8
def self.api
  @api ||= Github::Api.new
end
repo(name) click to toggle source
# File lib/startling/github.rb, line 12
def self.repo(name)
  api.repository(name)
end