class Github::Client::Repos::Releases::Tags
The Releases API
Public Instance Methods
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 14 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