Sha256: b0b2591d98c94333637187f099074ef970f52ba6146f021dbc6ca9a1c0585a04
Contents?: true
Size: 1.56 KB
Versions: 1
Compression:
Stored size: 1.56 KB
Contents
require 'puppet/interface/option' class Puppet::Interface::OptionBuilder attr_reader :option def self.build(face, *declaration, &block) new(face, *declaration, &block).option end private def initialize(face, *declaration, &block) @face = face @option = Puppet::Interface::Option.new(face, *declaration) instance_eval(&block) if block_given? @option end # Metaprogram the simple DSL from the option class. Puppet::Interface::Option.instance_methods.grep(/=$/).each do |setter| next if setter =~ /^=/ dsl = setter.to_s.chomp('=') unless private_method_defined? dsl define_method(dsl) do |value| @option.send(setter, value) end end end # Override some methods that deal in blocks, not objects. def before_action(&block) block or raise ArgumentError, "#{@option} before_action requires a block" if @option.before_action raise ArgumentError, "#{@option} already has a before_action set" end unless block.arity == 3 then raise ArgumentError, "before_action takes three arguments, action, args, and options" end @option.before_action = block end def after_action(&block) block or raise ArgumentError, "#{@option} after_action requires a block" if @option.after_action raise ArgumentError, "#{@option} already has a after_action set" end unless block.arity == 3 then raise ArgumentError, "after_action takes three arguments, action, args, and options" end @option.after_action = block end def required(value = true) @option.required = value end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
puppet-2.7.1 | lib/puppet/interface/option_builder.rb |