2016-02-14 10:59:02 +00:00
|
|
|
# encoding: utf-8
|
|
|
|
|
2016-02-21 21:12:02 +00:00
|
|
|
require 'pathname'
|
2018-07-17 15:42:36 +00:00
|
|
|
require_relative 'renderer'
|
2016-02-21 21:12:02 +00:00
|
|
|
|
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
|
|
|
|
|
2018-07-17 15:42:36 +00:00
|
|
|
# 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|
|
2018-07-17 15:42:36 +00:00
|
|
|
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
|
2018-07-17 15:42:36 +00:00
|
|
|
desc "#{template_name} NAME", "Create a new #{template_name}"
|
2016-02-14 10:59:02 +00:00
|
|
|
option :overwrite, type: :boolean, default: false,
|
2018-07-17 15:42:36 +00:00
|
|
|
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
|