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?, #initialize, #log_debug_info, #to_html

Constructor Details

This class inherits a constructor from Array

Instance Method Details

#updateObject



7
8
9
10
11
12
13
14
15
16
# File 'lib/tasks/update.rb', line 7

def update
  add_quiet "svn update" if File.exist?(".svn") && Internet.available?

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