Method: Github::Client::Orgs#get

Defined in:
lib/github_api/client/orgs.rb

#get(*args) ⇒ Object Also known as: find

Get properties for a single organization

Examples:

github = Github.new
github.orgs.get 'github'

See Also:



85
86
87
88
89
# File 'lib/github_api/client/orgs.rb', line 85

def get(*args)
  arguments(args, required: [:org_name])

  get_request("/orgs/#{arguments.org_name}", arguments.params)
end