improve styling

This commit is contained in:
Christoph Hartmann 2016-02-05 12:40:47 +01:00
parent 589db0bcd0
commit bab7eb1986
2 changed files with 3 additions and 3 deletions

View file

@ -253,13 +253,13 @@ class Inspec::InspecCLI < Thor # rubocop:disable Metrics/ClassLength
end
# load CLI plugins before the Inspec CLI has been started
Inspec::Plugins::CLI.registry.each{ |subcommand, params|
Inspec::Plugins::CLI.registry.each { |_subcommand, params|
Inspec::InspecCLI.register(
params[:klass],
params[:subcommand_name],
params[:usage],
params[:description],
params[:options]
params[:options],
)
}

View file

@ -3,7 +3,7 @@
# author: Christoph Hartmann
require 'forwardable'
puts 'plugins'
module Inspec
# Resource Plugins
module Plugins