Sha256: 11449a4c3ef415e9d636a747d34feffa91dc057b15bd67e9d981c6618d231ca4
Contents?: true
Size: 1.54 KB
Versions: 2
Compression:
Stored size: 1.54 KB
Contents
module Octokit class Client # Methods for licenses API # module Licenses # List all licenses # # @see https://developer.github.com/v3/licenses/#list-all-licenses # @return [Array<Sawyer::Resource>] A list of licenses # @example # Octokit.licenses def licenses(options = {}) options = ensure_api_media_type(:licenses, options) paginate "licenses", options end # List an individual license # # @see https://developer.github.com/v3/licenses/#get-an-individual-license # @param license_name [String] The license name # @return <Sawyer::Resource> An individual license # @example # Octokit.license 'mit' def license(license_name, options = {}) options = ensure_api_media_type(:licenses, options) get "licenses/#{license_name}", options end # Returns the contents of the repository’s license file, if one is detected. # # @see https://developer.github.com/v3/licenses/#get-a-repositorys-license # @param repo [Integer, String, Repository, Hash] A GitHub repository # @option options [String] :ref name of the Commit/Branch/Tag. Defaults to 'master'. # @return [Sawyer::Resource] The detail of the license file # @example # Octokit.license_contents 'benbalter/licensee' def repository_license_contents(repo, options = {}) options = ensure_api_media_type(:licenses, options) get "#{Repository.path repo}/license", options end end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
tdiary-4.2.1 | vendor/bundle/ruby/2.2.0/gems/octokit-4.2.0/lib/octokit/client/licenses.rb |
octokit-4.2.0 | lib/octokit/client/licenses.rb |