Sha256: 67c5540a92693ae42f28e2d8c422e6d425db3762f13f5d7deb5820a454c7c3a0
Contents?: true
Size: 531 Bytes
Versions: 24
Compression:
Stored size: 531 Bytes
Contents
# frozen_string_literal: true module Octokit class Client # Methods for the Meta API # # @see https://developer.github.com/v3/meta/ module Meta # Get meta information about GitHub.com, the service. # @see https://developer.github.com/v3/meta/#meta # @return [Sawyer::Resource] Hash with meta information. # @example Get GitHub meta information # @client.github_meta def meta(options = {}) get 'meta', options end alias github_meta meta end end end
Version data entries
24 entries across 24 versions & 2 rubygems