class Github::Issues::Labels

def get(*args)


github.issues.labels.get label_name: 'bug'
github = Github.new user: 'user-name', repo: 'repo-name'

github.issues.labels.find 'user-name', 'repo-name', 'label-name'
github = Github.new
= Examples

Get a single label
def get(*args)
  arguments(args, :required => [:user, :repo, :label_name])
  params = arguments.params
  get_request("/repos/#{user}/#{repo}/labels/#{label_name}", params)
end