Method: Rugged::Repository#tags

Defined in:
lib/rugged/repository.rb

#tagsObject

All the tags in the repository.

Returns a TagCollection containing all the tags.



192
193
194
# File 'lib/rugged/repository.rb', line 192

def tags
  @tags ||= TagCollection.new(self)
end