BuildMaster 1.0.9 → 1.1.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (76) hide show
  1. data/lib/buildmaster/algorithms.rb +3 -0
  2. data/lib/buildmaster/algorithms/opn_compare.rb +108 -0
  3. data/lib/buildmaster/cotta/cotta_dir.rb +7 -4
  4. data/lib/buildmaster/cotta/cotta_file.rb +5 -2
  5. data/lib/buildmaster/cotta/in_memory_system.rb +28 -4
  6. data/lib/buildmaster/project/java.rb +4 -0
  7. data/lib/buildmaster/project/java/class_path.rb +0 -0
  8. data/lib/buildmaster/project/java/javac.rb +9 -0
  9. data/lib/buildmaster/project/mysql_served_driver.rb +15 -0
  10. data/lib/buildmaster/project/pscp_driver.rb +0 -1
  11. data/lib/buildmaster/project/svn_driver.rb +4 -4
  12. data/lib/buildmaster/project/svn_server_driver.rb +18 -0
  13. data/lib/buildmaster/project/svn_status_info.rb +45 -42
  14. data/lib/buildmaster/site/content_engine_repository.rb +9 -0
  15. data/lib/buildmaster/site/file_processor.rb +5 -1
  16. data/lib/buildmaster/site/site.rb +11 -4
  17. data/lib/buildmaster/site/site_server.rb +1 -1
  18. data/lib/buildmaster/site/templatelets/href.rb +1 -1
  19. data/lib/buildmaster/version +1 -1
  20. data/test/buildmaster/algorithms/tc_opn_compare.rb +44 -0
  21. data/test/buildmaster/common/tc_properties.rb +8 -8
  22. data/test/buildmaster/common/tc_tree_to_object.rb +8 -8
  23. data/test/buildmaster/cotta/cotta_dir_behaviors.rb +167 -0
  24. data/test/buildmaster/cotta/cotta_file_behaviors.rb +127 -0
  25. data/test/buildmaster/cotta/cotta_specifications.rb +20 -0
  26. data/test/buildmaster/cotta/file_system_behaviors.rb +167 -0
  27. data/test/buildmaster/cotta/tc_command_interface.rb +6 -6
  28. data/test/buildmaster/cotta/tc_command_runner.rb +5 -5
  29. data/test/buildmaster/cotta/tc_cotta.rb +12 -12
  30. data/test/buildmaster/cotta/tc_cotta_dir_in_memory.rb +17 -17
  31. data/test/buildmaster/cotta/tc_cotta_dir_physical.rb +5 -5
  32. data/test/buildmaster/cotta/tc_cotta_file_in_memory.rb +8 -9
  33. data/test/buildmaster/cotta/tc_cotta_file_physical.rb +11 -8
  34. data/test/buildmaster/cotta/tc_cotta_zip_support.rb +9 -9
  35. data/test/buildmaster/cotta/tc_in_memory_system.rb +7 -7
  36. data/test/buildmaster/cotta/tc_io_chain.rb +3 -3
  37. data/test/buildmaster/cotta/tc_pathname.rb +6 -6
  38. data/test/buildmaster/cotta/tc_physical_system.rb +7 -8
  39. data/test/buildmaster/project/tc_ant_driver.rb +8 -8
  40. data/test/buildmaster/project/tc_build_number_file.rb +5 -5
  41. data/test/buildmaster/project/tc_cvs_driver.rb +9 -9
  42. data/test/buildmaster/project/tc_java_manifest.rb +9 -11
  43. data/test/buildmaster/project/tc_release.rb +12 -12
  44. data/test/buildmaster/project/tc_server_manager.rb +8 -8
  45. data/test/buildmaster/project/tc_svn_driver.rb +18 -13
  46. data/test/buildmaster/project/tc_svn_status_info.rb +8 -8
  47. data/test/buildmaster/project/tc_version_number_file.rb +6 -6
  48. data/test/buildmaster/project/windows/tc_iis_driver.rb +4 -4
  49. data/test/buildmaster/project/windows/tc_sql_server_driver.rb +2 -2
  50. data/test/buildmaster/site/content/tc_content_engine_repository.rb +5 -5
  51. data/test/buildmaster/site/tc_element_processor_by_name.rb +4 -4
  52. data/test/buildmaster/site/tc_file_processor.rb +8 -9
  53. data/test/buildmaster/site/tc_site.rb +23 -7
  54. data/test/buildmaster/site/tc_site_server.rb +2 -2
  55. data/test/buildmaster/site/tc_site_spec.rb +5 -5
  56. data/test/buildmaster/site/tc_source_file_handler.rb +2 -2
  57. data/test/buildmaster/site/tc_template_builder.rb +22 -11
  58. data/test/buildmaster/site/tc_template_error.rb +2 -2
  59. data/test/buildmaster/site/tc_template_runner.rb +4 -4
  60. data/test/buildmaster/site/tc_templatelets.rb +4 -4
  61. data/test/buildmaster/site/tc_xtemplate.rb +5 -5
  62. data/test/buildmaster/site/templatelets/tc_attribute.rb +6 -6
  63. data/test/buildmaster/site/templatelets/tc_code.rb +10 -10
  64. data/test/buildmaster/site/templatelets/tc_each.rb +3 -3
  65. data/test/buildmaster/site/templatelets/tc_href.rb +7 -7
  66. data/test/buildmaster/site/templatelets/tc_include.rb +3 -3
  67. data/test/buildmaster/site/templatelets/tc_link.rb +6 -6
  68. data/test/buildmaster/site/templatelets/tc_text.rb +4 -4
  69. data/test/buildmaster/site/templatelets/tc_when.rb +4 -4
  70. data/test/tmp/svn_test/repository/db/revprops/0 +1 -1
  71. data/test/tmp/svn_test/repository/db/revprops/1 +1 -1
  72. data/test/tmp/svn_test/repository/db/revprops/2 +1 -1
  73. data/test/tmp/svn_test/repository/db/revprops/3 +1 -1
  74. data/test/tmp/svn_test/repository/db/revprops/4 +1 -1
  75. data/test/tmp/svn_test/repository/db/uuid +1 -1
  76. metadata +60 -46
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.0.9
2
+ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: BuildMaster
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.0.9
7
- date: 2007-01-15 00:00:00 -08:00
6
+ version: 1.1.9
7
+ date: 2008-04-27 00:00:00 -07:00
8
8
  summary: A project that hosts a series of scripts to be used for project release and depolyment, static website building, and file operations.
