BuildMaster 1.1.9 → 1.1.12

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 (149) hide show
  1. data/lib/buildmaster/algorithms.rb +2 -2
  2. data/lib/buildmaster/auto.rb +27 -0
  3. data/lib/buildmaster/auto/classpath.rb +86 -0
  4. data/lib/buildmaster/auto/git.rb +38 -0
  5. data/lib/buildmaster/auto/java.rb +23 -0
  6. data/lib/buildmaster/auto/java_project.rb +185 -0
  7. data/lib/buildmaster/auto/javac_ant.rb +64 -0
  8. data/lib/buildmaster/auto/junit_ant.rb +226 -0
  9. data/lib/buildmaster/auto/mysql_server.rb +30 -0
  10. data/lib/buildmaster/auto/package_ant.rb +60 -0
  11. data/lib/buildmaster/auto/ruby_platform.rb +51 -0
  12. data/lib/buildmaster/common.rb +3 -3
  13. data/lib/buildmaster/cotta.rb +8 -3
  14. data/lib/buildmaster/cotta/command_runner.rb +19 -3
  15. data/lib/buildmaster/cotta/cotta.rb +42 -12
  16. data/lib/buildmaster/cotta/cotta_dir.rb +18 -14
  17. data/lib/buildmaster/cotta/cotta_file.rb +5 -8
  18. data/lib/buildmaster/cotta/in_memory_system.rb +15 -4
  19. data/lib/buildmaster/cotta/physical_system.rb +13 -7
  20. data/lib/buildmaster/project.rb +3 -9
  21. data/lib/buildmaster/project/ant_driver.rb +11 -7
  22. data/lib/buildmaster/project/ci.rb +2 -2
  23. data/lib/buildmaster/project/pscp_driver.rb +0 -4
  24. data/lib/buildmaster/project/ruby_forge_project.rb +0 -3
  25. data/lib/buildmaster/project/svn_admin_driver.rb +0 -4
  26. data/lib/buildmaster/project/svn_driver.rb +0 -6
  27. data/lib/buildmaster/project/svn_helper.rb +0 -6
  28. data/lib/buildmaster/project/svn_server_driver.rb +0 -5
  29. data/lib/buildmaster/project/windows/iis_driver.rb +0 -4
  30. data/lib/buildmaster/project/windows/sql_server_driver.rb +0 -1
  31. data/lib/buildmaster/site.rb +16 -4
  32. data/lib/buildmaster/site/about_handler.rb +0 -4
  33. data/lib/buildmaster/site/content_engine_repository.rb +0 -2
  34. data/lib/buildmaster/site/element_processor_by_name.rb +0 -4
  35. data/lib/buildmaster/site/file_processor.rb +0 -4
  36. data/lib/buildmaster/site/site.rb +0 -4
  37. data/lib/buildmaster/site/site_server.rb +1 -4
  38. data/lib/buildmaster/site/site_spec.rb +4 -15
  39. data/lib/buildmaster/site/source_file_handler.rb +0 -3
  40. data/lib/buildmaster/site/template_error.rb +0 -2
  41. data/lib/buildmaster/site/template_runner.rb +0 -4
  42. data/lib/buildmaster/site/templatelets.rb +9 -10
  43. data/lib/buildmaster/site/templatelets/href.rb +0 -5
  44. data/lib/buildmaster/site/templatelets/when.rb +0 -4
  45. data/lib/buildmaster/site/xtemplate.rb +0 -3
  46. data/lib/buildmaster/version +1 -1
  47. data/lib/buildmaster/win32/auto_it.rb +4 -0
  48. data/lib/buildmaster/win32/auto_it_driver.rb +45 -0
  49. data/lib/buildmaster/win32/auto_it_window.rb +82 -0
  50. data/lib/buildmaster/win32/autoit/AutoItX3.dll +0 -0
  51. data/lib/buildmaster/win32/autoit/README +1 -0
  52. data/lib/buildmaster/windows.rb +3 -3
  53. data/test/buildmaster/algorithms/tc_opn_compare.rb +2 -2
  54. data/test/buildmaster/auto/javac/src/org/rubyforge/buildmaster/javac/One.java +5 -0
  55. data/test/buildmaster/auto/javac/src/resource.txt +1 -0
  56. data/test/buildmaster/auto/javac/src2/org/rubyforge/buildmaster/javac/Two.java +9 -0
  57. data/test/buildmaster/auto/tc_classpath.rb +79 -0
  58. data/test/buildmaster/auto/tc_git.rb +32 -0
  59. data/test/buildmaster/auto/tc_java.rb +12 -0
  60. data/test/buildmaster/auto/tc_java_project.rb +78 -0
  61. data/test/buildmaster/auto/tc_java_project_slow.rb +89 -0
  62. data/test/buildmaster/auto/tc_javac_ant.rb +38 -0
  63. data/test/buildmaster/auto/tc_junit_ant.rb +187 -0
  64. data/test/buildmaster/auto/tc_package_ant.rb +29 -0
  65. data/test/buildmaster/auto/tc_ruby_platform.rb +10 -0
  66. data/test/buildmaster/common/tc_properties.rb +1 -3
  67. data/test/buildmaster/common/tc_tree_to_object.rb +1 -3
  68. data/test/buildmaster/cotta/cotta_dir_behaviors.rb +46 -8
  69. data/test/buildmaster/cotta/cotta_file_behaviors.rb +6 -6
  70. data/test/buildmaster/cotta/cotta_specifications.rb +1 -6
  71. data/test/buildmaster/cotta/file_system_behaviors.rb +1 -3
  72. data/test/buildmaster/cotta/physical_system_stub.rb +22 -3
  73. data/test/buildmaster/cotta/system_file_specifications.rb +1 -3
  74. data/test/buildmaster/cotta/tc_command_interface.rb +1 -3
  75. data/test/buildmaster/cotta/tc_command_runner.rb +1 -4
  76. data/test/buildmaster/cotta/tc_cotta.rb +5 -8
  77. data/test/buildmaster/cotta/tc_cotta_dir_in_memory.rb +6 -9
  78. data/test/buildmaster/cotta/tc_cotta_dir_physical.rb +3 -6
  79. data/test/buildmaster/cotta/tc_cotta_file_in_memory.rb +3 -7
  80. data/test/buildmaster/cotta/tc_cotta_file_physical.rb +4 -4
  81. data/test/buildmaster/cotta/tc_cotta_zip_support.rb +1 -5
  82. data/test/buildmaster/cotta/tc_in_memory_system.rb +3 -7
  83. data/test/buildmaster/cotta/tc_io_chain.rb +3 -8
  84. data/test/buildmaster/cotta/tc_pathname.rb +1 -3
  85. data/test/buildmaster/cotta/tc_physical_system.rb +7 -8
  86. data/test/buildmaster/project/tc_ant_driver.rb +1 -4
  87. data/test/buildmaster/project/tc_build_number_file.rb +1 -6
  88. data/test/buildmaster/project/tc_cvs_driver.rb +1 -5
  89. data/test/buildmaster/project/tc_java_manifest.rb +1 -5
  90. data/test/buildmaster/project/tc_release.rb +1 -3
  91. data/test/buildmaster/project/tc_server_manager.rb +1 -4
  92. data/test/buildmaster/project/tc_svn_driver.rb +1 -5
  93. data/test/buildmaster/project/tc_svn_status_info.rb +1 -3
  94. data/test/buildmaster/project/tc_version_number_file.rb +1 -6
  95. data/test/buildmaster/project/windows/tc_iis_driver.rb +2 -3
  96. data/test/buildmaster/project/windows/tc_sql_server_driver.rb +2 -5
  97. data/test/buildmaster/site/content/tc_content_engine_repository.rb +1 -5
  98. data/test/buildmaster/site/tc_element_processor_by_name.rb +1 -4
  99. data/test/buildmaster/site/tc_file_processor.rb +1 -7
  100. data/test/buildmaster/site/tc_site.rb +1 -6
  101. data/test/buildmaster/site/tc_site_server.rb +2 -8
  102. data/test/buildmaster/site/tc_site_spec.rb +8 -5
  103. data/test/buildmaster/site/tc_source_file_handler.rb +1 -4
  104. data/test/buildmaster/site/tc_template_builder.rb +1 -4
  105. data/test/buildmaster/site/tc_template_error.rb +1 -3
  106. data/test/buildmaster/site/tc_template_runner.rb +2 -7
  107. data/test/buildmaster/site/tc_templatelets.rb +2 -6
  108. data/test/buildmaster/site/tc_xtemplate.rb +1 -5
  109. data/test/buildmaster/site/templatelets/common_templatelet_test.rb +1 -8
  110. data/test/buildmaster/site/templatelets/tc_attribute.rb +3 -3
  111. data/test/buildmaster/site/templatelets/tc_code.rb +2 -2
  112. data/test/buildmaster/site/templatelets/tc_each.rb +3 -3
  113. data/test/buildmaster/site/templatelets/tc_href.rb +3 -3
  114. data/test/buildmaster/site/templatelets/tc_include.rb +3 -3
  115. data/test/buildmaster/site/templatelets/tc_link.rb +3 -3
  116. data/test/buildmaster/site/templatelets/tc_text.rb +3 -3
  117. data/test/buildmaster/site/templatelets/tc_when.rb +4 -4
  118. data/test/buildmaster/site/test.rb +1 -0
  119. data/test/buildmaster/test.rb +21 -0
  120. data/test/buildmaster/win32/tc_auto_it.rb +18 -0
  121. data/test/buildmaster/win32/tc_auto_it_window.rb +17 -0
  122. data/test/manual/bms.rb +2 -4
  123. data/test/tmp/svn_test/repository/conf/authz +14 -3
  124. data/test/tmp/svn_test/repository/conf/svnserve.conf +21 -4
  125. data/test/tmp/svn_test/repository/db/current +1 -1
  126. data/test/tmp/svn_test/repository/db/format +2 -1
  127. data/test/tmp/svn_test/repository/db/revprops/0/0 +5 -0
  128. data/test/tmp/svn_test/repository/db/revprops/{1 → 0/1} +1 -1
  129. data/test/tmp/svn_test/repository/db/revprops/{2 → 0/2} +1 -1
  130. data/test/tmp/svn_test/repository/db/revprops/{3 → 0/3} +1 -1
  131. data/test/tmp/svn_test/repository/db/revprops/{4 → 0/4} +1 -1
  132. data/test/tmp/svn_test/repository/db/revs/{0 → 0/0} +0 -0
  133. data/test/tmp/svn_test/repository/db/revs/0/1 +25 -0
  134. data/test/tmp/svn_test/repository/db/revs/{2 → 0/2} +9 -9
  135. data/test/tmp/svn_test/repository/db/revs/0/3 +33 -0
  136. data/test/tmp/svn_test/repository/db/revs/{4 → 0/4} +0 -0
  137. data/test/tmp/svn_test/repository/db/txn-current +1 -0
  138. data/{lib/buildmaster/project/java/class_path.rb → test/tmp/svn_test/repository/db/txn-current-lock} +0 -0
  139. data/test/tmp/svn_test/repository/db/uuid +1 -1
  140. data/test/tmp/svn_test/repository/hooks/post-revprop-change.tmpl +1 -1
  141. data/test/tmp/svn_test/repository/hooks/pre-unlock.tmpl +1 -0
  142. data/test/tmp/svn_test/repository/hooks/start-commit.tmpl +13 -2
  143. data/test/ts_buildmaster.rb +2 -2
  144. metadata +100 -46
  145. data/lib/buildmaster/project/java.rb +0 -4
  146. data/lib/buildmaster/project/java/javac.rb +0 -9
  147. data/test/tmp/svn_test/repository/db/revprops/0 +0 -5
  148. data/test/tmp/svn_test/repository/db/revs/1 +0 -25
  149. data/test/tmp/svn_test/repository/db/revs/3 +0 -33
