Class: Gjp::GenerateKitArchiveCommand
- Inherits:
-
BaseCommand
- Object
- Clamp::Command
- BaseCommand
- Gjp::GenerateKitArchiveCommand
- Defined in:
- lib/gjp/commands/generate_kit_archive.rb
Instance Method Summary collapse
Methods inherited from BaseCommand
#checking_exceptions, #configure_log_level, #ensure_dry_running, #format_path, #print_generation_result, #verbose=, #very_verbose=, #very_very_verbose=
Methods included from Logging
Instance Method Details
#execute ⇒ Object
7 8 9 10 11 12 13 14 15 |
# File 'lib/gjp/commands/generate_kit_archive.rb', line 7 def execute checking_exceptions do project = Gjp::Project.new(".") ensure_dry_running(false, project) do result_path = Gjp::Archiver.new(project).archive_kit(full?) print_generation_result(project, result_path) end end end |