Class: Pull

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

Overview

require_relative(‘internet.rb’)

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



815
816
817
818
819
820
821
# File 'lib/dev_commands.rb', line 815

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