Module: FluentCommandBuilder
- Defined in:
- lib/fluent_command_builder/command_builder.rb,
lib/fluent_command_builder/command_builders/rake_09.rb,
lib/fluent_command_builder/command_builders/tf_2010.rb,
lib/fluent_command_builder/command_builders/nunit_25.rb,
lib/fluent_command_builder/command_builders/nunit_26.rb,
lib/fluent_command_builder/command_builders/bundle_11.rb,
lib/fluent_command_builder/command_builders/simian_23.rb,
lib/fluent_command_builder/command_builders/msbuild_20.rb,
lib/fluent_command_builder/command_builders/msbuild_30.rb,
lib/fluent_command_builder/command_builders/msbuild_35.rb,
lib/fluent_command_builder/command_builders/msbuild_40.rb,
lib/fluent_command_builder/command_builders/netsh_2008.rb,
lib/fluent_command_builder/command_builders/cucumber_11.rb,
lib/fluent_command_builder/command_builders/dotcover_10.rb,
lib/fluent_command_builder/command_builders/dotcover_11.rb,
lib/fluent_command_builder/command_builders/dotcover_12.rb,
lib/fluent_command_builder/command_builders/msdeploy_40.rb,
lib/fluent_command_builder/command_builders/mstest_2005.rb,
lib/fluent_command_builder/command_builders/mstest_2008.rb,
lib/fluent_command_builder/command_builders/mstest_2010.rb,
lib/fluent_command_builder/command_builders/sevenzip_92.rb,
lib/fluent_command_builder/command_builders/tf_tee_2010.rb,
lib/fluent_command_builder/command_builders/xcodebuild_43.rb,
lib/fluent_command_builder/command_builders/installutil_11.rb,
lib/fluent_command_builder/command_builders/installutil_20.rb,
lib/fluent_command_builder/command_builders/installutil_35.rb,
lib/fluent_command_builder/command_builders/installutil_40.rb,
lib/fluent_command_builder/command_builders/appcfg_python_16.rb,
lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb,
lib/fluent_command_builder/command_builders/aspnet_compiler_40.rb
Defined Under Namespace
Modules: AppCfgPython, AspnetCompiler, Bundle, Cucumber, DotCover, InstallUtil, MSBuild, MSDeploy, MSTest, NUnit, Netsh, Rake, SevenZip, Simian, Tf, XCodeBuild Classes: CommandBuilder
Instance Method Summary collapse
- #appcfg_python_16 {|builder| ... } ⇒ Object
- #aspnet_compiler_20(target_dir = nil) {|builder| ... } ⇒ Object
- #aspnet_compiler_40(target_dir = nil) {|builder| ... } ⇒ Object
- #bundle_11 {|builder| ... } ⇒ Object
- #cucumber_11(feature = nil) {|builder| ... } ⇒ Object
- #dotcover_10 {|builder| ... } ⇒ Object
- #dotcover_11 {|builder| ... } ⇒ Object
- #dotcover_12 {|builder| ... } ⇒ Object
- #installutil_11 {|builder| ... } ⇒ Object
- #installutil_20 {|builder| ... } ⇒ Object
- #installutil_35 {|builder| ... } ⇒ Object
- #installutil_40 {|builder| ... } ⇒ Object
- #msbuild_20(project_file = nil) {|builder| ... } ⇒ Object
- #msbuild_30(project_file = nil) {|builder| ... } ⇒ Object
- #msbuild_35(project_file = nil) {|builder| ... } ⇒ Object
- #msbuild_40(project_file = nil) {|builder| ... } ⇒ Object
- #msdeploy_40 {|builder| ... } ⇒ Object
- #mstest_2005 {|builder| ... } ⇒ Object
- #mstest_2008 {|builder| ... } ⇒ Object
- #mstest_2010 {|builder| ... } ⇒ Object
- #netsh_2008 {|builder| ... } ⇒ Object
- #nunit_25(input_files) {|builder| ... } ⇒ Object
- #nunit_26(input_files) {|builder| ... } ⇒ Object
- #rake_09(task = nil) {|builder| ... } ⇒ Object
- #sevenzip_92 {|builder| ... } ⇒ Object
- #simian_23 {|builder| ... } ⇒ Object
- #tf_2010 {|builder| ... } ⇒ Object
- #tf_tee_2010 {|builder| ... } ⇒ Object
- #xcodebuild_43 {|builder| ... } ⇒ Object
Instance Method Details
#appcfg_python_16 {|builder| ... } ⇒ Object
570 571 572 573 574 575 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 570 def appcfg_python_16 builder = CommandBuilder.new AppCfgPython::V16::COMMAND_NAME command = AppCfgPython::V16::AppCfgPython.new builder yield builder if block_given? command end |
#aspnet_compiler_20(target_dir = nil) {|builder| ... } ⇒ Object
92 93 94 95 96 97 |
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb', line 92 def aspnet_compiler_20(target_dir=nil) builder = CommandBuilder.new AspnetCompiler::V20::COMMAND_NAME command = AspnetCompiler::V20::AspnetCompiler.new builder, target_dir yield builder if block_given? command end |
#aspnet_compiler_40(target_dir = nil) {|builder| ... } ⇒ Object
92 93 94 95 96 97 |
# File 'lib/fluent_command_builder/command_builders/aspnet_compiler_40.rb', line 92 def aspnet_compiler_40(target_dir=nil) builder = CommandBuilder.new AspnetCompiler::V40::COMMAND_NAME command = AspnetCompiler::V40::AspnetCompiler.new builder, target_dir yield builder if block_given? command end |
#bundle_11 {|builder| ... } ⇒ Object
310 311 312 313 314 315 |
# File 'lib/fluent_command_builder/command_builders/bundle_11.rb', line 310 def bundle_11 builder = CommandBuilder.new Bundle::V11::COMMAND_NAME command = Bundle::V11::Bundle.new builder yield builder if block_given? command end |
#cucumber_11(feature = nil) {|builder| ... } ⇒ Object
167 168 169 170 171 172 |
# File 'lib/fluent_command_builder/command_builders/cucumber_11.rb', line 167 def cucumber_11(feature=nil) builder = CommandBuilder.new Cucumber::V11::COMMAND_NAME command = Cucumber::V11::Cucumber.new builder, feature yield builder if block_given? command end |
#dotcover_10 {|builder| ... } ⇒ Object
58 59 60 61 62 63 |
# File 'lib/fluent_command_builder/command_builders/dotcover_10.rb', line 58 def dotcover_10 builder = CommandBuilder.new DotCover::V10::COMMAND_NAME command = DotCover::V10::DotCover.new builder yield builder if block_given? command end |
#dotcover_11 {|builder| ... } ⇒ Object
288 289 290 291 292 293 |
# File 'lib/fluent_command_builder/command_builders/dotcover_11.rb', line 288 def dotcover_11 builder = CommandBuilder.new DotCover::V11::COMMAND_NAME command = DotCover::V11::DotCover.new builder yield builder if block_given? command end |
#dotcover_12 {|builder| ... } ⇒ Object
288 289 290 291 292 293 |
# File 'lib/fluent_command_builder/command_builders/dotcover_12.rb', line 288 def dotcover_12 builder = CommandBuilder.new DotCover::V12::COMMAND_NAME command = DotCover::V12::DotCover.new builder yield builder if block_given? command end |
#installutil_11 {|builder| ... } ⇒ Object
53 54 55 56 57 58 |
# File 'lib/fluent_command_builder/command_builders/installutil_11.rb', line 53 def installutil_11 builder = CommandBuilder.new InstallUtil::V11::COMMAND_NAME command = InstallUtil::V11::InstallUtil.new builder yield builder if block_given? command end |
#installutil_20 {|builder| ... } ⇒ Object
58 59 60 61 62 63 |
# File 'lib/fluent_command_builder/command_builders/installutil_20.rb', line 58 def installutil_20 builder = CommandBuilder.new InstallUtil::V20::COMMAND_NAME command = InstallUtil::V20::InstallUtil.new builder yield builder if block_given? command end |
#installutil_35 {|builder| ... } ⇒ Object
58 59 60 61 62 63 |
# File 'lib/fluent_command_builder/command_builders/installutil_35.rb', line 58 def installutil_35 builder = CommandBuilder.new InstallUtil::V35::COMMAND_NAME command = InstallUtil::V35::InstallUtil.new builder yield builder if block_given? command end |
#installutil_40 {|builder| ... } ⇒ Object
64 65 66 67 68 69 |
# File 'lib/fluent_command_builder/command_builders/installutil_40.rb', line 64 def installutil_40 builder = CommandBuilder.new InstallUtil::V40::COMMAND_NAME command = InstallUtil::V40::InstallUtil.new builder yield builder if block_given? command end |
#msbuild_20(project_file = nil) {|builder| ... } ⇒ Object
83 84 85 86 87 88 |
# File 'lib/fluent_command_builder/command_builders/msbuild_20.rb', line 83 def msbuild_20(project_file=nil) builder = CommandBuilder.new MSBuild::V20::COMMAND_NAME command = MSBuild::V20::MSBuild.new builder, project_file yield builder if block_given? command end |
#msbuild_30(project_file = nil) {|builder| ... } ⇒ Object
83 84 85 86 87 88 |
# File 'lib/fluent_command_builder/command_builders/msbuild_30.rb', line 83 def msbuild_30(project_file=nil) builder = CommandBuilder.new MSBuild::V30::COMMAND_NAME command = MSBuild::V30::MSBuild.new builder, project_file yield builder if block_given? command end |
#msbuild_35(project_file = nil) {|builder| ... } ⇒ Object
123 124 125 126 127 128 |
# File 'lib/fluent_command_builder/command_builders/msbuild_35.rb', line 123 def msbuild_35(project_file=nil) builder = CommandBuilder.new MSBuild::V35::COMMAND_NAME command = MSBuild::V35::MSBuild.new builder, project_file yield builder if block_given? command end |
#msbuild_40(project_file = nil) {|builder| ... } ⇒ Object
126 127 128 129 130 131 |
# File 'lib/fluent_command_builder/command_builders/msbuild_40.rb', line 126 def msbuild_40(project_file=nil) builder = CommandBuilder.new MSBuild::V40::COMMAND_NAME command = MSBuild::V40::MSBuild.new builder, project_file yield builder if block_given? command end |
#msdeploy_40 {|builder| ... } ⇒ Object
171 172 173 174 175 176 |
# File 'lib/fluent_command_builder/command_builders/msdeploy_40.rb', line 171 def msdeploy_40 builder = CommandBuilder.new MSDeploy::V40::COMMAND_NAME command = MSDeploy::V40::MSDeploy.new builder yield builder if block_given? command end |
#mstest_2005 {|builder| ... } ⇒ Object
101 102 103 104 105 106 |
# File 'lib/fluent_command_builder/command_builders/mstest_2005.rb', line 101 def mstest_2005 builder = CommandBuilder.new MSTest::V2005::COMMAND_NAME command = MSTest::V2005::MSTest.new builder yield builder if block_given? command end |
#mstest_2008 {|builder| ... } ⇒ Object
106 107 108 109 110 111 |
# File 'lib/fluent_command_builder/command_builders/mstest_2008.rb', line 106 def mstest_2008 builder = CommandBuilder.new MSTest::V2008::COMMAND_NAME command = MSTest::V2008::MSTest.new builder yield builder if block_given? command end |
#mstest_2010 {|builder| ... } ⇒ Object
121 122 123 124 125 126 |
# File 'lib/fluent_command_builder/command_builders/mstest_2010.rb', line 121 def mstest_2010 builder = CommandBuilder.new MSTest::V2010::COMMAND_NAME command = MSTest::V2010::MSTest.new builder yield builder if block_given? command end |
#netsh_2008 {|builder| ... } ⇒ Object
402 403 404 405 406 407 |
# File 'lib/fluent_command_builder/command_builders/netsh_2008.rb', line 402 def netsh_2008 builder = CommandBuilder.new Netsh::V2008::COMMAND_NAME command = Netsh::V2008::Netsh.new builder yield builder if block_given? command end |
#nunit_25(input_files) {|builder| ... } ⇒ Object
137 138 139 140 141 142 |
# File 'lib/fluent_command_builder/command_builders/nunit_25.rb', line 137 def nunit_25(input_files) builder = CommandBuilder.new NUnit::V25::COMMAND_NAME command = NUnit::V25::NUnit.new builder, input_files yield builder if block_given? command end |
#nunit_26(input_files) {|builder| ... } ⇒ Object
177 178 179 180 181 182 |
# File 'lib/fluent_command_builder/command_builders/nunit_26.rb', line 177 def nunit_26(input_files) builder = CommandBuilder.new NUnit::V26::COMMAND_NAME command = NUnit::V26::NUnit.new builder, input_files yield builder if block_given? command end |
#rake_09(task = nil) {|builder| ... } ⇒ Object
137 138 139 140 141 142 |
# File 'lib/fluent_command_builder/command_builders/rake_09.rb', line 137 def rake_09(task=nil) builder = CommandBuilder.new Rake::V09::COMMAND_NAME command = Rake::V09::Rake.new builder, task yield builder if block_given? command end |
#sevenzip_92 {|builder| ... } ⇒ Object
512 513 514 515 516 517 |
# File 'lib/fluent_command_builder/command_builders/sevenzip_92.rb', line 512 def sevenzip_92 builder = CommandBuilder.new SevenZip::V92::COMMAND_NAME command = SevenZip::V92::SevenZip.new builder yield builder if block_given? command end |
#simian_23 {|builder| ... } ⇒ Object
136 137 138 139 140 141 |
# File 'lib/fluent_command_builder/command_builders/simian_23.rb', line 136 def simian_23 builder = CommandBuilder.new Simian::V23::COMMAND_NAME command = Simian::V23::Simian.new builder yield builder if block_given? command end |
#tf_2010 {|builder| ... } ⇒ Object
2149 2150 2151 2152 2153 2154 |
# File 'lib/fluent_command_builder/command_builders/tf_2010.rb', line 2149 def tf_2010 builder = CommandBuilder.new Tf::V2010::COMMAND_NAME command = Tf::V2010::Tf.new builder yield builder if block_given? command end |
#tf_tee_2010 {|builder| ... } ⇒ Object
1972 1973 1974 1975 1976 1977 |
# File 'lib/fluent_command_builder/command_builders/tf_tee_2010.rb', line 1972 def tf_tee_2010 builder = CommandBuilder.new Tf::TEE2010::COMMAND_NAME command = Tf::TEE2010::Tf.new builder yield builder if block_given? command end |
#xcodebuild_43 {|builder| ... } ⇒ Object
135 136 137 138 139 140 |
# File 'lib/fluent_command_builder/command_builders/xcodebuild_43.rb', line 135 def xcodebuild_43 builder = CommandBuilder.new XCodeBuild::V43::COMMAND_NAME command = XCodeBuild::V43::XCodeBuild.new builder yield builder if block_given? command end |