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