@@ -0,0 +1,17 @@
1
+ if RUBY_PLATFORM =~ /^rwin/
2
+ require 'selenium/auto_it'
3
+ module Selenium
4
+ describe AutoItWindow do
5
+ it 'should control notepad' do
6
+ autoit = AutoIt.load
7
+ autoit.Run('Notepad.exe')
8
+ window = AutoItWindow.new(autoit, 'Untitled - Notepad')
9
+ window.wait_for_activation
10
+ window.send_keys('some text')
11
+ window.close
12
+ confirm = AutoItWindow.wait_for(autoit, 'Notepad', 'Do you want to save')
13
+ confirm.send_keys('!n')
14
+ end
15
+ end
16
+ end
17
+ end
@@ -1,7 +1,5 @@
1
- $:.unshift File.join(File.dirname(__FILE__), '..', '..', 'buildmaster')
2
-
3
- require 'cotta'
4
- require 'ci'
1
+ require File.dirname(__FILE__) + '/../../lib/buildmaster/cotta'
2
+ require File.dirname(__FILE__) + '/../../lib/buildmaster/auto'
5
3
 
6
4
  dir = BuildMaster::Cotta.file(__FILE__).parent.dir('../../tmp/bms')
7
5
  dir.mkdirs
@@ -3,17 +3,28 @@
3
3
  ### files.
