Sha256: e6d96f1f4b7b0b6b9e02673d980b5c49148c7f5c432d5c6ac8065538f8f18e86

Contents?: true

Size: 496 Bytes

Versions: 1

Compression:

Stored size: 496 Bytes

Contents

module Octokit
  class Client

    # Methods for the Meta API
    #
    # @see http://developer.github.com/v3/meta/
    module Meta

      # Get meta information about GitHub.com, the service.
      # @see http://developer.github.com/v3/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

1 entries across 1 versions & 1 rubygems

Version Path
octokit-2.0.0.pre lib/octokit/client/meta.rb