inspec/lib/bundles/inspec-init/cli.rb

40 lines
1.3 KiB
Ruby
Raw Normal View History

2016-02-14 10:59:02 +00:00
# encoding: utf-8
require 'pathname'
require_relative 'renderer'
require 'inspec/base_cli'
2016-02-14 20:26:37 +00:00
module Init
2016-02-14 10:59:02 +00:00
class CLI < Inspec::BaseCLI
2016-02-14 20:26:37 +00:00
namespace 'init'
2016-02-14 10:59:02 +00:00
2016-08-18 18:10:09 +00:00
# TODO: find another solution, once https://github.com/erikhuda/thor/issues/261 is fixed
def self.banner(command, _namespace = nil, _subcommand = false)
"#{basename} #{subcommand_prefix} #{command.usage}"
end
def self.subcommand_prefix
namespace
end
# Look in the 'template' directory, and register a subcommand
# for each template directory found there.
2016-02-14 10:59:02 +00:00
template_dir = File.join(File.dirname(__FILE__), 'templates')
Dir.glob(File.join(template_dir, '*')) do |template|
template_name = Pathname.new(template).relative_path_from(Pathname.new(template_dir)).to_s
2016-02-14 10:59:02 +00:00
# register command for the template
desc "#{template_name} NAME", "Create a new #{template_name}"
2016-02-14 10:59:02 +00:00
option :overwrite, type: :boolean, default: false,
desc: 'Overwrites existing directory'
define_method template_name.to_sym do |name_for_new_structure|
renderer = Init::Renderer.new(self, options)
renderer.render_with_values(template_name, name: name_for_new_structure)
2016-02-14 10:59:02 +00:00
end
end
end
# register the subcommand to Inspec CLI registry
2016-02-14 20:26:37 +00:00
Inspec::Plugins::CLI.add_subcommand(Init::CLI, 'init', 'init TEMPLATE ...', 'Scaffolds a new project', {})
2016-02-14 10:59:02 +00:00
end