fluent_command_builder 0.5.6 → 0.6.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/command_version_detector.rb +1 -0
- data/lib/fluent_command_builder/command_base.rb +20 -11
- data/lib/fluent_command_builder/command_builders/appcfg_python.rb +17 -0
- data/lib/fluent_command_builder/command_builders/appcfg_python_16.rb +1059 -1059
- data/lib/fluent_command_builder/command_builders/appcfg_python_17.rb +1055 -1055
- data/lib/fluent_command_builder/command_builders/aspnet_compiler.rb +17 -0
- data/lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb +46 -46
- data/lib/fluent_command_builder/command_builders/aspnet_compiler_40.rb +46 -46
- data/lib/fluent_command_builder/command_builders/bundle.rb +17 -0
- data/lib/fluent_command_builder/command_builders/bundle_11.rb +140 -140
- data/lib/fluent_command_builder/command_builders/cucumber.rb +17 -0
- data/lib/fluent_command_builder/command_builders/cucumber_11.rb +76 -76
- data/lib/fluent_command_builder/command_builders/cucumber_12.rb +78 -78
- data/lib/fluent_command_builder/command_builders/dev_appserver_python.rb +17 -0
- data/lib/fluent_command_builder/command_builders/dev_appserver_python_16.rb +91 -86
- data/lib/fluent_command_builder/command_builders/dev_appserver_python_17.rb +91 -86
- data/lib/fluent_command_builder/command_builders/dotcover.rb +17 -0
- data/lib/fluent_command_builder/command_builders/dotcover_10.rb +33 -33
- data/lib/fluent_command_builder/command_builders/dotcover_11.rb +133 -133
- data/lib/fluent_command_builder/command_builders/dotcover_12.rb +133 -133
- data/lib/fluent_command_builder/command_builders/dotcover_20.rb +137 -137
- data/lib/fluent_command_builder/command_builders/installutil.rb +17 -0
- data/lib/fluent_command_builder/command_builders/installutil_11.rb +31 -31
- data/lib/fluent_command_builder/command_builders/installutil_20.rb +33 -33
- data/lib/fluent_command_builder/command_builders/installutil_35.rb +33 -33
- data/lib/fluent_command_builder/command_builders/installutil_40.rb +36 -36
- data/lib/fluent_command_builder/command_builders/msbuild.rb +17 -0
- data/lib/fluent_command_builder/command_builders/msbuild_20.rb +43 -43
- data/lib/fluent_command_builder/command_builders/msbuild_30.rb +43 -43
- data/lib/fluent_command_builder/command_builders/msbuild_35.rb +59 -59
- data/lib/fluent_command_builder/command_builders/msbuild_40.rb +62 -62
- data/lib/fluent_command_builder/command_builders/msdeploy.rb +17 -0
- data/lib/fluent_command_builder/command_builders/msdeploy_71.rb +177 -0
- data/lib/fluent_command_builder/command_builders/mstest.rb +17 -0
- data/lib/fluent_command_builder/command_builders/mstest_100.rb +127 -0
- data/lib/fluent_command_builder/command_builders/mstest_80.rb +107 -0
- data/lib/fluent_command_builder/command_builders/mstest_90.rb +112 -0
- data/lib/fluent_command_builder/command_builders/netsh.rb +17 -0
- data/lib/fluent_command_builder/command_builders/netsh_61.rb +408 -0
- data/lib/fluent_command_builder/command_builders/nunit.rb +17 -0
- data/lib/fluent_command_builder/command_builders/nunit_25.rb +69 -64
- data/lib/fluent_command_builder/command_builders/nunit_26.rb +85 -80
- data/lib/fluent_command_builder/command_builders/rake.rb +17 -0
- data/lib/fluent_command_builder/command_builders/rake_09.rb +64 -64
- data/lib/fluent_command_builder/command_builders/security_osx.rb +17 -0
- data/lib/fluent_command_builder/command_builders/security_osx_107.rb +82 -82
- data/lib/fluent_command_builder/command_builders/sevenzip.rb +17 -0
- data/lib/fluent_command_builder/command_builders/sevenzip_92.rb +243 -243
- data/lib/fluent_command_builder/command_builders/simian.rb +17 -0
- data/lib/fluent_command_builder/command_builders/simian_23.rb +63 -63
- data/lib/fluent_command_builder/command_builders/team_foundation.rb +17 -0
- data/lib/fluent_command_builder/command_builders/team_foundation_100.rb +2155 -0
- data/lib/fluent_command_builder/command_builders/team_foundation_tee.rb +17 -0
- data/lib/fluent_command_builder/command_builders/team_foundation_tee_100.rb +1978 -0
- data/lib/fluent_command_builder/command_builders/xcodebuild.rb +17 -0
- data/lib/fluent_command_builder/command_builders/xcodebuild_43.rb +112 -112
- data/lib/fluent_command_builder/command_builders/xcodebuild_44.rb +132 -132
- data/lib/fluent_command_builder/{command_builder.rb → underlying_builder.rb} +2 -2
- data/lib/fluent_command_builder/util.rb +18 -0
- data/lib/fluent_command_builder/version_detectors/appcfg_python.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/aspnet_compiler.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/bundle.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/cucumber.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/dev_appserver_python.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/dotcover.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/installutil.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/lib/appengine_python_version_detector.rb +16 -0
- data/lib/fluent_command_builder/version_detectors/lib/path_finder.rb +43 -0
- data/lib/fluent_command_builder/version_detectors/lib/standard_version_detector.rb +14 -0
- data/lib/fluent_command_builder/version_detectors/msbuild.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/msdeploy.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/mstest.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/nuget.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/nunit.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/rake.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/security_osx.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/sevenzip.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/team_foundation.rb +9 -0
- data/lib/fluent_command_builder/version_detectors/xcodebuild.rb +9 -0
- data/lib/fluent_command_builder.rb +26 -7
- metadata +53 -12
- data/lib/fluent_command_builder/command_builders/msdeploy_40.rb +0 -177
- data/lib/fluent_command_builder/command_builders/mstest_2005.rb +0 -107
- data/lib/fluent_command_builder/command_builders/mstest_2008.rb +0 -112
- data/lib/fluent_command_builder/command_builders/mstest_2010.rb +0 -127
- data/lib/fluent_command_builder/command_builders/netsh_2008.rb +0 -408
- data/lib/fluent_command_builder/command_builders/tf_2010.rb +0 -2155
- data/lib/fluent_command_builder/command_builders/tf_tee_2010.rb +0 -1978
|
@@ -1,36 +1,55 @@
|
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/appcfg_python.rb')
|
|
1
2
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/appcfg_python_16.rb')
|
|
2
3
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/appcfg_python_17.rb')
|
|
4
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/aspnet_compiler.rb')
|
|
3
5
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/aspnet_compiler_20.rb')
|
|
4
6
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/aspnet_compiler_40.rb')
|
|
7
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/bundle.rb')
|
|
5
8
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/bundle_11.rb')
|
|
9
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/cucumber.rb')
|
|
6
10
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/cucumber_11.rb')
|
|
7
11
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/cucumber_12.rb')
|
|
12
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dev_appserver_python.rb')
|
|
8
13
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dev_appserver_python_16.rb')
|
|
9
14
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dev_appserver_python_17.rb')
|
|
15
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover.rb')
|
|
10
16
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover_10.rb')
|
|
11
17
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover_11.rb')
|
|
12
18
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover_12.rb')
|
|
13
19
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/dotcover_20.rb')
|
|
20
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil.rb')
|
|
14
21
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil_11.rb')
|
|
15
22
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil_20.rb')
|
|
16
23
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil_35.rb')
|
|
17
24
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/installutil_40.rb')
|
|
25
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild.rb')
|
|
18
26
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild_20.rb')
|
|
19
27
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild_30.rb')
|
|
20
28
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild_35.rb')
|
|
21
29
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msbuild_40.rb')
|
|
22
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/
|
|
23
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/
|
|
24
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/
|
|
25
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/
|
|
26
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/
|
|
30
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msdeploy.rb')
|
|
31
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/msdeploy_71.rb')
|
|
32
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/mstest.rb')
|
|
33
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/mstest_100.rb')
|
|
34
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/mstest_80.rb')
|
|
35
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/mstest_90.rb')
|
|
36
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/netsh.rb')
|
|
37
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/netsh_61.rb')
|
|
38
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/nunit.rb')
|
|
27
39
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/nunit_25.rb')
|
|
28
40
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/nunit_26.rb')
|
|
41
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/rake.rb')
|
|
29
42
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/rake_09.rb')
|
|
43
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/security_osx.rb')
|
|
30
44
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/security_osx_107.rb')
|
|
45
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/sevenzip.rb')
|
|
31
46
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/sevenzip_92.rb')
|
|
47
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/simian.rb')
|
|
32
48
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/simian_23.rb')
|
|
33
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/
|
|
34
|
-
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/
|
|
49
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/team_foundation.rb')
|
|
50
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/team_foundation_100.rb')
|
|
51
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/team_foundation_tee.rb')
|
|
52
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/team_foundation_tee_100.rb')
|
|
53
|
+
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/xcodebuild.rb')
|
|
35
54
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/xcodebuild_43.rb')
|
|
36
55
|
require File.expand_path(File.dirname(__FILE__) + '/fluent_command_builder/command_builders/xcodebuild_44.rb')
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent_command_builder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.6.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-08-
|
|
12
|
+
date: 2012-08-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
16
|
-
requirement: &
|
|
16
|
+
requirement: &70213346205840 !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,51 +21,92 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements: *
|
|
24
|
+
version_requirements: *70213346205840
|
|
25
25
|
description: Fluent Command Builder makes building command lines easy and intuitive.
|
|
26
26
|
email: matthew-github@matthewriley.name
|
|
27
27
|
executables: []
|
|
28
28
|
extensions: []
|
|
29
29
|
extra_rdoc_files: []
|
|
30
30
|
files:
|
|
31
|
+
- lib/command_version_detector.rb
|
|
31
32
|
- lib/fluent_command_builder/command_base.rb
|
|
32
|
-
- lib/fluent_command_builder/
|
|
33
|
+
- lib/fluent_command_builder/command_builders/appcfg_python.rb
|
|
33
34
|
- lib/fluent_command_builder/command_builders/appcfg_python_16.rb
|
|
34
35
|
- lib/fluent_command_builder/command_builders/appcfg_python_17.rb
|
|
36
|
+
- lib/fluent_command_builder/command_builders/aspnet_compiler.rb
|
|
35
37
|
- lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb
|
|
36
38
|
- lib/fluent_command_builder/command_builders/aspnet_compiler_40.rb
|
|
39
|
+
- lib/fluent_command_builder/command_builders/bundle.rb
|
|
37
40
|
- lib/fluent_command_builder/command_builders/bundle_11.rb
|
|
41
|
+
- lib/fluent_command_builder/command_builders/cucumber.rb
|
|
38
42
|
- lib/fluent_command_builder/command_builders/cucumber_11.rb
|
|
39
43
|
- lib/fluent_command_builder/command_builders/cucumber_12.rb
|
|
44
|
+
- lib/fluent_command_builder/command_builders/dev_appserver_python.rb
|
|
40
45
|
- lib/fluent_command_builder/command_builders/dev_appserver_python_16.rb
|
|
41
46
|
- lib/fluent_command_builder/command_builders/dev_appserver_python_17.rb
|
|
47
|
+
- lib/fluent_command_builder/command_builders/dotcover.rb
|
|
42
48
|
- lib/fluent_command_builder/command_builders/dotcover_10.rb
|
|
43
49
|
- lib/fluent_command_builder/command_builders/dotcover_11.rb
|
|
44
50
|
- lib/fluent_command_builder/command_builders/dotcover_12.rb
|
|
45
51
|
- lib/fluent_command_builder/command_builders/dotcover_20.rb
|
|
52
|
+
- lib/fluent_command_builder/command_builders/installutil.rb
|
|
46
53
|
- lib/fluent_command_builder/command_builders/installutil_11.rb
|
|
47
54
|
- lib/fluent_command_builder/command_builders/installutil_20.rb
|
|
48
55
|
- lib/fluent_command_builder/command_builders/installutil_35.rb
|
|
49
56
|
- lib/fluent_command_builder/command_builders/installutil_40.rb
|
|
57
|
+
- lib/fluent_command_builder/command_builders/msbuild.rb
|
|
50
58
|
- lib/fluent_command_builder/command_builders/msbuild_20.rb
|
|
51
59
|
- lib/fluent_command_builder/command_builders/msbuild_30.rb
|
|
52
60
|
- lib/fluent_command_builder/command_builders/msbuild_35.rb
|
|
53
61
|
- lib/fluent_command_builder/command_builders/msbuild_40.rb
|
|
54
|
-
- lib/fluent_command_builder/command_builders/
|
|
55
|
-
- lib/fluent_command_builder/command_builders/
|
|
56
|
-
- lib/fluent_command_builder/command_builders/
|
|
57
|
-
- lib/fluent_command_builder/command_builders/
|
|
58
|
-
- lib/fluent_command_builder/command_builders/
|
|
62
|
+
- lib/fluent_command_builder/command_builders/msdeploy.rb
|
|
63
|
+
- lib/fluent_command_builder/command_builders/msdeploy_71.rb
|
|
64
|
+
- lib/fluent_command_builder/command_builders/mstest.rb
|
|
65
|
+
- lib/fluent_command_builder/command_builders/mstest_100.rb
|
|
66
|
+
- lib/fluent_command_builder/command_builders/mstest_80.rb
|
|
67
|
+
- lib/fluent_command_builder/command_builders/mstest_90.rb
|
|
68
|
+
- lib/fluent_command_builder/command_builders/netsh.rb
|
|
69
|
+
- lib/fluent_command_builder/command_builders/netsh_61.rb
|
|
70
|
+
- lib/fluent_command_builder/command_builders/nunit.rb
|
|
59
71
|
- lib/fluent_command_builder/command_builders/nunit_25.rb
|
|
60
72
|
- lib/fluent_command_builder/command_builders/nunit_26.rb
|
|
73
|
+
- lib/fluent_command_builder/command_builders/rake.rb
|
|
61
74
|
- lib/fluent_command_builder/command_builders/rake_09.rb
|
|
75
|
+
- lib/fluent_command_builder/command_builders/security_osx.rb
|
|
62
76
|
- lib/fluent_command_builder/command_builders/security_osx_107.rb
|
|
77
|
+
- lib/fluent_command_builder/command_builders/sevenzip.rb
|
|
63
78
|
- lib/fluent_command_builder/command_builders/sevenzip_92.rb
|
|
79
|
+
- lib/fluent_command_builder/command_builders/simian.rb
|
|
64
80
|
- lib/fluent_command_builder/command_builders/simian_23.rb
|
|
65
|
-
- lib/fluent_command_builder/command_builders/
|
|
66
|
-
- lib/fluent_command_builder/command_builders/
|
|
81
|
+
- lib/fluent_command_builder/command_builders/team_foundation.rb
|
|
82
|
+
- lib/fluent_command_builder/command_builders/team_foundation_100.rb
|
|
83
|
+
- lib/fluent_command_builder/command_builders/team_foundation_tee.rb
|
|
84
|
+
- lib/fluent_command_builder/command_builders/team_foundation_tee_100.rb
|
|
85
|
+
- lib/fluent_command_builder/command_builders/xcodebuild.rb
|
|
67
86
|
- lib/fluent_command_builder/command_builders/xcodebuild_43.rb
|
|
68
87
|
- lib/fluent_command_builder/command_builders/xcodebuild_44.rb
|
|
88
|
+
- lib/fluent_command_builder/underlying_builder.rb
|
|
89
|
+
- lib/fluent_command_builder/util.rb
|
|
90
|
+
- lib/fluent_command_builder/version_detectors/appcfg_python.rb
|
|
91
|
+
- lib/fluent_command_builder/version_detectors/aspnet_compiler.rb
|
|
92
|
+
- lib/fluent_command_builder/version_detectors/bundle.rb
|
|
93
|
+
- lib/fluent_command_builder/version_detectors/cucumber.rb
|
|
94
|
+
- lib/fluent_command_builder/version_detectors/dev_appserver_python.rb
|
|
95
|
+
- lib/fluent_command_builder/version_detectors/dotcover.rb
|
|
96
|
+
- lib/fluent_command_builder/version_detectors/installutil.rb
|
|
97
|
+
- lib/fluent_command_builder/version_detectors/lib/appengine_python_version_detector.rb
|
|
98
|
+
- lib/fluent_command_builder/version_detectors/lib/path_finder.rb
|
|
99
|
+
- lib/fluent_command_builder/version_detectors/lib/standard_version_detector.rb
|
|
100
|
+
- lib/fluent_command_builder/version_detectors/msbuild.rb
|
|
101
|
+
- lib/fluent_command_builder/version_detectors/msdeploy.rb
|
|
102
|
+
- lib/fluent_command_builder/version_detectors/mstest.rb
|
|
103
|
+
- lib/fluent_command_builder/version_detectors/nuget.rb
|
|
104
|
+
- lib/fluent_command_builder/version_detectors/nunit.rb
|
|
105
|
+
- lib/fluent_command_builder/version_detectors/rake.rb
|
|
106
|
+
- lib/fluent_command_builder/version_detectors/security_osx.rb
|
|
107
|
+
- lib/fluent_command_builder/version_detectors/sevenzip.rb
|
|
108
|
+
- lib/fluent_command_builder/version_detectors/team_foundation.rb
|
|
109
|
+
- lib/fluent_command_builder/version_detectors/xcodebuild.rb
|
|
69
110
|
- lib/fluent_command_builder.rb
|
|
70
111
|
homepage: http://rubygems.org/gems/fluent_command_builder
|
|
71
112
|
licenses: []
|
|
@@ -1,177 +0,0 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder')
|
|
3
|
-
|
|
4
|
-
module FluentCommandBuilder
|
|
5
|
-
module MSDeploy
|
|
6
|
-
module V40
|
|
7
|
-
COMMAND_NAME = 'MSDeploy'
|
|
8
|
-
class MSDeploy < CommandBase
|
|
9
|
-
def initialize(builder)
|
|
10
|
-
super builder
|
|
11
|
-
end
|
|
12
|
-
def allow_untrusted(bool)
|
|
13
|
-
@builder.append " -allowUntrusted:#{@builder.format bool}"
|
|
14
|
-
yield @builder if block_given?
|
|
15
|
-
self
|
|
16
|
-
end
|
|
17
|
-
def app_host_config_dir(path)
|
|
18
|
-
@builder.append " -appHostConfigDir:#{@builder.format path}"
|
|
19
|
-
yield @builder if block_given?
|
|
20
|
-
self
|
|
21
|
-
end
|
|
22
|
-
def declare_param(param)
|
|
23
|
-
@builder.append " -declareParam:#{@builder.format param, ',', '='}"
|
|
24
|
-
yield @builder if block_given?
|
|
25
|
-
self
|
|
26
|
-
end
|
|
27
|
-
def declare_param_file(xml_file)
|
|
28
|
-
@builder.append " -declareParamFile:#{@builder.format xml_file}"
|
|
29
|
-
yield @builder if block_given?
|
|
30
|
-
self
|
|
31
|
-
end
|
|
32
|
-
def dest(provider)
|
|
33
|
-
@builder.append " -dest:#{@builder.format provider}"
|
|
34
|
-
yield @builder if block_given?
|
|
35
|
-
self
|
|
36
|
-
end
|
|
37
|
-
def disable_link(link_extension)
|
|
38
|
-
@builder.append " -disableLink:#{@builder.format link_extension}"
|
|
39
|
-
yield @builder if block_given?
|
|
40
|
-
self
|
|
41
|
-
end
|
|
42
|
-
def disable_rule(rule)
|
|
43
|
-
@builder.append " -disableRule:#{@builder.format rule, ','}"
|
|
44
|
-
yield @builder if block_given?
|
|
45
|
-
self
|
|
46
|
-
end
|
|
47
|
-
def disable_skip_directive(skip_directive_name)
|
|
48
|
-
@builder.append " -disableSkipDirective:#{@builder.format skip_directive_name}"
|
|
49
|
-
yield @builder if block_given?
|
|
50
|
-
self
|
|
51
|
-
end
|
|
52
|
-
def enable_link(link_extension)
|
|
53
|
-
@builder.append " -enableLink:#{@builder.format link_extension}"
|
|
54
|
-
yield @builder if block_given?
|
|
55
|
-
self
|
|
56
|
-
end
|
|
57
|
-
def enable_rule(rule)
|
|
58
|
-
@builder.append " -enableRule:#{@builder.format rule, ','}"
|
|
59
|
-
yield @builder if block_given?
|
|
60
|
-
self
|
|
61
|
-
end
|
|
62
|
-
def enable_skip_directive(skip_directive_name)
|
|
63
|
-
@builder.append " -enableSkipDirective:#{@builder.format skip_directive_name}"
|
|
64
|
-
yield @builder if block_given?
|
|
65
|
-
self
|
|
66
|
-
end
|
|
67
|
-
def post_sync(command)
|
|
68
|
-
@builder.append " -postSync:#{@builder.format command}"
|
|
69
|
-
yield @builder if block_given?
|
|
70
|
-
self
|
|
71
|
-
end
|
|
72
|
-
def pre_sync(command)
|
|
73
|
-
@builder.append " -preSync:#{@builder.format command}"
|
|
74
|
-
yield @builder if block_given?
|
|
75
|
-
self
|
|
76
|
-
end
|
|
77
|
-
def remove_param(param)
|
|
78
|
-
@builder.append " -removeParam:#{@builder.format param}"
|
|
79
|
-
yield @builder if block_given?
|
|
80
|
-
self
|
|
81
|
-
end
|
|
82
|
-
def replace(arg)
|
|
83
|
-
@builder.append " -replace:#{@builder.format arg}"
|
|
84
|
-
yield @builder if block_given?
|
|
85
|
-
self
|
|
86
|
-
end
|
|
87
|
-
def retry_attempts(number)
|
|
88
|
-
@builder.append " -retryAttempts:#{@builder.format number}"
|
|
89
|
-
yield @builder if block_given?
|
|
90
|
-
self
|
|
91
|
-
end
|
|
92
|
-
def retry_interval(milliseconds)
|
|
93
|
-
@builder.append " -retryInterval:#{@builder.format milliseconds}"
|
|
94
|
-
yield @builder if block_given?
|
|
95
|
-
self
|
|
96
|
-
end
|
|
97
|
-
def set_param(param)
|
|
98
|
-
@builder.append " -setParam:#{@builder.format param, ',', '='}"
|
|
99
|
-
yield @builder if block_given?
|
|
100
|
-
self
|
|
101
|
-
end
|
|
102
|
-
def set_param_file(xml_file)
|
|
103
|
-
@builder.append " -setParamFile:#{@builder.format xml_file}"
|
|
104
|
-
yield @builder if block_given?
|
|
105
|
-
self
|
|
106
|
-
end
|
|
107
|
-
def show_secure
|
|
108
|
-
@builder.append ' -showSecure'
|
|
109
|
-
yield @builder if block_given?
|
|
110
|
-
self
|
|
111
|
-
end
|
|
112
|
-
def skip(arg)
|
|
113
|
-
@builder.append " -skip:#{@builder.format arg}"
|
|
114
|
-
yield @builder if block_given?
|
|
115
|
-
self
|
|
116
|
-
end
|
|
117
|
-
def source(provider)
|
|
118
|
-
@builder.append " -source:#{@builder.format provider}"
|
|
119
|
-
yield @builder if block_given?
|
|
120
|
-
self
|
|
121
|
-
end
|
|
122
|
-
def unicode
|
|
123
|
-
@builder.append ' -unicode'
|
|
124
|
-
yield @builder if block_given?
|
|
125
|
-
self
|
|
126
|
-
end
|
|
127
|
-
def use_check_sum
|
|
128
|
-
@builder.append ' -useCheckSum'
|
|
129
|
-
yield @builder if block_given?
|
|
130
|
-
self
|
|
131
|
-
end
|
|
132
|
-
def verb(verb_name)
|
|
133
|
-
@builder.append " -verb:#{@builder.format verb_name}"
|
|
134
|
-
yield @builder if block_given?
|
|
135
|
-
self
|
|
136
|
-
end
|
|
137
|
-
def verbose
|
|
138
|
-
@builder.append ' -verbose'
|
|
139
|
-
yield @builder if block_given?
|
|
140
|
-
self
|
|
141
|
-
end
|
|
142
|
-
def web_server_dir(path)
|
|
143
|
-
@builder.append " -webServerDir:#{@builder.format path}"
|
|
144
|
-
yield @builder if block_given?
|
|
145
|
-
self
|
|
146
|
-
end
|
|
147
|
-
def whatif
|
|
148
|
-
@builder.append ' -whatif'
|
|
149
|
-
yield @builder if block_given?
|
|
150
|
-
self
|
|
151
|
-
end
|
|
152
|
-
def xml
|
|
153
|
-
@builder.append ' -xml'
|
|
154
|
-
yield @builder if block_given?
|
|
155
|
-
self
|
|
156
|
-
end
|
|
157
|
-
def xpath(path)
|
|
158
|
-
@builder.append " -xpath:#{@builder.format path}"
|
|
159
|
-
yield @builder if block_given?
|
|
160
|
-
self
|
|
161
|
-
end
|
|
162
|
-
end
|
|
163
|
-
def msdeploy
|
|
164
|
-
builder = CommandBuilder.new COMMAND_NAME
|
|
165
|
-
command = MSDeploy.new builder
|
|
166
|
-
yield builder if block_given?
|
|
167
|
-
command
|
|
168
|
-
end
|
|
169
|
-
end
|
|
170
|
-
end
|
|
171
|
-
def msdeploy_40
|
|
172
|
-
builder = CommandBuilder.new MSDeploy::V40::COMMAND_NAME
|
|
173
|
-
command = MSDeploy::V40::MSDeploy.new builder
|
|
174
|
-
yield builder if block_given?
|
|
175
|
-
command
|
|
176
|
-
end
|
|
177
|
-
end
|
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder')
|
|
3
|
-
|
|
4
|
-
module FluentCommandBuilder
|
|
5
|
-
module MSTest
|
|
6
|
-
module V2005
|
|
7
|
-
COMMAND_NAME = 'MSTest'
|
|
8
|
-
class MSTest < CommandBase
|
|
9
|
-
def initialize(builder)
|
|
10
|
-
super builder
|
|
11
|
-
end
|
|
12
|
-
def test_container(file_name)
|
|
13
|
-
@builder.append " /testContainer:#{@builder.format file_name}"
|
|
14
|
-
yield @builder if block_given?
|
|
15
|
-
self
|
|
16
|
-
end
|
|
17
|
-
def test_metadata(file_name)
|
|
18
|
-
@builder.append " /testMetadata:#{@builder.format file_name}"
|
|
19
|
-
yield @builder if block_given?
|
|
20
|
-
self
|
|
21
|
-
end
|
|
22
|
-
def test_list(list_list_path)
|
|
23
|
-
@builder.append " /testList:#{@builder.format list_list_path}"
|
|
24
|
-
yield @builder if block_given?
|
|
25
|
-
self
|
|
26
|
-
end
|
|
27
|
-
def test(test_name)
|
|
28
|
-
@builder.append " /test:#{@builder.format test_name}"
|
|
29
|
-
yield @builder if block_given?
|
|
30
|
-
self
|
|
31
|
-
end
|
|
32
|
-
def run_config(file_name)
|
|
33
|
-
@builder.append " /runConfig:#{@builder.format file_name}"
|
|
34
|
-
yield @builder if block_given?
|
|
35
|
-
self
|
|
36
|
-
end
|
|
37
|
-
def results_file(file_name)
|
|
38
|
-
@builder.append " /resultsFile:#{@builder.format file_name}"
|
|
39
|
-
yield @builder if block_given?
|
|
40
|
-
self
|
|
41
|
-
end
|
|
42
|
-
def unique
|
|
43
|
-
@builder.append ' /unique'
|
|
44
|
-
yield @builder if block_given?
|
|
45
|
-
self
|
|
46
|
-
end
|
|
47
|
-
def detail(property_id)
|
|
48
|
-
@builder.append " /detail:#{@builder.format property_id}"
|
|
49
|
-
yield @builder if block_given?
|
|
50
|
-
self
|
|
51
|
-
end
|
|
52
|
-
def help
|
|
53
|
-
@builder.append ' /help'
|
|
54
|
-
yield @builder if block_given?
|
|
55
|
-
self
|
|
56
|
-
end
|
|
57
|
-
def no_logo
|
|
58
|
-
@builder.append ' /noLogo'
|
|
59
|
-
yield @builder if block_given?
|
|
60
|
-
self
|
|
61
|
-
end
|
|
62
|
-
def publish(server_name)
|
|
63
|
-
@builder.append " /publish:#{@builder.format server_name}"
|
|
64
|
-
yield @builder if block_given?
|
|
65
|
-
self
|
|
66
|
-
end
|
|
67
|
-
def publish_results_file(file_name)
|
|
68
|
-
@builder.append " /publishResultsFile:#{@builder.format file_name}"
|
|
69
|
-
yield @builder if block_given?
|
|
70
|
-
self
|
|
71
|
-
end
|
|
72
|
-
def publish_build(build_id)
|
|
73
|
-
@builder.append " /publishBuild:#{@builder.format build_id}"
|
|
74
|
-
yield @builder if block_given?
|
|
75
|
-
self
|
|
76
|
-
end
|
|
77
|
-
def team_project(team_project_name)
|
|
78
|
-
@builder.append " /teamProject:#{@builder.format team_project_name}"
|
|
79
|
-
yield @builder if block_given?
|
|
80
|
-
self
|
|
81
|
-
end
|
|
82
|
-
def platform(platform)
|
|
83
|
-
@builder.append " /platform:#{@builder.format platform}"
|
|
84
|
-
yield @builder if block_given?
|
|
85
|
-
self
|
|
86
|
-
end
|
|
87
|
-
def flavor(flavor)
|
|
88
|
-
@builder.append " /flavor:#{@builder.format flavor}"
|
|
89
|
-
yield @builder if block_given?
|
|
90
|
-
self
|
|
91
|
-
end
|
|
92
|
-
end
|
|
93
|
-
def mstest
|
|
94
|
-
builder = CommandBuilder.new COMMAND_NAME
|
|
95
|
-
command = MSTest.new builder
|
|
96
|
-
yield builder if block_given?
|
|
97
|
-
command
|
|
98
|
-
end
|
|
99
|
-
end
|
|
100
|
-
end
|
|
101
|
-
def mstest_2005
|
|
102
|
-
builder = CommandBuilder.new MSTest::V2005::COMMAND_NAME
|
|
103
|
-
command = MSTest::V2005::MSTest.new builder
|
|
104
|
-
yield builder if block_given?
|
|
105
|
-
command
|
|
106
|
-
end
|
|
107
|
-
end
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_base')
|
|
2
|
-
require File.expand_path(File.dirname(__FILE__) + '/../command_builder')
|
|
3
|
-
|
|
4
|
-
module FluentCommandBuilder
|
|
5
|
-
module MSTest
|
|
6
|
-
module V2008
|
|
7
|
-
COMMAND_NAME = 'MSTest'
|
|
8
|
-
class MSTest < CommandBase
|
|
9
|
-
def initialize(builder)
|
|
10
|
-
super builder
|
|
11
|
-
end
|
|
12
|
-
def test_container(file_name)
|
|
13
|
-
@builder.append " /testContainer:#{@builder.format file_name}"
|
|
14
|
-
yield @builder if block_given?
|
|
15
|
-
self
|
|
16
|
-
end
|
|
17
|
-
def test_metadata(file_name)
|
|
18
|
-
@builder.append " /testMetadata:#{@builder.format file_name}"
|
|
19
|
-
yield @builder if block_given?
|
|
20
|
-
self
|
|
21
|
-
end
|
|
22
|
-
def test_list(list_list_path)
|
|
23
|
-
@builder.append " /testList:#{@builder.format list_list_path}"
|
|
24
|
-
yield @builder if block_given?
|
|
25
|
-
self
|
|
26
|
-
end
|
|
27
|
-
def test(test_name)
|
|
28
|
-
@builder.append " /test:#{@builder.format test_name}"
|
|
29
|
-
yield @builder if block_given?
|
|
30
|
-
self
|
|
31
|
-
end
|
|
32
|
-
def no_isolation
|
|
33
|
-
@builder.append ' /noIsolation'
|
|
34
|
-
yield @builder if block_given?
|
|
35
|
-
self
|
|
36
|
-
end
|
|
37
|
-
def run_config(file_name)
|
|
38
|
-
@builder.append " /runConfig:#{@builder.format file_name}"
|
|
39
|
-
yield @builder if block_given?
|
|
40
|
-
self
|
|
41
|
-
end
|
|
42
|
-
def results_file(file_name)
|
|
43
|
-
@builder.append " /resultsFile:#{@builder.format file_name}"
|
|
44
|
-
yield @builder if block_given?
|
|
45
|
-
self
|
|
46
|
-
end
|
|
47
|
-
def unique
|
|
48
|
-
@builder.append ' /unique'
|
|
49
|
-
yield @builder if block_given?
|
|
50
|
-
self
|
|
51
|
-
end
|
|
52
|
-
def detail(property_id)
|
|
53
|
-
@builder.append " /detail:#{@builder.format property_id}"
|
|
54
|
-
yield @builder if block_given?
|
|
55
|
-
self
|
|
56
|
-
end
|
|
57
|
-
def help
|
|
58
|
-
@builder.append ' /help'
|
|
59
|
-
yield @builder if block_given?
|
|
60
|
-
self
|
|
61
|
-
end
|
|
62
|
-
def no_logo
|
|
63
|
-
@builder.append ' /noLogo'
|
|
64
|
-
yield @builder if block_given?
|
|
65
|
-
self
|
|
66
|
-
end
|
|
67
|
-
def publish(server_name)
|
|
68
|
-
@builder.append " /publish:#{@builder.format server_name}"
|
|
69
|
-
yield @builder if block_given?
|
|
70
|
-
self
|
|
71
|
-
end
|
|
72
|
-
def publish_results_file(file_name)
|
|
73
|
-
@builder.append " /publishResultsFile:#{@builder.format file_name}"
|
|
74
|
-
yield @builder if block_given?
|
|
75
|
-
self
|
|
76
|
-
end
|
|
77
|
-
def publish_build(build_id)
|
|
78
|
-
@builder.append " /publishBuild:#{@builder.format build_id}"
|
|
79
|
-
yield @builder if block_given?
|
|
80
|
-
self
|
|
81
|
-
end
|
|
82
|
-
def team_project(team_project_name)
|
|
83
|
-
@builder.append " /teamProject:#{@builder.format team_project_name}"
|
|
84
|
-
yield @builder if block_given?
|
|
85
|
-
self
|
|
86
|
-
end
|
|
87
|
-
def platform(platform)
|
|
88
|
-
@builder.append " /platform:#{@builder.format platform}"
|
|
89
|
-
yield @builder if block_given?
|
|
90
|
-
self
|
|
91
|
-
end
|
|
92
|
-
def flavor(flavor)
|
|
93
|
-
@builder.append " /flavor:#{@builder.format flavor}"
|
|
94
|
-
yield @builder if block_given?
|
|
95
|
-
self
|
|
96
|
-
end
|
|
97
|
-
end
|
|
98
|
-
def mstest
|
|
99
|
-
builder = CommandBuilder.new COMMAND_NAME
|
|
100
|
-
command = MSTest.new builder
|
|
101
|
-
yield builder if block_given?
|
|
102
|
-
command
|
|
103
|
-
end
|
|
104
|
-
end
|
|
105
|
-
end
|
|
106
|
-
def mstest_2008
|
|
107
|
-
builder = CommandBuilder.new MSTest::V2008::COMMAND_NAME
|
|
108
|
-
command = MSTest::V2008::MSTest.new builder
|
|
109
|
-
yield builder if block_given?
|
|
110
|
-
command
|
|
111
|
-
end
|
|
112
|
-
end
|