Class: Push

Inherits:
Array show all
Defined in:
lib/tasks/push.rb

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



7
8
9
10
11
12
# File 'lib/tasks/push.rb', line 7

def update
  if(File.exists?('.git') && `git config --list`.include?('user.name=') && `git branch`.include?('* master'))
    self <<  'git push'
    self <<  'git push --tags'
  end
end