Class: Push

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

Instance Attribute Summary

Attributes inherited from Array

#env

Instance Method Summary collapse

Methods inherited from Array

#add, #add_passive, #add_quiet, #execute, #has_command?, #intialize, #to_html

Instance Method Details

#updateObject



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

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