Class: Pull

Inherits:
Array show all
Defined in:
lib/tasks/pull.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
# File 'lib/tasks/pull.rb', line 5

def update
	if(Internet.available?)
		if(File.exists?('.git') && `git config --list`.include?('user.name='))
			add_quiet('git pull') if Git.branch == 'master'
		end
	end
end