Class: Push

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

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



3
4
5
6
7
8
# File 'lib/push.rb', line 3

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