fluent_command_builder 0.1.5 → 0.1.6

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.
Files changed (28) hide show
  1. data/lib/fluent_command_builder.rb +2 -1
  2. data/lib/fluent_command_builder/command_builder.rb +1 -1
  3. data/lib/fluent_command_builder/command_builders/aspnet_compiler_20.rb +31 -58
  4. data/lib/fluent_command_builder/command_builders/aspnet_compiler_35.rb +31 -58
  5. data/lib/fluent_command_builder/command_builders/aspnet_compiler_40.rb +31 -58
  6. data/lib/fluent_command_builder/command_builders/cucumber_11.rb +38 -76
  7. data/lib/fluent_command_builder/command_builders/dotcover_11.rb +81 -155
  8. data/lib/fluent_command_builder/command_builders/installutil_11.rb +18 -35
  9. data/lib/fluent_command_builder/command_builders/installutil_20.rb +21 -38
  10. data/lib/fluent_command_builder/command_builders/installutil_35.rb +21 -38
  11. data/lib/fluent_command_builder/command_builders/installutil_40.rb +24 -41
  12. data/lib/fluent_command_builder/command_builders/msbuild_20.rb +24 -48
  13. data/lib/fluent_command_builder/command_builders/msbuild_30.rb +24 -48
  14. data/lib/fluent_command_builder/command_builders/msbuild_35.rb +32 -64
  15. data/lib/fluent_command_builder/command_builders/msbuild_40.rb +37 -156
  16. data/lib/fluent_command_builder/command_builders/msdeploy_40.rb +39 -78
  17. data/lib/fluent_command_builder/command_builders/mstest_2005.rb +25 -50
  18. data/lib/fluent_command_builder/command_builders/mstest_2008.rb +26 -52
  19. data/lib/fluent_command_builder/command_builders/mstest_2010.rb +29 -58
  20. data/lib/fluent_command_builder/command_builders/netsh_2008.rb +105 -204
  21. data/lib/fluent_command_builder/command_builders/nunit_25.rb +103 -0
  22. data/lib/fluent_command_builder/command_builders/rake_09.rb +32 -64
  23. data/lib/fluent_command_builder/command_builders/sevenzip_92.rb +428 -0
  24. data/lib/fluent_command_builder/command_builders/simian_23.rb +32 -64
  25. data/lib/fluent_command_builder/command_builders/tf_2010.rb +502 -969
  26. data/lib/fluent_command_builder/command_builders/tf_tee_2010.rb +483 -930
  27. metadata +4 -3
  28. data/lib/fluent_command_builder/command_builders/nunit_console_25.rb +0 -137
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.1.5
4
+ version: 0.1.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-01-25 00:00:00.000000000 Z
12
+ date: 2012-02-03 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: A command line builder with a fluent interface written in Ruby.
15
15
  email: matthew-github@matthewriley.name
@@ -36,8 +36,9 @@ files:
36
36
  - lib/fluent_command_builder/command_builders/mstest_2008.rb
37
37
  - lib/fluent_command_builder/command_builders/mstest_2010.rb
38
38
  - lib/fluent_command_builder/command_builders/netsh_2008.rb
39
- - lib/fluent_command_builder/command_builders/nunit_console_25.rb
39
+ - lib/fluent_command_builder/command_builders/nunit_25.rb
40
40
  - lib/fluent_command_builder/command_builders/rake_09.rb
41
+ - lib/fluent_command_builder/command_builders/sevenzip_92.rb
41
42
  - lib/fluent_command_builder/command_builders/simian_23.rb
42
43
  - lib/fluent_command_builder/command_builders/tf_2010.rb
43
44
  - lib/fluent_command_builder/command_builders/tf_tee_2010.rb
@@ -1,137 +0,0 @@
1
- require File.expand_path(File.dirname(__FILE__) + '/../command_builder')
2
-
3
- module FluentCommandBuilder
4
- module NunitConsole
5
- module V25
6
- class NunitConsole
7
- def initialize command=nil
8
- @b = CommandBuilder.new command
9
- @b.append 'nunit-console'
10
- self
11
- end
12
-
13
- def assembly assembly
14
- @b.append "#{@b.format assembly}"
15
- self
16
- end
17
-
18
- def run test
19
- @b.append "/run:#{@b.format test}"
20
- self
21
- end
22
-
23
- def fixture fixture
24
- @b.append "/fixture:#{@b.format fixture}"
25
- self
26
- end
27
-
28
- def framework framework
29
- @b.append "/framework:#{@b.format framework}"
30
- self
31
- end
32
-
33
- def include category
34
- @b.append "/include:#{@b.format category}"
35
- self
36
- end
37
-
38
- def exclude category
39
- @b.append "/exclude:#{@b.format category}"
40
- self
41
- end
42
-
43
- def out file
44
- @b.append "/out:#{@b.format file}"
45
- self
46
- end
47
-
48
- def err file
49
- @b.append "/err:#{@b.format file}"
50
- self
51
- end
52
-
53
- def labels
54
- @b.append '/labels'
55
- self
56
- end
57
-
58
- def xml file
59
- @b.append "/xml:#{@b.format file}"
60
- self
61
- end
62
-
63
- def config config
64
- @b.append "/config:#{@b.format config}"
65
- self
66
- end
67
-
68
- def process process
69
- @b.append "/process:#{@b.format process}"
70
- self
71
- end
72
-
73
- def domain domain
74
- @b.append "/domain:#{@b.format domain}"
75
- self
76
- end
77
-
78
- def timeout timeout
79
- @b.append "/timeout:#{@b.format timeout}"
80
- self
81
- end
82
-
83
- def trace level
84
- @b.append "/trace:#{@b.format level}"
85
- self
86
- end
87
-
88
- def no_shadow
89
- @b.append '/noShadow'
90
- self
91
- end
92
-
93
- def no_thread
94
- @b.append '/noThread'
95
- self
96
- end
97
-
98
- def wait
99
- @b.append '/wait'
100
- self
101
- end
102
-
103
- def xml_console
104
- @b.append '/xmlConsole'
105
- self
106
- end
107
-
108
- def no_logo
109
- @b.append '/noLogo'
110
- self
111
- end
112
-
113
- def help
114
- @b.append '/help'
115
- self
116
- end
117
-
118
- def to_s
119
- @b.to_s
120
- end
121
-
122
- end
123
-
124
- def nunit_console
125
- NunitConsole.new
126
- end
127
-
128
- end
129
-
130
- end
131
-
132
- def nunit_console_25
133
- NunitConsole::V25::NunitConsole.new
134
- end
135
-
136
- end
137
-