9
9
  require_paths:
10
10
  - lib
@@ -31,21 +31,17 @@ authors:
31
31
  files:
32
32
  - bin/svnfix.rb
33
33
  - lib/buildmaster
34
+ - lib/buildmaster/algorithms
35
+ - lib/buildmaster/algorithms/opn_compare.rb
36
+ - lib/buildmaster/algorithms.rb
34
37
  - lib/buildmaster/build
35
38
  - lib/buildmaster/ci
36
- - lib/buildmaster/common
37
- - lib/buildmaster/common.rb
38
- - lib/buildmaster/cotta
39
- - lib/buildmaster/cotta.rb
40
- - lib/buildmaster/project
41
- - lib/buildmaster/project.rb
42
- - lib/buildmaster/site
43
- - lib/buildmaster/site.rb
44
- - lib/buildmaster/version
45
- - lib/buildmaster/windows.rb
46
39
  - lib/buildmaster/ci/server.rb
40
+ - lib/buildmaster/common
47
41
  - lib/buildmaster/common/properties.rb
48
42
  - lib/buildmaster/common/tree_to_object.rb
43
+ - lib/buildmaster/common.rb
44
+ - lib/buildmaster/cotta
49
45
  - lib/buildmaster/cotta/command_error.rb
50
46
  - lib/buildmaster/cotta/command_interface.rb
51
47
  - lib/buildmaster/cotta/command_runner.rb
@@ -57,12 +53,19 @@ files:
57
53
  - lib/buildmaster/cotta/in_memory_system.rb
58
54
  - lib/buildmaster/cotta/io_chain.rb
59
55
  - lib/buildmaster/cotta/physical_system.rb