4
4
  ### As shown below each section defines authorizations for the path and
5
5
  ### (optional) repository specified by the section name.
6
- ### The authorizations follow. An authorization line can refer to a
7
- ### single user, to a group of users defined in a special [groups]
8
- ### section, or to anyone using the '*' wildcard. Each definition can
6
+ ### The authorizations follow. An authorization line can refer to:
7
+ ### - a single user,
8
+ ### - a group of users defined in a special [groups] section,
9
+ ### - an alias defined in a special [aliases] section,
10
+ ### - all authenticated users, using the '$authenticated' token,
11
+ ### - only anonymous users, using the '$anonymous' token,
12
+ ### - anyone, using the '*' wildcard.
13
+ ###
14
+ ### A match can be inverted by prefixing the rule with '~'. Rules can
9
15
  ### grant read ('r') access, read-write ('rw') access, or no access
10
16
  ### ('').
11
17
 
18
+ [aliases]
19
+ # joe = /C=XZ/ST=Dessert/L=Snake City/O=Snake Oil, Ltd./OU=Research Institute/CN=Joe Average
20
+
12
21
  [groups]
13
22
  # harry_and_sally = harry,sally
23
+ # harry_sally_and_joe = harry,sally,&joe
14
24
 
15
25
  # [/foo/bar]
