Module: FluentCommandBuilder::AspnetCompiler::V20

Defined in:
lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb

Defined Under Namespace

Classes: AspnetCompiler

Constant Summary collapse

COMMAND_NAME =
'aspnet_compiler'

Instance Method Summary collapse

Instance Method Details

#aspnet_compiler(target_dir = nil) {|builder| ... } ⇒ Object

Yields:

  • (builder)


84
85
86
87
88
89
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 84

def aspnet_compiler(target_dir=nil)
  builder = CommandBuilder.new COMMAND_NAME
  command = AspnetCompiler.new builder, target_dir
  yield builder if block_given?
  command
end