56
+ - lib/buildmaster/cotta.rb
57
+ - lib/buildmaster/project
60
58
  - lib/buildmaster/project/ant_driver.rb
61
59
  - lib/buildmaster/project/build_number_file.rb
62
60
  - lib/buildmaster/project/ci.rb
63
61
  - lib/buildmaster/project/cvs_driver.rb
64
62
  - lib/buildmaster/project/ftp_driver.rb
63
+ - lib/buildmaster/project/java
64
+ - lib/buildmaster/project/java/class_path.rb
65
+ - lib/buildmaster/project/java/javac.rb
66
+ - lib/buildmaster/project/java.rb
65
67
  - lib/buildmaster/project/java_manifest.rb
68
+ - lib/buildmaster/project/mysql_served_driver.rb
66
69
  - lib/buildmaster/project/pscp_driver.rb
67
70
  - lib/buildmaster/project/release.rb
68
71
  - lib/buildmaster/project/ruby_forge_project.rb
@@ -71,12 +74,15 @@ files:
71
74
  - lib/buildmaster/project/svn_admin_driver.rb
72
75
  - lib/buildmaster/project/svn_driver.rb
73
76
  - lib/buildmaster/project/svn_helper.rb
77
+ - lib/buildmaster/project/svn_server_driver.rb
74
78
  - lib/buildmaster/project/svn_status_info.rb
75
79
  - lib/buildmaster/project/try.rb
76
80
  - lib/buildmaster/project/version_number_file.rb
77
81
  - lib/buildmaster/project/windows
78
82
  - lib/buildmaster/project/windows/iis_driver.rb
79
83
  - lib/buildmaster/project/windows/sql_server_driver.rb
84
+ - lib/buildmaster/project.rb
85
+ - lib/buildmaster/site
80
86
  - lib/buildmaster/site/about_handler.rb
81
87
  - lib/buildmaster/site/content_engine_repository.rb
82
88
  - lib/buildmaster/site/element_processor_by_name.rb
@@ -88,15 +94,9 @@ files:
88
94
  - lib/buildmaster/site/source_content.rb
89
95
  - lib/buildmaster/site/source_file_handler.rb
90
96
  - lib/buildmaster/site/template
91
- - lib/buildmaster/site/templatelets
92
- - lib/buildmaster/site/templatelets.rb
93
- - lib/buildmaster/site/templates
94
- - lib/buildmaster/site/template_builder.rb
95
- - lib/buildmaster/site/template_error.rb
96
- - lib/buildmaster/site/template_runner.rb
97
- - lib/buildmaster/site/xtemplate.rb
98
97
  - lib/buildmaster/site/template/buildmaster.css
99
98
  - lib/buildmaster/site/template/buildmaster_template.xml
99
+ - lib/buildmaster/site/templatelets
100
100
  - lib/buildmaster/site/templatelets/attribute.rb
101
101
  - lib/buildmaster/site/templatelets/code.rb
102
102
  - lib/buildmaster/site/templatelets/each.rb
@@ -105,35 +105,43 @@ files:
105
105
  - lib/buildmaster/site/templatelets/link.rb
106
106
  - lib/buildmaster/site/templatelets/text.rb
107
107
  - lib/buildmaster/site/templatelets/when.rb
108
+ - lib/buildmaster/site/templatelets.rb
109
+ - lib/buildmaster/site/templates
108
110
  - lib/buildmaster/site/templates/buildmaster
109
- - lib/buildmaster/site/templates/cotta
110
111
  - lib/buildmaster/site/templates/buildmaster/content
111
- - lib/buildmaster/site/templates/buildmaster/template.html
112
112
  - lib/buildmaster/site/templates/buildmaster/content/border_bottom.gif
113
113
  - lib/buildmaster/site/templates/buildmaster/content/buildmaster.css
114
114
  - lib/buildmaster/site/templates/buildmaster/content/logo.gif
115
115
  - lib/buildmaster/site/templates/buildmaster/content/news-rss2.xml
116
116
  - lib/buildmaster/site/templates/buildmaster/content/print.css
117
117
  - lib/buildmaster/site/templates/buildmaster/content/ruby.css
