Class: Git::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/crackin/ext/git/base.rb

Instance Method Summary collapse

Instance Method Details

#branch_currentObject



9
10
11
# File 'lib/crackin/ext/git/base.rb', line 9

def branch_current
  self.lib.branch_current
end

#tag_delete(tag_name) ⇒ Object



3
4
5
6
7
# File 'lib/crackin/ext/git/base.rb', line 3

def tag_delete(tag_name)
  tag = tag(tag_name)
  self.lib.tag_delete(tag_name)
  tag
end