fluent_command_builder 0.8.18 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/fluent_command_builder.rb +2 -65
- data/lib/fluent_command_builder/command_builder.rb +2 -2
- data/lib/fluent_command_builder/command_builders/appcfg_python.rb +2 -1
- data/lib/fluent_command_builder/command_builders/appcfg_python_16.rb +5 -4
- data/lib/fluent_command_builder/command_builders/appcfg_python_17.rb +5 -4
- data/lib/fluent_command_builder/command_builders/aspnet_compiler.rb +2 -1
- data/lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb +5 -4
- data/lib/fluent_command_builder/command_builders/aspnet_compiler_40.rb +5 -4
- data/lib/fluent_command_builder/command_builders/bundle.rb +2 -1
- data/lib/fluent_command_builder/command_builders/bundle_11.rb +5 -4
- data/lib/fluent_command_builder/command_builders/cucumber.rb +2 -1
- data/lib/fluent_command_builder/command_builders/cucumber_11.rb +5 -4
- data/lib/fluent_command_builder/command_builders/cucumber_12.rb +5 -4
- data/lib/fluent_command_builder/command_builders/dev_appserver_python.rb +2 -1
- data/lib/fluent_command_builder/command_builders/dev_appserver_python_16.rb +5 -4
- data/lib/fluent_command_builder/command_builders/dev_appserver_python_17.rb +5 -4
- data/lib/fluent_command_builder/command_builders/dotcover.rb +2 -1
- data/lib/fluent_command_builder/command_builders/dotcover_10.rb +5 -4
- data/lib/fluent_command_builder/command_builders/dotcover_11.rb +5 -4
- data/lib/fluent_command_builder/command_builders/dotcover_12.rb +5 -4
- data/lib/fluent_command_builder/command_builders/dotcover_20.rb +5 -4
- data/lib/fluent_command_builder/command_builders/fastlinkchecker.rb +2 -1
- data/lib/fluent_command_builder/command_builders/fastlinkchecker_21.rb +5 -4
- data/lib/fluent_command_builder/command_builders/installutil.rb +2 -1
- data/lib/fluent_command_builder/command_builders/installutil_11.rb +5 -4
- data/lib/fluent_command_builder/command_builders/installutil_20.rb +5 -4
- data/lib/fluent_command_builder/command_builders/installutil_35.rb +5 -4
- data/lib/fluent_command_builder/command_builders/installutil_40.rb +5 -4
- data/lib/fluent_command_builder/command_builders/msbuild.rb +2 -1
- data/lib/fluent_command_builder/command_builders/msbuild_20.rb +5 -4
- data/lib/fluent_command_builder/command_builders/msbuild_30.rb +5 -4
- data/lib/fluent_command_builder/command_builders/msbuild_35.rb +5 -4
- data/lib/fluent_command_builder/command_builders/msbuild_40.rb +5 -4
- data/lib/fluent_command_builder/command_builders/msdeploy.rb +2 -1
- data/lib/fluent_command_builder/command_builders/msdeploy_71.rb +5 -4
- data/lib/fluent_command_builder/command_builders/mstest.rb +2 -1
- data/lib/fluent_command_builder/command_builders/mstest_100.rb +5 -4
- data/lib/fluent_command_builder/command_builders/mstest_80.rb +5 -4
- data/lib/fluent_command_builder/command_builders/mstest_90.rb +5 -4
- data/lib/fluent_command_builder/command_builders/netsh.rb +2 -1
- data/lib/fluent_command_builder/command_builders/netsh_61.rb +5 -4
- data/lib/fluent_command_builder/command_builders/nuget.rb +2 -1
- data/lib/fluent_command_builder/command_builders/nuget_20.rb +5 -4
- data/lib/fluent_command_builder/command_builders/nunit.rb +2 -1
- data/lib/fluent_command_builder/command_builders/nunit_25.rb +5 -4
- data/lib/fluent_command_builder/command_builders/nunit_26.rb +5 -4
- data/lib/fluent_command_builder/command_builders/rake.rb +2 -1
- data/lib/fluent_command_builder/command_builders/rake_09.rb +5 -4
- data/lib/fluent_command_builder/command_builders/security_osx.rb +2 -1
- data/lib/fluent_command_builder/command_builders/security_osx_107.rb +5 -4
- data/lib/fluent_command_builder/command_builders/security_osx_108.rb +5 -4
- data/lib/fluent_command_builder/command_builders/sevenzip.rb +2 -1
- data/lib/fluent_command_builder/command_builders/sevenzip_920.rb +5 -4
- data/lib/fluent_command_builder/command_builders/simian.rb +2 -1
- data/lib/fluent_command_builder/command_builders/simian_23.rb +5 -4
- data/lib/fluent_command_builder/command_builders/team_foundation.rb +2 -1
- data/lib/fluent_command_builder/command_builders/team_foundation_100.rb +5 -4
- data/lib/fluent_command_builder/command_builders/team_foundation_tee.rb +2 -1
- data/lib/fluent_command_builder/command_builders/team_foundation_tee_100.rb +5 -4
- data/lib/fluent_command_builder/command_builders/team_foundation_tee_101.rb +5 -4
- data/lib/fluent_command_builder/command_builders/xcodebuild.rb +2 -1
- data/lib/fluent_command_builder/command_builders/xcodebuild_43.rb +5 -4
- data/lib/fluent_command_builder/command_builders/xcodebuild_44.rb +5 -4
- data/lib/fluent_command_builder/command_builders/xcodebuild_45.rb +331 -0
- data/lib/fluent_command_builder/execution_context.rb +2 -4
- data/lib/fluent_command_builder/{argument_formatter.rb → internal/argument_formatter.rb} +8 -6
- data/lib/fluent_command_builder/{command_base.rb → internal/command_base.rb} +0 -0
- data/lib/fluent_command_builder/internal/command_builder_config.rb +57 -0
- data/lib/fluent_command_builder/{path_finder.rb → internal/path_finder.rb} +19 -19
- data/lib/fluent_command_builder/{path_finders → internal/path_finders}/unix_path_finder.rb +12 -12
- data/lib/fluent_command_builder/{path_finders → internal/path_finders}/windows_path_finder.rb +13 -13
- data/lib/fluent_command_builder/internal/path_validator.rb +54 -0
- data/lib/fluent_command_builder/{printer.rb → internal/printer.rb} +5 -5
- data/lib/fluent_command_builder/{underlying_builder.rb → internal/underlying_builder.rb} +12 -6
- data/lib/fluent_command_builder/{version.rb → internal/version.rb} +12 -17
- data/lib/fluent_command_builder/internal/version_detectors.rb +1 -0
- data/lib/fluent_command_builder/{version_detectors → internal/version_detectors}/appengine_python_version_detector.rb +1 -0
- data/lib/fluent_command_builder/{version_detectors → internal/version_detectors}/default_version_detector.rb +1 -0
- data/lib/fluent_command_builder/{version_detectors → internal/version_detectors}/osx_version_detector.rb +0 -0
- data/lib/fluent_command_builder/{version_detectors → internal/version_detectors}/standard_version_detector.rb +9 -6
- data/lib/fluent_command_builder/{version_detectors → internal/version_detectors}/windows_version_detector.rb +0 -0
- data/lib/fluent_command_builder/{version_validator.rb → internal/version_validator.rb} +26 -23
- data/lib/fluent_command_builder/password_formatter.rb +22 -0
- metadata +25 -24
- data/lib/fluent_command_builder/command_builder_config.rb +0 -51
- data/lib/fluent_command_builder/command_formatters/hidden_password_formatter.rb +0 -17
- data/lib/fluent_command_builder/command_formatters/null_formatter.rb +0 -9
- data/lib/fluent_command_builder/path_validator.rb +0 -27
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/version_detectors')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
4
5
|
|
5
6
|
module FluentCommandBuilder
|
6
7
|
module InstallUtil
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module InstallUtil
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::InstallUtil.version_detector
|
13
13
|
def configure_installutil
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def installutil
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module InstallUtil
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::InstallUtil.version_detector
|
13
13
|
def configure_installutil
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def installutil
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module InstallUtil
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::InstallUtil.version_detector
|
13
13
|
def configure_installutil
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def installutil
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module InstallUtil
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::InstallUtil.version_detector
|
13
13
|
def configure_installutil
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def installutil
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/version_detectors')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
4
5
|
|
5
6
|
module FluentCommandBuilder
|
6
7
|
module MSBuild
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module MSBuild
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::MSBuild.version_detector
|
13
13
|
def configure_msbuild
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def msbuild(project_file=nil)
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module MSBuild
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::MSBuild.version_detector
|
13
13
|
def configure_msbuild
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def msbuild(project_file=nil)
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module MSBuild
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::MSBuild.version_detector
|
13
13
|
def configure_msbuild
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def msbuild(project_file=nil)
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module MSBuild
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::MSBuild.version_detector
|
13
13
|
def configure_msbuild
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def msbuild(project_file=nil)
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/version_detectors')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
4
5
|
|
5
6
|
module FluentCommandBuilder
|
6
7
|
module MSDeploy
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module MSDeploy
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::MSDeploy.version_detector
|
13
13
|
def configure_msdeploy
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def msdeploy
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/version_detectors')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
4
5
|
|
5
6
|
module FluentCommandBuilder
|
6
7
|
module MSTest
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module MSTest
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::MSTest.version_detector
|
13
13
|
def configure_mstest
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def mstest
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module MSTest
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::MSTest.version_detector
|
13
13
|
def configure_mstest
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def mstest
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module MSTest
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::MSTest.version_detector
|
13
13
|
def configure_mstest
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def mstest
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/version_detectors')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
4
5
|
|
5
6
|
module FluentCommandBuilder
|
6
7
|
module Netsh
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module Netsh
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::Netsh.version_detector
|
13
13
|
def configure_netsh
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def netsh
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/version_detectors')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
4
5
|
|
5
6
|
module FluentCommandBuilder
|
6
7
|
module NuGet
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module NuGet
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::NuGet.version_detector
|
13
13
|
def configure_nuget
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def nuget
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/version_detectors')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
4
5
|
|
5
6
|
module FluentCommandBuilder
|
6
7
|
module NUnit
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module NUnit
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::NUnit.version_detector
|
13
13
|
def configure_nunit
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def nunit(input_files=nil)
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module NUnit
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::NUnit.version_detector
|
13
13
|
def configure_nunit
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def nunit(input_files=nil)
|
18
19
|
b = UnderlyingBuilder.new @@config
|
@@ -1,6 +1,7 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/version_detectors')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
4
5
|
|
5
6
|
module FluentCommandBuilder
|
6
7
|
module Rake
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# Generated code. Do not modify.
|
2
2
|
|
3
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
4
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder_config')
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/../underlying_builder')
|
3
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_base')
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/command_builder_config')
|
5
|
+
require File.expand_path(File.dirname(__FILE__) + '/../internal/underlying_builder')
|
6
6
|
|
7
7
|
module FluentCommandBuilder
|
8
8
|
module Rake
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::Rake.version_detector
|
13
13
|
def configure_rake
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def rake(task=nil)
|
18
19
|
b = UnderlyingBuilder.new @@config
|