Module: FluentCommandBuilder::InstallUtil::V35
- Defined in:
- lib/fluent_command_builder/command_builders/installutil_35.rb
Defined Under Namespace
Classes: InstallUtil
Constant Summary collapse
- VERSION =
'3.5'- @@config =
CommandBuilderConfig.new FluentCommandBuilder::InstallUtil::COMMAND_NAME, VERSION
Instance Method Summary collapse
Instance Method Details
#configure_installutil {|@@config| ... } ⇒ Object
13 14 15 16 17 |
# File 'lib/fluent_command_builder/command_builders/installutil_35.rb', line 13 def configure_installutil yield @@config @@config.validate_path @@config.validate_version end |
#installutil {|b| ... } ⇒ Object
18 19 20 21 22 23 |
# File 'lib/fluent_command_builder/command_builders/installutil_35.rb', line 18 def installutil b = UnderlyingBuilder.new @@config c = InstallUtil.new(b) yield b if block_given? c end |