buildr-gemjar 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (252) hide show
  1. data/.braids +8 -0
  2. data/.gitignore +5 -0
  3. data/.rvmrc +1 -0
  4. data/CHANGELOG.md +4 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE +20 -0
  7. data/README.md +98 -0
  8. data/Rakefile +8 -0
  9. data/buildr-gemjar.gemspec +42 -0
  10. data/lib/buildr-gemjar.rb +162 -0
  11. data/lib/buildr-gemjar/version.rb +3 -0
  12. data/meta.rakefile +30 -0
  13. data/spec/buildr-gemjar/version_spec.rb +11 -0
  14. data/spec/buildr-gemjar_spec.rb +179 -0
  15. data/spec/repo_builder.rb +59 -0
  16. data/spec/spec_helper.rb +44 -0
  17. data/vendor/buildr/.gitignore +17 -0
  18. data/vendor/buildr/CHANGELOG +1283 -0
  19. data/vendor/buildr/Gemfile +4 -0
  20. data/vendor/buildr/LICENSE +176 -0
  21. data/vendor/buildr/NOTICE +26 -0
  22. data/vendor/buildr/README.rdoc +134 -0
  23. data/vendor/buildr/Rakefile +44 -0
  24. data/vendor/buildr/_buildr +35 -0
  25. data/vendor/buildr/_jbuildr +35 -0
  26. data/vendor/buildr/addon/buildr/antlr.rb +65 -0
  27. data/vendor/buildr/addon/buildr/bnd.rb +147 -0
  28. data/vendor/buildr/addon/buildr/cobertura.rb +22 -0
  29. data/vendor/buildr/addon/buildr/drb.rb +281 -0
  30. data/vendor/buildr/addon/buildr/emma.rb +22 -0
  31. data/vendor/buildr/addon/buildr/hibernate.rb +149 -0
  32. data/vendor/buildr/addon/buildr/javacc.rb +85 -0
  33. data/vendor/buildr/addon/buildr/jaxb_xjc.rb +72 -0
  34. data/vendor/buildr/addon/buildr/jdepend.rb +60 -0
  35. data/vendor/buildr/addon/buildr/jetty.rb +248 -0
  36. data/vendor/buildr/addon/buildr/jibx.rb +86 -0
  37. data/vendor/buildr/addon/buildr/nailgun.rb +221 -0
  38. data/vendor/buildr/addon/buildr/openjpa.rb +88 -0
  39. data/vendor/buildr/addon/buildr/org/apache/buildr/BuildrNail$Main.class +0 -0
  40. data/vendor/buildr/addon/buildr/org/apache/buildr/BuildrNail.class +0 -0
  41. data/vendor/buildr/addon/buildr/org/apache/buildr/BuildrNail.java +41 -0
  42. data/vendor/buildr/addon/buildr/org/apache/buildr/JettyWrapper$1.class +0 -0
  43. data/vendor/buildr/addon/buildr/org/apache/buildr/JettyWrapper$BuildrHandler.class +0 -0
  44. data/vendor/buildr/addon/buildr/org/apache/buildr/JettyWrapper.class +0 -0
  45. data/vendor/buildr/addon/buildr/org/apache/buildr/JettyWrapper.java +144 -0
  46. data/vendor/buildr/addon/buildr/protobuf.rb +88 -0
  47. data/vendor/buildr/addon/buildr/xmlbeans.rb +93 -0
  48. data/vendor/buildr/all-in-one/_buildr +19 -0
  49. data/vendor/buildr/all-in-one/buildr +368 -0
  50. data/vendor/buildr/all-in-one/buildr.cmd +1 -0
  51. data/vendor/buildr/bin/buildr +19 -0
  52. data/vendor/buildr/buildr.buildfile +58 -0
  53. data/vendor/buildr/buildr.gemspec +74 -0
  54. data/vendor/buildr/doc/_config.yml +1 -0
  55. data/vendor/buildr/doc/_layouts/default.html +90 -0
  56. data/vendor/buildr/doc/_layouts/preface.html +22 -0
  57. data/vendor/buildr/doc/artifacts.textile +217 -0
  58. data/vendor/buildr/doc/building.textile +276 -0
  59. data/vendor/buildr/doc/contributing.textile +268 -0
  60. data/vendor/buildr/doc/css/default.css +236 -0
  61. data/vendor/buildr/doc/css/print.css +101 -0
  62. data/vendor/buildr/doc/css/syntax.css +23 -0
  63. data/vendor/buildr/doc/download.textile +138 -0
  64. data/vendor/buildr/doc/extending.textile +212 -0
  65. data/vendor/buildr/doc/images/1442160941-frontcover.jpg +0 -0
  66. data/vendor/buildr/doc/images/asf-logo.gif +0 -0
  67. data/vendor/buildr/doc/images/asf-logo.png +0 -0
  68. data/vendor/buildr/doc/images/buildr-hires.png +0 -0
  69. data/vendor/buildr/doc/images/buildr.png +0 -0
  70. data/vendor/buildr/doc/images/favicon.png +0 -0
  71. data/vendor/buildr/doc/images/growl-icon.tiff +0 -0
  72. data/vendor/buildr/doc/images/note.png +0 -0
  73. data/vendor/buildr/doc/images/project-structure.png +0 -0
  74. data/vendor/buildr/doc/images/tip.png +0 -0
  75. data/vendor/buildr/doc/images/zbuildr.png +0 -0
  76. data/vendor/buildr/doc/images/zbuildr.tif +0 -0
  77. data/vendor/buildr/doc/index.textile +69 -0
  78. data/vendor/buildr/doc/installing.textile +284 -0
  79. data/vendor/buildr/doc/languages.textile +599 -0
  80. data/vendor/buildr/doc/mailing_lists.textile +29 -0
  81. data/vendor/buildr/doc/more_stuff.textile +845 -0
  82. data/vendor/buildr/doc/packaging.textile +618 -0
  83. data/vendor/buildr/doc/preface.textile +54 -0
  84. data/vendor/buildr/doc/projects.textile +276 -0
  85. data/vendor/buildr/doc/quick_start.textile +210 -0
  86. data/vendor/buildr/doc/releasing.textile +117 -0
  87. data/vendor/buildr/doc/scripts/buildr-git.rb +512 -0
  88. data/vendor/buildr/doc/scripts/gitflow.rb +296 -0
  89. data/vendor/buildr/doc/scripts/install-jruby.sh +44 -0
  90. data/vendor/buildr/doc/scripts/install-linux.sh +73 -0
  91. data/vendor/buildr/doc/scripts/install-osx.sh +52 -0
  92. data/vendor/buildr/doc/settings_profiles.textile +287 -0
  93. data/vendor/buildr/doc/testing.textile +247 -0
  94. data/vendor/buildr/etc/KEYS +189 -0
  95. data/vendor/buildr/lib/buildr.rb +44 -0
  96. data/vendor/buildr/lib/buildr/clojure.rb +34 -0
  97. data/vendor/buildr/lib/buildr/clojure/shell.rb +52 -0
  98. data/vendor/buildr/lib/buildr/core.rb +34 -0
  99. data/vendor/buildr/lib/buildr/core/application.rb +700 -0
  100. data/vendor/buildr/lib/buildr/core/build.rb +516 -0
  101. data/vendor/buildr/lib/buildr/core/cc.rb +166 -0
  102. data/vendor/buildr/lib/buildr/core/checks.rb +253 -0
  103. data/vendor/buildr/lib/buildr/core/common.rb +151 -0
  104. data/vendor/buildr/lib/buildr/core/compile.rb +622 -0
  105. data/vendor/buildr/lib/buildr/core/doc.rb +276 -0
  106. data/vendor/buildr/lib/buildr/core/environment.rb +129 -0
  107. data/vendor/buildr/lib/buildr/core/filter.rb +404 -0
  108. data/vendor/buildr/lib/buildr/core/generate.rb +197 -0
  109. data/vendor/buildr/lib/buildr/core/help.rb +119 -0
  110. data/vendor/buildr/lib/buildr/core/jrebel.rb +42 -0
  111. data/vendor/buildr/lib/buildr/core/linux.rb +30 -0
  112. data/vendor/buildr/lib/buildr/core/osx.rb +46 -0
  113. data/vendor/buildr/lib/buildr/core/progressbar.rb +161 -0
  114. data/vendor/buildr/lib/buildr/core/project.rb +975 -0
  115. data/vendor/buildr/lib/buildr/core/run.rb +43 -0
  116. data/vendor/buildr/lib/buildr/core/shell.rb +137 -0
  117. data/vendor/buildr/lib/buildr/core/test.rb +843 -0
  118. data/vendor/buildr/lib/buildr/core/transports.rb +565 -0
  119. data/vendor/buildr/lib/buildr/core/util.rb +537 -0
  120. data/vendor/buildr/lib/buildr/groovy.rb +20 -0
  121. data/vendor/buildr/lib/buildr/groovy/bdd.rb +106 -0
  122. data/vendor/buildr/lib/buildr/groovy/compiler.rb +153 -0
  123. data/vendor/buildr/lib/buildr/groovy/doc.rb +76 -0
  124. data/vendor/buildr/lib/buildr/groovy/shell.rb +57 -0
  125. data/vendor/buildr/lib/buildr/ide.rb +19 -0
  126. data/vendor/buildr/lib/buildr/ide/eclipse.rb +427 -0
  127. data/vendor/buildr/lib/buildr/ide/eclipse/java.rb +53 -0
  128. data/vendor/buildr/lib/buildr/ide/eclipse/plugin.rb +71 -0
  129. data/vendor/buildr/lib/buildr/ide/eclipse/scala.rb +68 -0
  130. data/vendor/buildr/lib/buildr/ide/idea.rb +576 -0
  131. data/vendor/buildr/lib/buildr/java.rb +25 -0
  132. data/vendor/buildr/lib/buildr/java/ant.rb +94 -0
  133. data/vendor/buildr/lib/buildr/java/bdd.rb +460 -0
  134. data/vendor/buildr/lib/buildr/java/cobertura.rb +297 -0
  135. data/vendor/buildr/lib/buildr/java/commands.rb +223 -0
  136. data/vendor/buildr/lib/buildr/java/compiler.rb +135 -0
  137. data/vendor/buildr/lib/buildr/java/deprecated.rb +141 -0
  138. data/vendor/buildr/lib/buildr/java/doc.rb +86 -0
  139. data/vendor/buildr/lib/buildr/java/ecj.rb +69 -0
  140. data/vendor/buildr/lib/buildr/java/emma.rb +244 -0
  141. data/vendor/buildr/lib/buildr/java/external.rb +73 -0
  142. data/vendor/buildr/lib/buildr/java/jruby.rb +122 -0
  143. data/vendor/buildr/lib/buildr/java/jtestr_result.rb +295 -0
  144. data/vendor/buildr/lib/buildr/java/jtestr_runner.rb.erb +116 -0
  145. data/vendor/buildr/lib/buildr/java/org/apache/buildr/JavaTestFilter.class +0 -0
  146. data/vendor/buildr/lib/buildr/java/org/apache/buildr/JavaTestFilter.java +142 -0
  147. data/vendor/buildr/lib/buildr/java/packaging.rb +734 -0
  148. data/vendor/buildr/lib/buildr/java/pom.rb +178 -0
  149. data/vendor/buildr/lib/buildr/java/rjb.rb +154 -0
  150. data/vendor/buildr/lib/buildr/java/test_result.rb +101 -0
  151. data/vendor/buildr/lib/buildr/java/tests.rb +362 -0
  152. data/vendor/buildr/lib/buildr/java/version_requirement.rb +172 -0
  153. data/vendor/buildr/lib/buildr/packaging.rb +25 -0
  154. data/vendor/buildr/lib/buildr/packaging/archive.rb +535 -0
  155. data/vendor/buildr/lib/buildr/packaging/artifact.rb +903 -0
  156. data/vendor/buildr/lib/buildr/packaging/artifact_namespace.rb +984 -0
  157. data/vendor/buildr/lib/buildr/packaging/artifact_search.rb +140 -0
  158. data/vendor/buildr/lib/buildr/packaging/gems.rb +105 -0
  159. data/vendor/buildr/lib/buildr/packaging/package.rb +249 -0
  160. data/vendor/buildr/lib/buildr/packaging/tar.rb +189 -0
  161. data/vendor/buildr/lib/buildr/packaging/version_requirement.rb +192 -0
  162. data/vendor/buildr/lib/buildr/packaging/zip.rb +178 -0
  163. data/vendor/buildr/lib/buildr/packaging/ziptask.rb +356 -0
  164. data/vendor/buildr/lib/buildr/resources/buildr.icns +0 -0
  165. data/vendor/buildr/lib/buildr/resources/completed.png +0 -0
  166. data/vendor/buildr/lib/buildr/resources/failed.png +0 -0
  167. data/vendor/buildr/lib/buildr/resources/icons-license.txt +17 -0
  168. data/vendor/buildr/lib/buildr/run.rb +195 -0
  169. data/vendor/buildr/lib/buildr/scala.rb +26 -0
  170. data/vendor/buildr/lib/buildr/scala/bdd.rb +118 -0
  171. data/vendor/buildr/lib/buildr/scala/compiler.rb +242 -0
  172. data/vendor/buildr/lib/buildr/scala/doc.rb +142 -0
  173. data/vendor/buildr/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.class +0 -0
  174. data/vendor/buildr/lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.java +57 -0
  175. data/vendor/buildr/lib/buildr/scala/shell.rb +52 -0
  176. data/vendor/buildr/lib/buildr/scala/tests.rb +171 -0
  177. data/vendor/buildr/lib/buildr/shell.rb +185 -0
  178. data/vendor/buildr/lib/buildr/version.rb +18 -0
  179. data/vendor/buildr/rakelib/all-in-one.rake +113 -0
  180. data/vendor/buildr/rakelib/checks.rake +57 -0
  181. data/vendor/buildr/rakelib/doc.rake +137 -0
  182. data/vendor/buildr/rakelib/metrics.rake +39 -0
  183. data/vendor/buildr/rakelib/package.rake +73 -0
  184. data/vendor/buildr/rakelib/release.rake +161 -0
  185. data/vendor/buildr/rakelib/rspec.rake +101 -0
  186. data/vendor/buildr/rakelib/setup.rake +66 -0
  187. data/vendor/buildr/rakelib/stage.rake +220 -0
  188. data/vendor/buildr/spec/addon/bnd_spec.rb +330 -0
  189. data/vendor/buildr/spec/addon/drb_spec.rb +328 -0
  190. data/vendor/buildr/spec/addon/jaxb_xjc_spec.rb +125 -0
  191. data/vendor/buildr/spec/core/application_spec.rb +631 -0
  192. data/vendor/buildr/spec/core/build_spec.rb +837 -0
  193. data/vendor/buildr/spec/core/cc_spec.rb +224 -0
  194. data/vendor/buildr/spec/core/checks_spec.rb +519 -0
  195. data/vendor/buildr/spec/core/common_spec.rb +725 -0
  196. data/vendor/buildr/spec/core/compile_spec.rb +658 -0
  197. data/vendor/buildr/spec/core/doc_spec.rb +195 -0
  198. data/vendor/buildr/spec/core/extension_spec.rb +201 -0
  199. data/vendor/buildr/spec/core/generate_spec.rb +33 -0
  200. data/vendor/buildr/spec/core/project_spec.rb +772 -0
  201. data/vendor/buildr/spec/core/run_spec.rb +93 -0
  202. data/vendor/buildr/spec/core/shell_spec.rb +146 -0
  203. data/vendor/buildr/spec/core/test_spec.rb +1320 -0
  204. data/vendor/buildr/spec/core/transport_spec.rb +544 -0
  205. data/vendor/buildr/spec/core/util_spec.rb +141 -0
  206. data/vendor/buildr/spec/groovy/bdd_spec.rb +80 -0
  207. data/vendor/buildr/spec/groovy/compiler_spec.rb +251 -0
  208. data/vendor/buildr/spec/groovy/doc_spec.rb +65 -0
  209. data/vendor/buildr/spec/ide/eclipse_spec.rb +739 -0
  210. data/vendor/buildr/spec/ide/idea_spec.rb +1144 -0
  211. data/vendor/buildr/spec/java/ant_spec.rb +37 -0
  212. data/vendor/buildr/spec/java/bdd_spec.rb +374 -0
  213. data/vendor/buildr/spec/java/cobertura_spec.rb +112 -0
  214. data/vendor/buildr/spec/java/commands_spec.rb +93 -0
  215. data/vendor/buildr/spec/java/compiler_spec.rb +252 -0
  216. data/vendor/buildr/spec/java/doc_spec.rb +56 -0
  217. data/vendor/buildr/spec/java/ecj_spec.rb +115 -0
  218. data/vendor/buildr/spec/java/emma_spec.rb +121 -0
  219. data/vendor/buildr/spec/java/external_spec.rb +56 -0
  220. data/vendor/buildr/spec/java/java_spec.rb +132 -0
  221. data/vendor/buildr/spec/java/packaging_spec.rb +1270 -0
  222. data/vendor/buildr/spec/java/run_spec.rb +78 -0
  223. data/vendor/buildr/spec/java/test_coverage_helper.rb +257 -0
  224. data/vendor/buildr/spec/java/tests_spec.rb +497 -0
  225. data/vendor/buildr/spec/packaging/archive_spec.rb +775 -0
  226. data/vendor/buildr/spec/packaging/artifact_namespace_spec.rb +743 -0
  227. data/vendor/buildr/spec/packaging/artifact_spec.rb +1066 -0
  228. data/vendor/buildr/spec/packaging/packaging_helper.rb +63 -0
  229. data/vendor/buildr/spec/packaging/packaging_spec.rb +719 -0
  230. data/vendor/buildr/spec/sandbox.rb +165 -0
  231. data/vendor/buildr/spec/scala/bdd_spec.rb +124 -0
  232. data/vendor/buildr/spec/scala/compiler_spec.rb +289 -0
  233. data/vendor/buildr/spec/scala/doc_spec.rb +88 -0
  234. data/vendor/buildr/spec/scala/scala.rb +38 -0
  235. data/vendor/buildr/spec/scala/tests_spec.rb +283 -0
  236. data/vendor/buildr/spec/spec_helpers.rb +369 -0
  237. data/vendor/buildr/spec/version_requirement_spec.rb +143 -0
  238. data/vendor/buildr/spec/xpath_matchers.rb +121 -0
  239. data/vendor/buildr/tests/BUILDR-320/Buildfile +29 -0
  240. data/vendor/buildr/tests/JavaSystemProperty/Buildfile +18 -0
  241. data/vendor/buildr/tests/JavaSystemProperty/src/test/java/FooTest.java +24 -0
  242. data/vendor/buildr/tests/compile_with_parent/Buildfile +18 -0
  243. data/vendor/buildr/tests/compile_with_parent/child/src/main/java/Foo.java +23 -0
  244. data/vendor/buildr/tests/helloWorld/Buildfile +20 -0
  245. data/vendor/buildr/tests/helloWorld/src/main/java/HelloWorld.java +23 -0
  246. data/vendor/buildr/tests/integration_testing.rb +56 -0
  247. data/vendor/buildr/tests/junit3/Buildfile +9 -0
  248. data/vendor/buildr/tests/junit3/src/main/java/Foo.java +23 -0
  249. data/vendor/buildr/tests/junit3/src/test/java/FooTest.java +28 -0
  250. data/vendor/buildr/tests/package_war_as_jar/Buildfile +15 -0
  251. data/vendor/buildr/tests/package_war_as_jar/src/main/java/Foo.java +19 -0
  252. metadata +524 -0
