Class: Push

Inherits:
Array show all
Defined in:
lib/dev_commands.rb

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



824
825
826
827
828
# File 'lib/dev_commands.rb', line 824

def update
  if(File.exists?('.git') && `git config --list`.include?('user.name='))
    self <<  'git push --tags' if Git.branch != 'develop' && Internet.available?
  end
end