Class: Update
Instance Method Summary collapse
Methods inherited from Array
Instance Method Details
#update ⇒ Object
7 8 9 10 11 12 13 14 15 |
# File 'lib/tasks/update.rb', line 7 def update self .add 'svn update' if File.exists?('.svn') && Internet.available? if(Dir.glob('**/packages.config').length > 0) Dir.glob('*.sln').each{|sln_file| add "nuget update #{sln_file}" } end end |