lib/chef-cli/command/generator_commands.rb



#
# Copyright:: Chef Software Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require "mixlib/cli" unless defined?(Mixlib::CLI)
autoload :Pathname, "pathname"
require_relative "base"
require_relative "../chef_runner"
require_relative "../generator"

module ChefCLI
  module Command

    # ## SharedGeneratorOptions
    #
    # These CLI options are shared amongst the generator commands
    module SharedGeneratorOptions
      include Mixlib::CLI

      # You really want these to have default values, as
      # they will likely be used all over the place.
      option :license,
        short: "-I LICENSE",
        long: "--license LICENSE",
        description: "all_rights, apachev2, mit, gplv2, gplv3 - defaults to all_rights",
        proc: Proc.new { |l|
          /apache2/.match?(l) ? "apachev2" : l
        },
        default: nil

      option :copyright_holder,
        short: "-C COPYRIGHT",
        long: "--copyright COPYRIGHT",
        description: "Name of the copyright holder - defaults to 'The Authors'",
        default: nil

      option :email,
        short: "-m EMAIL",
        long: "--email EMAIL",
        description: "Email address of the author - defaults to 'you@example.com'",
        default: nil

      option :generator_cookbook,
        short: "-g GENERATOR_COOKBOOK_PATH",
        long: "--generator-cookbook GENERATOR_COOKBOOK_PATH",
        description: "Use GENERATOR_COOKBOOK_PATH for the code_generator cookbook",
        default: nil,
        proc: Proc.new { |s| File.expand_path(s) },
        on: :tail

      generator_args = [] # accumulator variable
      option :generator_arg,
        short: "-a KEY=VALUE",
        long: "--generator-arg KEY=VALUE",
        description: "Use to set arbitrary attribute KEY to VALUE in the code_generator cookbook",
        default: [],
        proc: Proc.new { |s| generator_args << s.split("=").map(&:strip) }
    end

    # ## GeneratorCommands
    #
    # This module is the namespace for all subcommands of `chef generate`
    module GeneratorCommands
      def self.build(class_name, params)
        const_get(class_name).new(params)
      end
    end
  end
end