2017-04-11 21:33:54 -04:00
|
|
|
module Github
|
|
|
|
class Repositories
|
2017-04-19 21:54:09 -04:00
|
|
|
attr_reader :options
|
|
|
|
|
|
|
|
def initialize(options)
|
|
|
|
@options = options
|
2017-04-11 21:33:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def fetch
|
2017-04-19 21:54:09 -04:00
|
|
|
Collection.new(options).fetch(repos_url)
|
2017-04-11 21:33:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def repos_url
|
|
|
|
'/user/repos'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|