module Fasterer::Github

Constants

VERSION

Attributes

configuration[RW]

Public Class Methods

configure() { |configuration| ... } click to toggle source
# File lib/fasterer/github/configuration.rb, line 7
def self.configure
  yield(configuration)
end
reset_configuration() click to toggle source
# File lib/fasterer/github/configuration.rb, line 15
def self.reset_configuration
  Fasterer::Github.configuration = nil
  Fasterer::Github.configure {}
end
scan(owner, repo, path = nil) click to toggle source
# File lib/fasterer/github.rb, line 7
def self.scan(owner, repo, path = nil)
  scanner = Fasterer::Github::Scanner.new(owner, repo, path)
  scanner.run
  scanner.results
end