Class: ChefDK::Command::CleanPolicyRevisions
- Includes:
- ChefDK::Configurable
- Defined in:
- lib/chef-dk/command/clean_policy_revisions.rb
Instance Attribute Summary collapse
-
#policy_group ⇒ Object
readonly
Returns the value of attribute policy_group.
-
#policy_name ⇒ Object
readonly
Returns the value of attribute policy_name.
-
#ui ⇒ Object
Returns the value of attribute ui.
Instance Method Summary collapse
- #apply_params!(params) ⇒ Object
- #clean_policies_service ⇒ Object
- #debug? ⇒ Boolean
- #handle_error(error) ⇒ Object
-
#initialize(*args) ⇒ CleanPolicyRevisions
constructor
A new instance of CleanPolicyRevisions.
- #run(params) ⇒ Object
Methods included from ChefDK::Configurable
#chef_config, #chefdk_config, #config_loader
Methods inherited from Base
#needs_help?, #needs_version?, #run_with_default_options
Methods included from Helpers
#chefdk_home, #err, #msg, #omnibus_apps_dir, #omnibus_bin_dir, #omnibus_chefdk_location, #omnibus_embedded_bin_dir, #omnibus_install?, #omnibus_root, #stderr, #stdout, #system_command, #usr_bin_path, #usr_bin_prefix
Constructor Details
#initialize(*args) ⇒ CleanPolicyRevisions
Returns a new instance of CleanPolicyRevisions.
64 65 66 67 |
# File 'lib/chef-dk/command/clean_policy_revisions.rb', line 64 def initialize(*args) super @ui = UI.new end |
Instance Attribute Details
#policy_group ⇒ Object (readonly)
Returns the value of attribute policy_group.
62 63 64 |
# File 'lib/chef-dk/command/clean_policy_revisions.rb', line 62 def policy_group @policy_group end |
#policy_name ⇒ Object (readonly)
Returns the value of attribute policy_name.
60 61 62 |
# File 'lib/chef-dk/command/clean_policy_revisions.rb', line 60 def policy_name @policy_name end |
#ui ⇒ Object
Returns the value of attribute ui.
58 59 60 |
# File 'lib/chef-dk/command/clean_policy_revisions.rb', line 58 def ui @ui end |
Instance Method Details
#apply_params!(params) ⇒ Object
97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/chef-dk/command/clean_policy_revisions.rb', line 97 def apply_params!(params) remaining_args = (params) if !remaining_args.empty? ui.err("Too many arguments") ui.err("") ui.err(opt_parser) false else true end end |
#clean_policies_service ⇒ Object
78 79 80 81 |
# File 'lib/chef-dk/command/clean_policy_revisions.rb', line 78 def clean_policies_service @policy_list_service ||= PolicyfileServices::CleanPolicies.new(config: chef_config, ui: ui) end |
#debug? ⇒ Boolean
83 84 85 |
# File 'lib/chef-dk/command/clean_policy_revisions.rb', line 83 def debug? !!config[:debug] end |
#handle_error(error) ⇒ Object
87 88 89 90 91 92 93 94 95 |
# File 'lib/chef-dk/command/clean_policy_revisions.rb', line 87 def handle_error(error) ui.err("Error: #{error.message}") if error.respond_to?(:reason) ui.err("Reason: #{error.reason}") ui.err("") ui.err(error.extended_error_info) if debug? ui.err(error.cause.backtrace.join("\n")) if debug? end end |
#run(params) ⇒ Object
69 70 71 72 73 74 75 76 |
# File 'lib/chef-dk/command/clean_policy_revisions.rb', line 69 def run(params) return 1 unless apply_params!(params) clean_policies_service.run 0 rescue PolicyfileServiceError => e handle_error(e) 1 end |