16
26
  # harry = rw
27
+ # &joe = r
17
28
  # * =
18
29
 
19
30
  # [repository:/baz/fuz]
@@ -13,14 +13,16 @@
13
13
  # auth-access = write
14
14
  ### The password-db option controls the location of the password
15
15
  ### database file. Unless you specify a path starting with a /,
16
- ### the file's location is relative to the conf directory.
16
+ ### the file's location is relative to the directory containing
17
+ ### this configuration file.
18
+ ### If SASL is enabled (see below), this file will NOT be used.
17
19
  ### Uncomment the line below to use the default password file.
18
20
  # password-db = passwd
19
21
  ### The authz-db option controls the location of the authorization
20
22
  ### rules for path-based access control. Unless you specify a path
21
- ### starting with a /, the file's location is relative to the conf
22
- ### directory. If you don't specify an authz-db, no path-based access
23
- ### control is done.
23
+ ### starting with a /, the file's location is relative to the the
24
+ ### directory containing this file. If you don't specify an
25
+ ### authz-db, no path-based access control is done.
24
26
  ### Uncomment the line below to use the default authorization file.
25
27
  # authz-db = authz
26
28
  ### This option specifies the authentication realm of the repository.
@@ -28,3 +30,18 @@
28
30
  ### have the same password database, and vice versa. The default realm
29
31
  ### is repository's uuid.
30
32
  # realm = My First Repository
33
+
34
+ [sasl]
35
+ ### This option specifies whether you want to use the Cyrus SASL
36
+ ### library for authentication. Default is false.
37
+ ### This section will be ignored if svnserve is not built with Cyrus
38
+ ### SASL support; to check, run 'svnserve --version' and look for a line
39
+ ### reading 'Cyrus SASL authentication is available.'
40
+ # use-sasl = true
41
+ ### These options specify the desired strength of the security layer
42
+ ### that you want SASL to provide. 0 means no encryption, 1 means
43
+ ### integrity-checking only, values larger than 1 are correlated
44
+ ### to the effective key length for encryption (e.g. 128 means 128-bit
45
+ ### encryption). The values below are the defaults.
46
+ # min-encryption = 0
47
+ # max-encryption = 256
@@ -1 +1 @@
1
- 4 5 1
1
+ 4
@@ -1 +1,2 @@
1
- 2
1
+ 3
2
+ layout sharded 1000
@@ -0,0 +1,5 @@
1
+ K 8
2
+ svn:date
3
+ V 27
4
+ 2008-10-26T21:22:49.484375Z
5
+ END
@@ -5,7 +5,7 @@ Shane and Lianxin
5
5
  K 8