118
+ - lib/buildmaster/site/templates/buildmaster/template.html
119
+ - lib/buildmaster/site/templates/cotta
118
120
  - lib/buildmaster/site/templates/cotta/content
119
- - lib/buildmaster/site/templates/cotta/template.html
120
121
  - lib/buildmaster/site/templates/cotta/content/border_bottom.gif
121
122
  - lib/buildmaster/site/templates/cotta/content/cotta.css
122
123
  - lib/buildmaster/site/templates/cotta/content/cotta.gif
123
124
  - lib/buildmaster/site/templates/cotta/content/news-rss2.xml
125
+ - lib/buildmaster/site/templates/cotta/template.html
126
+ - lib/buildmaster/site/template_builder.rb
127
+ - lib/buildmaster/site/template_error.rb
128
+ - lib/buildmaster/site/template_runner.rb
129
+ - lib/buildmaster/site/xtemplate.rb
130
+ - lib/buildmaster/site.rb
131
+ - lib/buildmaster/version
132
+ - lib/buildmaster/windows.rb
124
133
  - test/buildmaster
125
- - test/manual
126
- - test/spec_runner.rb
127
- - test/tmp
128
- - test/ts_buildmaster.rb
134
+ - test/buildmaster/algorithms
135
+ - test/buildmaster/algorithms/tc_opn_compare.rb
129
136
  - test/buildmaster/common
130
- - test/buildmaster/cotta
131
- - test/buildmaster/project
132
- - test/buildmaster/site
133
137
  - test/buildmaster/common/tc_properties.rb
134
138
  - test/buildmaster/common/tc_tree_to_object.rb
139
+ - test/buildmaster/cotta
135
140
  - test/buildmaster/cotta/content.txt
141
+ - test/buildmaster/cotta/cotta_dir_behaviors.rb
142
+ - test/buildmaster/cotta/cotta_file_behaviors.rb
136
143
  - test/buildmaster/cotta/cotta_specifications.rb
144
+ - test/buildmaster/cotta/file_system_behaviors.rb
137
145
  - test/buildmaster/cotta/logo.gif
138
146
  - test/buildmaster/cotta/physical_system_stub.rb
139
147
  - test/buildmaster/cotta/system_file_specifications.rb
@@ -151,6 +159,7 @@ files:
151
159
  - test/buildmaster/cotta/tc_pathname.rb
152
160
  - test/buildmaster/cotta/tc_physical_system.rb
153
161
  - test/buildmaster/cotta/ts_cotta.rb
162
+ - test/buildmaster/project
154
163
  - test/buildmaster/project/build.xml
155
164
  - test/buildmaster/project/manifest.mf
156
165
  - test/buildmaster/project/tc_ant_driver.rb
@@ -165,7 +174,12 @@ files:
165
174
  - test/buildmaster/project/windows
166
175
  - test/buildmaster/project/windows/tc_iis_driver.rb
167
176
  - test/buildmaster/project/windows/tc_sql_server_driver.rb
177
+ - test/buildmaster/site
168
178
  - test/buildmaster/site/content
179
+ - test/buildmaster/site/content/index.html
180
+ - test/buildmaster/site/content/markdown.markdown
181
+ - test/buildmaster/site/content/tc_content_engine_repository.rb
182
+ - test/buildmaster/site/content/textile.textile
169
183
  - test/buildmaster/site/tc_element_processor_by_name.rb
170
184
  - test/buildmaster/site/tc_file_processor.rb
171
185
  - test/buildmaster/site/tc_site.rb
@@ -179,10 +193,6 @@ files:
179
193
  - test/buildmaster/site/tc_xtemplate.rb
180
194
  - test/buildmaster/site/template.xhtml
181
195
  - test/buildmaster/site/templatelets
182
- - test/buildmaster/site/content/index.html
183
- - test/buildmaster/site/content/markdown.markdown
184
- - test/buildmaster/site/content/tc_content_engine_repository.rb
185
- - test/buildmaster/site/content/textile.textile
186
196
  - test/buildmaster/site/templatelets/common_templatelet_test.rb
187
197
  - test/buildmaster/site/templatelets/tc_attribute.rb
