piotrmurach/github

View on GitHub
lib/github_api/client/meta.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: utf-8

require_relative '../api'

module Github
  class Client::Meta < API
    # Get meta information about GitHub.com, the service.
    #
    # @example
    #   Github.meta.get
    #
    # @api public
    def get(*args)
      arguments(*args)

      get_request("/meta", arguments.params)
    end
  end # Client::Meta
end # Github