6
6
  svn:date
7
7
  V 27
8
- 2008-04-27T16:11:43.250000Z
8
+ 2008-10-26T21:22:50.359375Z
9
9
  K 7
10
10
  svn:log
11
11
  V 24
@@ -5,7 +5,7 @@ Shane and Lianxin
5
5
  K 8
6
6
  svn:date
7
7
  V 27
8
- 2008-04-27T16:11:43.656250Z
8
+ 2008-10-26T21:22:50.625000Z
9
9
  K 7
10
10
  svn:log
11
11
  V 23
@@ -5,7 +5,7 @@ Shane and Lianxin
5
5
  K 8
6
6
  svn:date
7
7
  V 27
8
- 2008-04-27T16:11:44.093750Z
8
+ 2008-10-26T21:22:50.843750Z
9
9
  K 7
10
10
  svn:log
11
11
  V 27
@@ -5,7 +5,7 @@ Shane and Lianxin
5
5
  K 8
6
6
  svn:date
7
7
  V 27
8
- 2008-04-27T16:11:46.421875Z
8
+ 2008-10-26T21:22:53.515625Z
9
9
  K 7
10
10
  svn:log
11
11
  V 19
@@ -0,0 +1,25 @@
1
+ id: 0-1.0.r1/0
2
+ type: dir
3
+ count: 0
4
+ cpath: /trunk
5
+ copyroot: 0 /
6
+
7
+ PLAIN
8
+ K 5
9
+ trunk
10
+ V 14
11
+ dir 0-1.0.r1/0
12
+ END
13
+ ENDREP
14
+ id: 0.0.r1/110
15
+ type: dir
16
+ pred: 0.0.r0/17
17
+ count: 1
18
+ text: 1 63 34 34 a669707b1f7dfac13baa7cbf8b292233
19
+ cpath: /
20
+ copyroot: 0 /
21
+
22
+ _0.0.t0-0 add false false /trunk
23
+
24
+
25
+ 110 234
@@ -1,4 +1,4 @@
1
- id: 2.0.r2/0
1
+ id: 0-2.0.r2/0
2
2
  type: dir
3
3
  count: 0
4
4
  cpath: /tags
@@ -7,23 +7,23 @@ copyroot: 0 /
7
7
  PLAIN
8
8
  K 4
9
9
  tags
10
- V 12
11
- dir 2.0.r2/0
10
+ V 14
11
+ dir 0-2.0.r2/0
12
12
  K 5
13
13
  trunk
14
- V 12
15
- dir 1.0.r1/0
14
+ V 14
15
+ dir 0-1.0.r1/0
16
16
  END
17
17
  ENDREP
18
- id: 0.0.r2/132
18
+ id: 0.0.r2/138
19
19
  type: dir
20
- pred: 0.0.r1/106
20
+ pred: 0.0.r1/110
21
21
  count: 2
22
- text: 2 60 59 59 cc5d4350f2e3e4a400de2b90563fb967
22
+ text: 2 62 63 63 369f315a7a7e288496576942214811c7
23
23
  cpath: /
24
24
  copyroot: 0 /
25
25
 
26
26
  _0.0.t1-1 add false false /tags
27
27
 
28
28
 
29
- 132 257
29
+ 138 263
@@ -0,0 +1,33 @@
1
+ id: 0-3.0.r3/0
2
+ type: dir
3
+ count: 0
4
+ cpath: /branches
5
+ copyroot: 0 /
6
+
7
+ PLAIN
8
+ K 8
9
+ branches
10
+ V 14
11
+ dir 0-3.0.r3/0
12
+ K 4
13
+ tags
14
+ V 14
15
+ dir 0-2.0.r2/0
16
+ K 5
17
+ trunk
18
+ V 14
19
+ dir 0-1.0.r1/0
20
+ END
21
+ ENDREP
22
+ id: 0.0.r3/175
23
+ type: dir
24
+ pred: 0.0.r2/138
25
+ count: 3
26
+ text: 3 66 96 96 c48177dafbb449ec4b0cc31cbc089ed6
27
+ cpath: /
28
+ copyroot: 0 /
29
+
30
+ _0.0.t2-2 add false false /branches
31
+
32
+
33
+ 175 300
@@ -1 +1 @@
1
- f2c2fdcb-b41e-ac41-a4e3-be7ce5ecf444
1
+ f0c1937d-a5f2-9947-a582-fbc271f3ae9a
@@ -53,4 +53,4 @@ USER="$3"
53
53
  PROPNAME="$4"