@@ -0,0 +1,537 @@
1
+ # Licensed to the Apache Software Foundation (ASF) under one or more
2
+ # contributor license agreements. See the NOTICE file distributed with this
3
+ # work for additional information regarding copyright ownership. The ASF
4
+ # licenses this file to you under the Apache License, Version 2.0 (the
5
+ # "License"); you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12
+ # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13
+ # License for the specific language governing permissions and limitations under
14
+ # the License.
15
+
16
+
17
+ require 'rbconfig'
18
+ require 'pathname'
19
+ autoload :Tempfile, 'tempfile'
20
+ autoload :YAML, 'yaml'
21
+ autoload :REXML, 'rexml/document'
22
+ gem 'xml-simple' ; autoload :XmlSimple, 'xmlsimple'
23
+ gem 'builder' ; autoload :Builder, 'builder' # A different kind of buildr, one we use to create XML.
24
+ require 'highline/import'
25
+
26
+
27
+ module Buildr
28
+
29
+ module Util
30
+ extend self
31
+
32
+ def java_platform?
33
+ RUBY_PLATFORM =~ /java/
34
+ end
35
+
36
+ # In order to determine if we are running on a windows OS,
37
+ # prefer this function instead of using Gem.win_platform?.
38
+ #
39
+ # Gem.win_platform? only checks these RUBY_PLATFORM global,
40
+ # that in some cases like when running on JRuby is not
41
+ # succifient for our purpose:
42
+ #
43
+ # For JRuby, the value for RUBY_PLATFORM will always be 'java'
44
+ # That's why this function checks on Config::CONFIG['host_os']
45
+ def win_os?
46
+ Config::CONFIG['host_os'] =~ /windows|cygwin|bccwin|cygwin|djgpp|mingw|mswin|wince/i
47
+ end
48
+
49
+ # Runs Ruby with these command line arguments. The last argument may be a hash,
50
+ # supporting the following keys:
51
+ # :command -- Runs the specified script (e.g., :command=>'gem')
52
+ # :sudo -- Run as sudo on operating systems that require it.
53
+ # :verbose -- Override Rake's verbose flag.
54
+ def ruby(*args)
55
+ options = Hash === args.last ? args.pop : {}
56
+ cmd = []
57
+ ruby_bin = normalize_path(Config::CONFIG['ruby_install_name'], Config::CONFIG['bindir'])
58
+ if options.delete(:sudo) && !(win_os? || Process.uid == File.stat(ruby_bin).uid)
59
+ cmd << 'sudo' << '-u' << "##{File.stat(ruby_bin).uid}"
60
+ end
61
+ cmd << ruby_bin
62
+ cmd << '-S' << options.delete(:command) if options[:command]
63
+ cmd.concat args.flatten
64
+ cmd.push options
65
+ sh *cmd do |ok, status|
66
+ ok or fail "Command ruby failed with status (#{status ? status.exitstatus : 'unknown'}): [#{cmd.join(" ")}]"
67
+ end
68
+ end
69
+
70
+ # Just like File.expand_path, but for windows systems it
71
+ # capitalizes the drive name and ensures backslashes are used
72
+ def normalize_path(path, *dirs)
73
+ path = File.expand_path(path, *dirs)
74
+ if win_os?
75
+ path.gsub!('/', '\\').gsub!(/^[a-zA-Z]+:/) { |s| s.upcase }
76
+ else
77
+ path
78
+ end
79
+ end
80
+
81
+ # Return the timestamp of file, without having to create a file task
82
+ def timestamp(file)
83
+ if File.exist?(file)
84
+ File.mtime(file)
85
+ else
86
+ Rake::EARLY
87
+ end
88
+ end
89
+
90
+ # Return the path to the first argument, starting from the path provided by the
91
+ # second argument.
92
+ #
93
+ # For example:
94
+ # relative_path('foo/bar', 'foo')
95
+ # => 'bar'
96
+ # relative_path('foo/bar', 'baz')
97
+ # => '../foo/bar'
98
+ # relative_path('foo/bar')
99
+ # => 'foo/bar'
100
+ # relative_path('/foo/bar', 'baz')
101
+ # => '/foo/bar'
102
+ def relative_path(to, from = '.')
103
+ to = Pathname.new(to).cleanpath
104
+ return to.to_s if from.nil?
105
+ to_path = Pathname.new(File.expand_path(to.to_s, "/"))
106
+ from_path = Pathname.new(File.expand_path(from.to_s, "/"))
107
+ to_path.relative_path_from(from_path).to_s
108
+ end
109
+
110
+ # Generally speaking, it's not a good idea to operate on dot files (files starting with dot).
111
+ # These are considered invisible files (.svn, .hg, .irbrc, etc). Dir.glob/FileList ignore them
112
+ # on purpose. There are few cases where we do have to work with them (filter, zip), a better
113
+ # solution is welcome, maybe being more explicit with include. For now, this will do.
114
+ def recursive_with_dot_files(*dirs)
115
+ FileList[dirs.map { |dir| File.join(dir, '/**/{*,.*}') }].reject { |file| File.basename(file) =~ /^[.]{1,2}$/ }
116
+ end
117
+
118
+ # :call-seq:
119
+ # replace_extension(filename) => filename_with_updated_extension
120
+ #
121
+ # Replace the file extension, e.g.,
122
+ # replace_extension("foo.zip", "txt") => "foo.txt"
123
+ def replace_extension(filename, new_ext)
124
+ ext = File.extname(filename)
125
+ if filename =~ /\.$/
126
+ filename + new_ext
127
+ elsif ext == ""
128
+ filename + "." + new_ext
129
+ else
130
+ filename[0..-ext.length] + new_ext
131
+ end
132
+ end
133
+
134
+ # Utility methods for running gem commands
135
+ module Gems #:nodoc:
136
+ extend self
137
+
138
+ # Install gems specified by each Gem::Dependency if they are missing. This method prompts the user
139
+ # for permission before installing anything.
140
+ #
141
+ # Returns the installed Gem::Dependency objects or fails if permission not granted or when buildr
142
+ # is not running interactively (on a tty)
143
+ def install(*dependencies)
144
+ raise ArgumentError, "Expected at least one argument" if dependencies.empty?
145
+ not_found_deps = []
146
+ to_install = []
147
+ remote = dependencies.each do |dep|
148
+ if spec = Gem.source_index.search(dep).last
149
+ # Found in local repo
150
+ to_install << spec
151
+ elsif (spec = Gem::SpecFetcher.fetcher.fetch(dep, true).map { |spec, source| spec }.last)
152
+ # Found in remote repo
153
+ to_install << spec
154
+ else
155
+ # Not found anywhere
156
+ not_found_deps << "#{dep.name} #{dep.requirement}"
157
+ end
158
+ end
159
+ fail Gem::LoadError, "Build requires the gems #{not_found_deps.join(', ')}, which cannot be found in local or remote repository." unless not_found_deps.empty?
160
+ uses = "This build requires the gems #{to_install.map(&:full_name).join(', ')}:"
161
+ fail Gem::LoadError, "#{uses} to install, run Buildr interactively." unless $stdout.isatty
162
+ unless agree("#{uses} do you want me to install them? [Y/n]", true)
163
+ fail Gem::LoadError, 'Cannot build without these gems.'
164
+ end
165
+ to_install.each do |spec|
166
+ say "Installing #{spec.full_name} ... " if verbose
167
+ command 'install', spec.name, '-v', spec.version.to_s, :verbose => false
168
+ Gem.source_index.load_gems_in Gem::SourceIndex.installed_spec_directories
169
+ end
170
+ to_install
171
+ end
172
+
173
+ # Execute a GemRunner command
174
+ def command(cmd, *args)
175
+ options = Hash === args.last ? args.pop : {}
176
+ gem_home = ENV['GEM_HOME'] || Gem.path.find { |f| File.writable?(f) }
177
+ options[:sudo] = :root unless Util.win_os? || gem_home
178
+ options[:command] = 'gem'
179
+ args << options
180
+ args.unshift '-i', gem_home if cmd == 'install' && gem_home && !args.any?{ |a| a[/-i|--install-dir/] }
181
+ Util.ruby cmd, *args
182
+ end
183
+
184
+ end # Gems
185
+
186
+ end # Util
187
+ end
188
+
189
+
190
+ class Object #:nodoc:
191
+ unless defined? instance_exec # 1.9
192
+ module InstanceExecMethods #:nodoc:
193
+ end
194
+ include InstanceExecMethods
195
+
196
+ # Evaluate the block with the given arguments within the context of
197
+ # this object, so self is set to the method receiver.
198
+ #
199
+ # From Mauricio's http://eigenclass.org/hiki/bounded+space+instance_exec
200
+ def instance_exec(*args, &block)
201
+ begin
202
+ old_critical, Thread.critical = Thread.critical, true
203
+ n = 0
204
+ n += 1 while respond_to?(method_name = "__instance_exec#{n}")
205
+ InstanceExecMethods.module_eval { define_method(method_name, &block) }
206
+ ensure
207
+ Thread.critical = old_critical
208
+ end
209
+
210
+ begin
211
+ send(method_name, *args)
212
+ ensure
213
+ InstanceExecMethods.module_eval { remove_method(method_name) } rescue nil
214
+ end
215
+ end
216
+ end
217
+ end
218
+
219
+ module Kernel #:nodoc:
220
+ unless defined? tap # 1.9
221
+ def tap
222
+ yield self if block_given?
223
+ self
224
+ end
225
+ end
226
+ end
227
+
228
+ class Symbol #:nodoc:
229
+ unless defined? to_proc # 1.9
230
+ # Borrowed from Ruby 1.9.
231
+ def to_proc
232
+ Proc.new{|*args| args.shift.__send__(self, *args)}
233
+ end
234
+ end
235
+ end
236
+
237
+ unless defined? BasicObject # 1.9
238
+ class BasicObject #:nodoc:
239
+ (instance_methods - ['__send__', '__id__', '==', 'send', 'send!', 'respond_to?', 'equal?', 'object_id']).
240
+ each do |method|
241
+ undef_method method
242
+ end
243
+
244
+ def self.ancestors
245
+ [Kernel]
246
+ end
247
+ end
248
+ end
249
+
250
+
251
+ class OpenObject < Hash
252
+
253
+ def initialize(source=nil, &block)
254
+ super &block
255
+ update source if source
256
+ end
257
+
258
+ def method_missing(symbol, *args)
259
+ if symbol.to_s =~ /=$/
260
+ self[symbol.to_s[0..-2].to_sym] = args.first
261
+ else
262
+ self[symbol]
263
+ end
264
+ end
265
+ end
266
+
267
+
268
+ class Hash
269
+
270
+ class << self
271
+
272
+ # :call-seq:
273
+ # Hash.from_java_properties(string)
274
+ #
275
+ # Returns a hash from a string in the Java properties file format. For example:
276
+ # str = 'foo=bar\nbaz=fab'
277
+ # Hash.from_properties(str)
278
+ # => { 'foo'=>'bar', 'baz'=>'fab' }.to_properties
279
+ def from_java_properties(string)
280
+ hash = {}
281
+ input_stream = Java.java.io.StringBufferInputStream.new(string)
282
+ java_properties = Java.java.util.Properties.new
283
+ java_properties.load input_stream
284
+ keys = java_properties.keySet.iterator
285
+ while keys.hasNext
286
+ # Calling key.next in JRuby returns a java.lang.String, behaving as a Ruby string and life is good.
287
+ # MRI, unfortunately, treats next() like the interface says returning an object that's not a String,
288
+ # and the Hash doesn't work the way we need it to. Unfortunately, we can call toString on MRI's object,
289
+ # but not on the JRuby one; calling to_s on the JRuby object returns what we need, but ... you guessed it.
290
+ # So this seems like the one hack to unite them both.
291
+ #key = Java.java.lang.String.valueOf(keys.next.to_s)
292
+ key = keys.next
293
+ key = key.toString unless String === key
294
+ hash[key] = java_properties.getProperty(key)
295
+ end
296
+ hash
297
+ end
298
+
299
+ end
300
+
301
+ # :call-seq:
302
+ # only(keys*) => hash
303
+ #
304
+ # Returns a new hash with only the specified keys.
305
+ #
306
+ # For example:
307
+ # { :a=>1, :b=>2, :c=>3, :d=>4 }.only(:a, :c)
308
+ # => { :a=>1, :c=>3 }
309
+ def only(*keys)
310
+ keys.inject({}) { |hash, key| has_key?(key) ? hash.merge(key=>self[key]) : hash }
311
+ end
312
+
313
+
314
+ # :call-seq:
315
+ # except(keys*) => hash
316
+ #
317
+ # Returns a new hash without the specified keys.
318
+ #
319
+ # For example:
320
+ # { :a=>1, :b=>2, :c=>3, :d=>4 }.except(:a, :c)
321
+ # => { :b=>2, :d=>4 }
322
+ def except(*keys)
323
+ (self.keys - keys).inject({}) { |hash, key| hash.merge(key=>self[key]) }
324
+ end
325
+
326
+ # :call-seq:
327
+ # to_java_properties => string
328
+ #
329
+ # Convert hash to string format used for Java properties file. For example:
330
+ # { 'foo'=>'bar', 'baz'=>'fab' }.to_properties
331
+ # => foo=bar
332
+ # baz=fab
333
+ def to_java_properties
334
+ keys.sort.map { |key|
335
+ value = self[key].gsub(/[\t\r\n\f\\]/) { |escape| "\\" + {"\t"=>"t", "\r"=>"r", "\n"=>"n", "\f"=>"f", "\\"=>"\\"}[escape] }
336
+ "#{key}=#{value}"
337
+ }.join("\n")
338
+ end
339
+
340
+ end
341
+
342
+ if Buildr::Util.java_platform?
343
+ require 'ffi'
344
+
345
+ # Workaround for BUILDR-535: when requiring 'ffi', JRuby defines an :error
346
+ # method with arity 0.
347
+ class Module
348
+ remove_method :error if method_defined?(:error)
349
+ end
350
+
351
+ # Fix for BUILDR-292.
352
+ # JRuby fails to rename a file on different devices
353
+ # this monkey-patch wont be needed when JRUBY-3381 gets resolved.
354
+ module FileUtils #:nodoc:
355
+ alias_method :__mv_native, :mv
356
+
357
+ def mv(from, to, options = nil)
358
+ dir_to = File.directory?(to) ? to : File.dirname(to)
359
+ Array(from).each do |from|
360
+ dir_from = File.dirname(from)
361
+ if File.stat(dir_from).dev != File.stat(dir_to).dev
362
+ cp from, to, options
363
+ rm from, options
364
+ else
365
+ __mv_native from, to, options
366
+ end
367
+ end
368
+ end
369
+ private :mv
370
+ end
371
+
372
+ module RakeFileUtils #:nodoc:
373
+ def rake_merge_option(args, defaults)
374
+ defaults[:verbose] = false if defaults[:verbose] == :default
375
+
376
+ if Hash === args.last
377
+ defaults.update(args.last)
378
+ args.pop
379
+ end
380
+ args.push defaults
381
+ args
382
+ end
383
+ private :rake_merge_option
384
+ end
385
+
386
+ module Buildr
387
+ class ProcessStatus
388
+ attr_reader :pid, :termsig, :stopsig, :exitstatus
389
+
390
+ def initialize(pid, success, exitstatus)
391
+ @pid = pid
392
+ @success = success
393
+ @exitstatus = exitstatus
394
+
395
+ @termsig = nil
396
+ @stopsig = nil
397
+ end
398
+
399
+ def &(num)
400
+ pid & num
401
+ end
402
+
403
+ def ==(other)
404
+ pid == other.pid
405
+ end
406
+
407
+ def >>(num)
408
+ pid >> num
409
+ end
410
+
411
+ def coredump?
412
+ false
413
+ end
414
+
415
+ def exited?
416
+ true
417
+ end
418
+
419
+ def stopped?
420
+ false
421
+ end
422
+
423
+ def success?
424
+ @success
425
+ end
426
+
427
+ def to_i
428
+ pid
429
+ end
430
+
431
+ def to_int
432
+ pid
433
+ end
434
+
435
+ def to_s
436
+ pid.to_s
437
+ end
438
+ end
439
+ end
440
+
441
+ module FileUtils
442
+ extend FFI::Library
443
+
444
+ ffi_lib FFI::Platform::LIBC
445
+
446
+ alias_method :__jruby_system__, :system
447
+ attach_function :system, [:string], :int
448
+ alias_method :__native_system__, :system
449
+ alias_method :system, :__jruby_system__
450
+
451
+ # code "borrowed" directly from Rake
452
+ def sh(*cmd, &block)
453
+ options = (Hash === cmd.last) ? cmd.pop : {}
454
+ unless block_given?
455
+ show_command = cmd.join(" ")
456
+ show_command = show_command[0,42] + "..."
457
+
458
+ block = lambda { |ok, status|
459
+ ok or fail "Command failed with status (#{status.exitstatus}): [#{show_command}]"
460
+ }
461
+ end
462
+ if RakeFileUtils.verbose_flag == :default
463
+ options[:verbose] = false
464
+ else
465
+ options[:verbose] ||= RakeFileUtils.verbose_flag
466
+ end
467
+ options[:noop] ||= RakeFileUtils.nowrite_flag
468
+ rake_check_options options, :noop, :verbose
469
+ rake_output_message cmd.join(" ") if options[:verbose]
470
+ unless options[:noop]
471
+ if Buildr::Util.win_os?
472
+ # Ruby uses forward slashes regardless of platform,
473
+ # unfortunately cd c:/some/path fails on Windows
474
+ pwd = Dir.pwd.gsub(%r{/}, '\\')
475
+ cd = "cd /d \"#{pwd}\" && "
476
+ else
477
+ cd = "cd '#{Dir.pwd}' && "
478
+ end
479
+ args = if cmd.size > 1 then cmd[1..cmd.size] else [] end
480
+
481
+ res = if Buildr::Util.win_os? && cmd.size == 1
482
+ __native_system__("#{cd} call #{cmd.first}")
483
+ else
484
+ arg_str = args.map { |a| "'#{a}'" }
485
+ __native_system__(cd + cmd.first + ' ' + arg_str.join(' '))
486
+ end
487
+ $? = Buildr::ProcessStatus.new(0, res == 0, res) # KLUDGE
488
+ block.call(res == 0, $?)
489
+ end
490
+ end
491
+
492
+ end
493
+ else
494
+ module FileUtils
495
+ # code "borrowed" directly from Rake
496
+ def sh(*cmd, &block)
497
+ options = (Hash === cmd.last) ? cmd.pop : {}
498
+ unless block_given?
499
+ show_command = cmd.join(" ")
500
+ show_command = show_command[0,42] + "..."
501
+
502
+ block = lambda { |ok, status|
503
+ ok or fail "Command failed with status (#{status.exitstatus}): [#{show_command}]"
504
+ }
505
+ end
506
+ if RakeFileUtils.verbose_flag == :default
507
+ options[:verbose] = false
508
+ else
509
+ options[:verbose] ||= RakeFileUtils.verbose_flag
510
+ end
511
+ options[:noop] ||= RakeFileUtils.nowrite_flag
512
+ rake_check_options options, :noop, :verbose
513
+ rake_output_message cmd.join(" ") if options[:verbose]
514
+ unless options[:noop]
515
+ if Buildr::Util.win_os?
516
+ # Ruby uses forward slashes regardless of platform,
517
+ # unfortunately cd c:/some/path fails on Windows
518
+ pwd = Dir.pwd.gsub(%r{/}, '\\')
519
+ cd = "cd /d \"#{pwd}\" && "
520
+ else
521
+ cd = "cd '#{Dir.pwd}' && "
522
+ end
523
+
524
+ args = if cmd.size > 1 then cmd[1..cmd.size] else [] end
525
+
526
+ res = if Buildr::Util.win_os? && cmd.size == 1
527
+ system("#{cd} call #{cmd.first}")
528
+ else
529
+ arg_str = args.map { |a| "'#{a}'" }
530
+ system(cd + cmd.first + ' ' + arg_str.join(' '))
531
+ end
532
+
533
+ block.call(res, $?)
534
+ end
535
+ end
536
+ end
537
+ end