module GithubRevisions

Constants

VERSION

Public Class Methods

github() click to toggle source
# File lib/github_revisions.rb, line 10
def github
  if @@oauth
    return Github.new(:oauth_token => @@oauth)
  else
    return Github.new
  end
end