Class: NetworkExecutive::UninstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/network_executive/uninstall_generator.rb

Instance Method Summary collapse

Instance Method Details

#uninstallObject



9
10
11
12
13
14
15
16
17
18
# File 'lib/generators/network_executive/uninstall_generator.rb', line 9

def uninstall
  say 'Uninstalling NetworkExecutive...', :magenta

  remove_file 'config/initializers/network_executive.rb'
  remove_file 'config/initializers/network_executive.rb.example'

  gsub_file 'config/routes.rb', /mount NetworkExecutive::Engine => \'\/.+\', as:\S*\'network_executive\'/, ''

  say 'Done!', :green
end