Class: Update

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

def update
	add_quiet 'svn update' if File.exists?('.svn') && Internet.available?

	if(Dir.glob('**/packages.config').length > 0)
		Dir.glob('*.sln').each{|sln_file|
			add_quiet "nuget update #{sln_file}"
		}
	end
end