Method: Git::Base#tags

Defined in:
lib/git/base.rb

#tags

returns an array of all Git::Tag objects for this repository

[View source]

525
526
527
# File 'lib/git/base.rb', line 525

def tags
  self.lib.tags.map { |r| tag(r) }
end