Sha256: 4abfbde5a9774032a6173c1b8c94aab323982b1095bc6b615ec604085023eba2
Contents?: true
Size: 515 Bytes
Versions: 10
Compression:
Stored size: 515 Bytes
Contents
module Octokit class Client module Timelines def timeline(options={}) path = "https://github.com/timeline.json" get(path, options, false, false, false) end def user_timeline(username=login, options={}) if token path = "https://github.com/#{username}.private.json" options[:token] = token else path = "https://github.com/#{username}.json" end get(path, options, false, false, false) end end end end
Version data entries
10 entries across 10 versions & 3 rubygems