Method: Neat::Generator#update

Defined in:
lib/neat/generator.rb

#updateObject



20
21
22
23
24
25
26
27
28
# File 'lib/neat/generator.rb', line 20

def update
  if neat_files_already_exist?
    remove_neat_directory
    install_files
    puts "Neat files updated."
  else
    puts "No existing neat installation. Doing nothing."
  end
end