class GithubSearch::Searcher

Public Instance Methods

issues() click to toggle source
# File lib/github-search/searcher.rb, line 16
def issues
  @path = "issues"
  @model = Issue
  self
end
repos() click to toggle source
# File lib/github-search/searcher.rb, line 22
def repos
  @path = "repositories"
  @model = Repository
  self
end
users() click to toggle source
# File lib/github-search/searcher.rb, line 28
def users
  @path = "users"
  @model = User
  self
end