class Github::Client::Repos::Releases::Tags

The Releases API

Public Instance Methods

find(*args)
Alias for: get
get(*args) click to toggle source

Get a published release with the specified tag.

@see developer.github.com/v3/repos/releases/#get-a-release-by-tag-name

@example

github = Github.new
github.repos.releases.tags.get 'owner', 'repo', 'tag'

@api public

# File lib/github_api/client/repos/releases/tags.rb, line 17
def get(*args)
  arguments(args, required: [:owner, :repo, :tag]).params

  get_request("/repos/#{arguments.owner}/#{arguments.repo}/releases/tags/#{arguments.tag}" , arguments.params)
end
Also aliased as: find