Sha256: f7df370cf6c32595a9a5786837d7123dd5ec9a3d3c5cd157bb9ac1c03852eef8
Contents?: true
Size: 543 Bytes
Versions: 12
Compression:
Stored size: 543 Bytes
Contents
module Octokit class Client module Network def network_meta(repo, options={}) warn 'DEPRECATED: V3 of the API does not support this information. Support will be removed soon.' get("/#{Repository.new(repo)}/network_meta", options, 2, false) end def network_data(repo, options={}) warn 'DEPRECATED: V3 of the API does not support this information. Support will be removed soon.' get("/#{Repository.new(repo)}/network_data_chunk", options, 2, false)['commits'] end end end end
Version data entries
12 entries across 12 versions & 1 rubygems