Class: EPC::Command::DeleteSolutionCommand
- Inherits:
-
DeleteCommand
- Object
- BaseCommand
- DeleteCommand
- EPC::Command::DeleteSolutionCommand
- Defined in:
- lib/epc/command/solution/delete_solution_command.rb
Constant Summary
Constants inherited from BaseCommand
BaseCommand::GIVEUP_TICKS, BaseCommand::SLEEP_TIME, BaseCommand::TICKER_TICKS
Instance Attribute Summary
Attributes inherited from BaseCommand
#client, #klass_name, #object_id, #object_type, #options, #target_id, #target_type
Instance Method Summary collapse
Methods inherited from BaseCommand
#check_options, #context_params, #context_params=, #go, include_module, inherited, #initialize, required_options, #say_err
Methods included from PersistentAttributes
#auth_token, #caller_id, #target_url
Constructor Details
This class inherits a constructor from EPC::Command::BaseCommand
Instance Method Details
#execute(args = []) ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/epc/command/solution/delete_solution_command.rb', line 3 def execute(args = []) path = File.(".") proceed = ask_yn("Are you sure you want to delete [#{object_id}]. Correct? [Yn] ") if proceed.upcase == 'N' return 1 end status, response, = client.delete(EPC::Config::SOLUTIONS_PATH + "/#{object_id}") if status.successful? (project_solution_path(path)) if EPC::Config.is_solution_dir?(path) || EPC::Config.is_project_dir?(path) say("Solution deleted.") else say_err("Solution could not be deleted. Delete failed with: [#{response[:message]}]") end return status end |
#remove_solution_metadata(solution_path) ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/epc/command/solution/delete_solution_command.rb', line 21 def (solution_path) dirs = Dir.glob(solution_path + "/**/") dirs.each do |dir| file = dir + "/.epc_project" File.delete(file) if FileTest.exist?(file) end File.delete(solution_path + "/.epc_solution") if FileTest.exist?(solution_path + "/.epc_solution") end |