54
54
  ACTION="$5"
55
55
 
56
- propchange-email.pl "$REPOS" "$REV" "$USER" "$PROPNAME" watchers@example.org
56
+ commit-email.pl --revprop-change "$REPOS" "$REV" "$USER" "$PROPNAME" watchers@example.org
@@ -50,6 +50,7 @@ LOCK_OWNER=`$SVNLOOK lock "$REPOS" "$PATH" | \
50
50
  if [ "$LOCK_OWNER" = "" ]; then
51
51
  exit 0
52
52
  fi
53
+
53
54
  # If the person unlocking matches the lock's owner, return success:
54
55
  if [ "$LOCK_OWNER" = "$USER" ]; then
55
56
  exit 0
@@ -10,9 +10,20 @@
10
10
  #
11
11
  # [1] REPOS-PATH (the path to this repository)
12
12
  # [2] USER (the authenticated user attempting to commit)
13
+ # [3] CAPABILITIES (a colon-separated list of capabilities reported
14
+ # by the client; see note below)
13
15
  #
14
- # The default working directory for the invocation is undefined, so
15
- # the program should set one explicitly if it cares.
16
+ # Note: The CAPABILITIES parameter is new in Subversion 1.5, and 1.5
17
+ # clients will typically report at least the "mergeinfo" capability.
18
+ # If there are other capabilities, then the list is colon-separated,
19
+ # e.g.: "mergeinfo:some-other-capability" (the order is undefined).
20
+ #
21
+ # The list is self-reported by the client. Therefore, you should not
22
+ # make security assumptions based on the capabilities list, nor should
23
+ # you assume that clients reliably report every capability they have.
24
+ #
25
+ # The working directory for this hook program's invocation is undefined,
26
+ # so the program should set one explicitly if it cares.
16
27
  #
17
28
  # If the hook program exits with success, the commit continues; but
18
29
  # if it exits with failure (non-zero), the commit is stopped before
@@ -1,6 +1,6 @@
1
- $:.unshift(File.dirname(__FILE__))
1
+ dir = File.dirname(__FILE__)
2
2
 
3
- root = File.join(File.dirname(__FILE__))
3
+ root = File.dirname(__FILE__)
4
4
  Dir.glob("#{root}/**/tc_*.rb") do |file|
5
5
  require "#{file}"
6
6
  end
metadata CHANGED
@@ -1,39 +1,43 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.4
3
- specification_version: 1
4
2
  name: BuildMaster
5
3
  version: !ruby/object:Gem::Version
6
- version: 1.1.9
7
- date: 2008-04-27 00:00:00 -07:00
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
- require_paths:
10
- - lib
11
- email: buildmaster@googlegroups.com
12
- homepage: http://buildmaster.rubyforge.org/
13
- rubyforge_project: buildmaster
14
- description:
15
- autorequire: buildmaster/cotta
16
- default_executable:
17
- bindir: bin
18
- has_rdoc: true
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">"
22
- - !ruby/object:Gem::Version
23
- version: 0.0.0
24
- version:
4
+ version: 1.1.12
25
5
  platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
29
6
  authors:
30
7
  - Shane Duan
8
+ autorequire: buildmaster/cotta
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-10-26 00:00:00 -07:00
13
+ default_executable:
14
+ dependencies: []
15
+
16
+ description:
17
+ email: buildmaster@googlegroups.com
18
+ executables: []
19
+
20
+ extensions: []
21
+
22
+ extra_rdoc_files:
23
+ - README
31
24
  files:
32
25
  - bin/svnfix.rb
33
26
  - lib/buildmaster
34
27
  - lib/buildmaster/algorithms
35
28
  - lib/buildmaster/algorithms/opn_compare.rb
36
29
  - lib/buildmaster/algorithms.rb
30
+ - lib/buildmaster/auto
31
+ - lib/buildmaster/auto/classpath.rb
32
+ - lib/buildmaster/auto/git.rb
33
+ - lib/buildmaster/auto/java.rb
34
+ - lib/buildmaster/auto/javac_ant.rb
35
+ - lib/buildmaster/auto/java_project.rb
36
+ - lib/buildmaster/auto/junit_ant.rb
37
+ - lib/buildmaster/auto/mysql_server.rb
38
+ - lib/buildmaster/auto/package_ant.rb
39
+ - lib/buildmaster/auto/ruby_platform.rb
40
+ - lib/buildmaster/auto.rb
37
41
  - lib/buildmaster/build
38
42
  - lib/buildmaster/ci
39
43
  - lib/buildmaster/ci/server.rb
@@ -60,10 +64,6 @@ files:
60
64
  - lib/buildmaster/project/ci.rb
61
65
  - lib/buildmaster/project/cvs_driver.rb
62
66
  - 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
67
67
  - lib/buildmaster/project/java_manifest.rb
68
68
  - lib/buildmaster/project/mysql_served_driver.rb
69
69
  - lib/buildmaster/project/pscp_driver.rb
@@ -129,10 +129,41 @@ files:
129
129
  - lib/buildmaster/site/xtemplate.rb
130
130
  - lib/buildmaster/site.rb
131
131
  - lib/buildmaster/version
132
+ - lib/buildmaster/win32
133
+ - lib/buildmaster/win32/autoit
134
+ - lib/buildmaster/win32/autoit/AutoItX3.dll
135
+ - lib/buildmaster/win32/autoit/README
136
+ - lib/buildmaster/win32/auto_it.rb
137
+ - lib/buildmaster/win32/auto_it_driver.rb
138
+ - lib/buildmaster/win32/auto_it_window.rb
132
139
  - lib/buildmaster/windows.rb
133
140
  - test/buildmaster
134
141
  - test/buildmaster/algorithms
135
142
  - test/buildmaster/algorithms/tc_opn_compare.rb
143
+ - test/buildmaster/auto
144
+ - test/buildmaster/auto/javac
145
+ - test/buildmaster/auto/javac/src
146
+ - test/buildmaster/auto/javac/src/org
147
+ - test/buildmaster/auto/javac/src/org/rubyforge
148
+ - test/buildmaster/auto/javac/src/org/rubyforge/buildmaster
149
+ - test/buildmaster/auto/javac/src/org/rubyforge/buildmaster/javac
150
+ - test/buildmaster/auto/javac/src/org/rubyforge/buildmaster/javac/One.java
151
+ - test/buildmaster/auto/javac/src/resource.txt
152
+ - test/buildmaster/auto/javac/src2
153
+ - test/buildmaster/auto/javac/src2/org
154
+ - test/buildmaster/auto/javac/src2/org/rubyforge
155
+ - test/buildmaster/auto/javac/src2/org/rubyforge/buildmaster
156
+ - test/buildmaster/auto/javac/src2/org/rubyforge/buildmaster/javac
157
+ - test/buildmaster/auto/javac/src2/org/rubyforge/buildmaster/javac/Two.java
158
+ - test/buildmaster/auto/tc_classpath.rb
159
+ - test/buildmaster/auto/tc_git.rb
160
+ - test/buildmaster/auto/tc_java.rb
161
+ - test/buildmaster/auto/tc_javac_ant.rb
162
+ - test/buildmaster/auto/tc_java_project.rb
163
+ - test/buildmaster/auto/tc_java_project_slow.rb
164
+ - test/buildmaster/auto/tc_junit_ant.rb
165
+ - test/buildmaster/auto/tc_package_ant.rb
166
+ - test/buildmaster/auto/tc_ruby_platform.rb
136
167
  - test/buildmaster/common
137
168
  - test/buildmaster/common/tc_properties.rb
138
169
  - test/buildmaster/common/tc_tree_to_object.rb
@@ -202,6 +233,11 @@ files:
202
233
  - test/buildmaster/site/templatelets/tc_link.rb
203
234
  - test/buildmaster/site/templatelets/tc_text.rb
204
235
  - test/buildmaster/site/templatelets/tc_when.rb
236
+ - test/buildmaster/site/test.rb
237
+ - test/buildmaster/test.rb
238
+ - test/buildmaster/win32
239
+ - test/buildmaster/win32/tc_auto_it.rb
240
+ - test/buildmaster/win32/tc_auto_it_window.rb
205
241
  - test/manual
206
242
  - test/manual/bms.rb
207
243
  - test/spec_runner.rb
@@ -212,24 +248,28 @@ files:
212
248
  - test/tmp/svn_test/repository/conf/authz
213
249
  - test/tmp/svn_test/repository/conf/passwd
214
250
  - test/tmp/svn_test/repository/conf/svnserve.conf
215
- - test/tmp/svn_test/repository/dav
216
251
  - test/tmp/svn_test/repository/db
217
252
  - test/tmp/svn_test/repository/db/current
218
253
  - test/tmp/svn_test/repository/db/format
219
254
  - test/tmp/svn_test/repository/db/fs-type
220
255
  - test/tmp/svn_test/repository/db/revprops
221
256
  - test/tmp/svn_test/repository/db/revprops/0
222
- - test/tmp/svn_test/repository/db/revprops/1
223
- - test/tmp/svn_test/repository/db/revprops/2
224
- - test/tmp/svn_test/repository/db/revprops/3
225
- - test/tmp/svn_test/repository/db/revprops/4
257
+ - test/tmp/svn_test/repository/db/revprops/0/0
258
+ - test/tmp/svn_test/repository/db/revprops/0/1
259
+ - test/tmp/svn_test/repository/db/revprops/0/2
260
+ - test/tmp/svn_test/repository/db/revprops/0/3
261
+ - test/tmp/svn_test/repository/db/revprops/0/4
226
262
  - test/tmp/svn_test/repository/db/revs
227
263
  - test/tmp/svn_test/repository/db/revs/0
228
- - test/tmp/svn_test/repository/db/revs/1
229
- - test/tmp/svn_test/repository/db/revs/2
230
- - test/tmp/svn_test/repository/db/revs/3
231
- - test/tmp/svn_test/repository/db/revs/4
264
+ - test/tmp/svn_test/repository/db/revs/0/0
265
+ - test/tmp/svn_test/repository/db/revs/0/1
266
+ - test/tmp/svn_test/repository/db/revs/0/2
267
+ - test/tmp/svn_test/repository/db/revs/0/3
268
+ - test/tmp/svn_test/repository/db/revs/0/4
232
269
  - test/tmp/svn_test/repository/db/transactions
270
+ - test/tmp/svn_test/repository/db/txn-current
271
+ - test/tmp/svn_test/repository/db/txn-current-lock
272
+ - test/tmp/svn_test/repository/db/txn-protorevs
233
273
  - test/tmp/svn_test/repository/db/uuid
234
274
  - test/tmp/svn_test/repository/db/write-lock
235
275
  - test/tmp/svn_test/repository/format
@@ -253,17 +293,31 @@ files:
253
293
  - test/tmp/svn_test/workdir/test.txt
254
294
  - test/ts_buildmaster.rb
255
295
  - README
256
- test_files: []
257
-
296
+ has_rdoc: true
297
+ homepage: http://buildmaster.rubyforge.org/
298
+ post_install_message:
258
299
  rdoc_options: []
259
300
 
260
- extra_rdoc_files:
261
- - README
262
- executables: []
263
-
264
- extensions: []
265
-
301
+ require_paths:
302
+ - lib
303
+ required_ruby_version: !ruby/object:Gem::Requirement
304
+ requirements:
305
+ - - ">="
306
+ - !ruby/object:Gem::Version
307
+ version: "0"
308
+ version:
309
+ required_rubygems_version: !ruby/object:Gem::Requirement
310
+ requirements:
311
+ - - ">="
312
+ - !ruby/object:Gem::Version
313
+ version: "0"
314
+ version:
266
315
  requirements: []
267
316
 
268
- dependencies: []
317
+ rubyforge_project: buildmaster
318
+ rubygems_version: 1.2.0
319
+ signing_key:
320
+ specification_version: 2
321
+ summary: A project that hosts a series of scripts to be used for project release and depolyment, static website building, and file operations.
322
+ test_files: []
269
323