Class: Pull

Inherits:
Array show all
Defined in:
lib/commands/pull.rb

Overview

require_relative(‘git.rb’) require_relative(‘internet.rb’)

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



5
6
7
8
9
10
11
# File 'lib/commands/pull.rb', line 5

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