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,66 +1,3 @@
|
|
1
|
-
|
2
|
-
Dir[File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/version_detectors/*.rb')].each { |f| require f }
|
1
|
+
Dir[File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/*.rb')].each { |f| require f }
|
3
2
|
Dir[File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_executors/*.rb')].each { |f| require f }
|
4
|
-
Dir[File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/
|
5
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/path_finder')
|
6
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/appcfg_python.rb')
|
7
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/appcfg_python_16.rb')
|
8
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/appcfg_python_17.rb')
|
9
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/aspnet_compiler.rb')
|
10
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/aspnet_compiler_20.rb')
|
11
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/aspnet_compiler_40.rb')
|
12
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/bundle.rb')
|
13
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/bundle_11.rb')
|
14
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/cucumber.rb')
|
15
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/cucumber_11.rb')
|
16
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/cucumber_12.rb')
|
17
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dev_appserver_python.rb')
|
18
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dev_appserver_python_16.rb')
|
19
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dev_appserver_python_17.rb')
|
20
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover.rb')
|
21
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover_10.rb')
|
22
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover_11.rb')
|
23
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover_12.rb')
|
24
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover_20.rb')
|
25
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/fastlinkchecker.rb')
|
26
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/fastlinkchecker_21.rb')
|
27
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil.rb')
|
28
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil_11.rb')
|
29
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil_20.rb')
|
30
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil_35.rb')
|
31
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil_40.rb')
|
32
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild.rb')
|
33
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild_20.rb')
|
34
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild_30.rb')
|
35
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild_35.rb')
|
36
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild_40.rb')
|
37
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msdeploy.rb')
|
38
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msdeploy_71.rb')
|
39
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/mstest.rb')
|
40
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/mstest_100.rb')
|
41
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/mstest_80.rb')
|
42
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/mstest_90.rb')
|
43
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/netsh.rb')
|
44
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/netsh_61.rb')
|
45
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/nuget.rb')
|
46
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/nuget_20.rb')
|
47
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/nunit.rb')
|
48
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/nunit_25.rb')
|
49
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/nunit_26.rb')
|
50
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/rake.rb')
|
51
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/rake_09.rb')
|
52
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/security_osx.rb')
|
53
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/security_osx_107.rb')
|
54
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/security_osx_108.rb')
|
55
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/sevenzip.rb')
|
56
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/sevenzip_920.rb')
|
57
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/simian.rb')
|
58
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/simian_23.rb')
|
59
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/team_foundation.rb')
|
60
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/team_foundation_100.rb')
|
61
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/team_foundation_tee.rb')
|
62
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/team_foundation_tee_100.rb')
|
63
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/team_foundation_tee_101.rb')
|
64
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/xcodebuild.rb')
|
65
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/xcodebuild_43.rb')
|
66
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/xcodebuild_44.rb')
|
3
|
+
Dir[File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/*.rb')].each { |f| require f }
|
@@ -1,5 +1,5 @@
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/command_builder_config')
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + '/underlying_builder')
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/internal/command_builder_config')
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + '/internal/underlying_builder')
|
3
3
|
|
4
4
|
module FluentCommandBuilder
|
5
5
|
class CommandBuilder < UnderlyingBuilder
|
@@ -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 AppCfgPython
|
@@ -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 AppCfgPython
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::AppCfgPython.version_detector
|
13
13
|
def configure_appcfg_python
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def appcfg_python
|
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 AppCfgPython
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::AppCfgPython.version_detector
|
13
13
|
def configure_appcfg_python
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def appcfg_python
|
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 AspnetCompiler
|
@@ -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 AspnetCompiler
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::AspnetCompiler.version_detector
|
13
13
|
def configure_aspnet_compiler
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def aspnet_compiler(target_dir=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 AspnetCompiler
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::AspnetCompiler.version_detector
|
13
13
|
def configure_aspnet_compiler
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def aspnet_compiler(target_dir=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 Bundle
|
@@ -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 Bundle
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::Bundle.version_detector
|
13
13
|
def configure_bundle
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def bundle
|
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 Cucumber
|
@@ -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 Cucumber
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::Cucumber.version_detector
|
13
13
|
def configure_cucumber
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def cucumber(feature=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 Cucumber
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::Cucumber.version_detector
|
13
13
|
def configure_cucumber
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def cucumber(feature=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 DevAppserverPython
|
@@ -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 DevAppserverPython
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::DevAppserverPython.version_detector
|
13
13
|
def configure_dev_appserver_python
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def dev_appserver_python(application_root=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 DevAppserverPython
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::DevAppserverPython.version_detector
|
13
13
|
def configure_dev_appserver_python
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def dev_appserver_python(application_root=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 DotCover
|
@@ -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 DotCover
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::DotCover.version_detector
|
13
13
|
def configure_dotcover
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def dotcover
|
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 DotCover
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::DotCover.version_detector
|
13
13
|
def configure_dotcover
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def dotcover
|
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 DotCover
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::DotCover.version_detector
|
13
13
|
def configure_dotcover
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def dotcover
|
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 DotCover
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::DotCover.version_detector
|
13
13
|
def configure_dotcover
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def dotcover
|
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 FastLinkChecker
|
@@ -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 FastLinkChecker
|
@@ -12,7 +12,8 @@ module FluentCommandBuilder
|
|
12
12
|
@@config.version_detector = FluentCommandBuilder::FastLinkChecker.version_detector
|
13
13
|
def configure_fastlinkchecker
|
14
14
|
yield @@config
|
15
|
-
@@config.validate_path
|
15
|
+
@@config.validate_path
|
16
|
+
@@config.validate_version
|
16
17
|
end
|
17
18
|
def fastlinkchecker
|
18
19
|
b = UnderlyingBuilder.new @@config
|