188
198
  - test/buildmaster/site/templatelets/tc_code.rb
@@ -192,39 +202,38 @@ files:
192
202
  - test/buildmaster/site/templatelets/tc_link.rb
193
203
  - test/buildmaster/site/templatelets/tc_text.rb
194
204
  - test/buildmaster/site/templatelets/tc_when.rb
205
+ - test/manual
195
206
  - test/manual/bms.rb
207
+ - test/spec_runner.rb
208
+ - test/tmp
196
209
  - test/tmp/svn_test
197
210
  - test/tmp/svn_test/repository
198
- - test/tmp/svn_test/second
199
- - test/tmp/svn_test/workdir
200
211
  - test/tmp/svn_test/repository/conf
201
- - test/tmp/svn_test/repository/dav
202
- - test/tmp/svn_test/repository/db
203
- - test/tmp/svn_test/repository/format
204
- - test/tmp/svn_test/repository/hooks
205
- - test/tmp/svn_test/repository/locks
206
- - test/tmp/svn_test/repository/README.txt
207
212
  - test/tmp/svn_test/repository/conf/authz
208
213
  - test/tmp/svn_test/repository/conf/passwd
209
214
  - test/tmp/svn_test/repository/conf/svnserve.conf
215
+ - test/tmp/svn_test/repository/dav
216
+ - test/tmp/svn_test/repository/db
210
217
  - test/tmp/svn_test/repository/db/current
211
218
  - test/tmp/svn_test/repository/db/format
212
219
  - test/tmp/svn_test/repository/db/fs-type
213
220
  - test/tmp/svn_test/repository/db/revprops
214
- - test/tmp/svn_test/repository/db/revs
215
- - test/tmp/svn_test/repository/db/transactions
216
- - test/tmp/svn_test/repository/db/uuid
217
- - test/tmp/svn_test/repository/db/write-lock
218
221
  - test/tmp/svn_test/repository/db/revprops/0
219
222
  - test/tmp/svn_test/repository/db/revprops/1
220
223
  - test/tmp/svn_test/repository/db/revprops/2
221
224
  - test/tmp/svn_test/repository/db/revprops/3
222
225
  - test/tmp/svn_test/repository/db/revprops/4
226
+ - test/tmp/svn_test/repository/db/revs
223
227
  - test/tmp/svn_test/repository/db/revs/0
224
228
  - test/tmp/svn_test/repository/db/revs/1
225
229
  - test/tmp/svn_test/repository/db/revs/2
226
230
  - test/tmp/svn_test/repository/db/revs/3
227
231
  - test/tmp/svn_test/repository/db/revs/4
232
+ - test/tmp/svn_test/repository/db/transactions
233
+ - test/tmp/svn_test/repository/db/uuid
234
+ - test/tmp/svn_test/repository/db/write-lock
235
+ - test/tmp/svn_test/repository/format
236
+ - test/tmp/svn_test/repository/hooks
228
237
  - test/tmp/svn_test/repository/hooks/post-commit.tmpl
229
238
  - test/tmp/svn_test/repository/hooks/post-lock.tmpl
230
239
  - test/tmp/svn_test/repository/hooks/post-revprop-change.tmpl
@@ -234,10 +243,15 @@ files:
234
243
  - test/tmp/svn_test/repository/hooks/pre-revprop-change.tmpl
235
244
  - test/tmp/svn_test/repository/hooks/pre-unlock.tmpl
236
245
  - test/tmp/svn_test/repository/hooks/start-commit.tmpl
246
+ - test/tmp/svn_test/repository/locks
237
247
  - test/tmp/svn_test/repository/locks/db-logs.lock
238
248
  - test/tmp/svn_test/repository/locks/db.lock
249
+ - test/tmp/svn_test/repository/README.txt
250
+ - test/tmp/svn_test/second
239
251
  - test/tmp/svn_test/second/test.txt
252
+ - test/tmp/svn_test/workdir
240
253
  - test/tmp/svn_test/workdir/test.txt
254
+ - test/ts_buildmaster.rb
241
255
  - README
242
256
  test_files: []
243
257