buildr 1.4.4 → 1.4.5
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +46 -0
- data/Rakefile +0 -1
- data/addon/buildr/bnd.rb +147 -0
- data/addon/buildr/jaxb_xjc.rb +72 -0
- data/addon/buildr/protobuf.rb +14 -1
- data/buildr.gemspec +6 -2
- data/doc/artifacts.textile +6 -0
- data/doc/contributing.textile +3 -0
- data/doc/download.textile +60 -0
- data/doc/index.textile +9 -15
- data/doc/installing.textile +23 -6
- data/doc/mailing_lists.textile +4 -0
- data/doc/more_stuff.textile +333 -6
- data/doc/packaging.textile +187 -1
- data/lib/buildr.rb +8 -1
- data/lib/buildr/clojure.rb +34 -0
- data/lib/buildr/clojure/shell.rb +52 -0
- data/lib/buildr/core.rb +3 -0
- data/lib/buildr/core/#application.rb# +700 -0
- data/lib/buildr/core/application.rb +18 -8
- data/lib/buildr/core/build.rb +2 -2
- data/lib/buildr/core/cc.rb +57 -63
- data/lib/buildr/core/checks.rb +4 -5
- data/lib/buildr/core/doc.rb +3 -1
- data/lib/buildr/core/generate.rb +2 -0
- data/lib/buildr/core/jrebel.rb +42 -0
- data/lib/buildr/core/linux.rb +30 -0
- data/lib/buildr/core/project.rb +9 -8
- data/lib/buildr/core/run.rb +3 -3
- data/lib/buildr/core/shell.rb +29 -90
- data/lib/buildr/core/test.rb +3 -3
- data/lib/buildr/core/transports.rb +5 -5
- data/lib/buildr/core/util.rb +2 -2
- data/lib/buildr/groovy.rb +1 -0
- data/lib/buildr/groovy/compiler.rb +12 -1
- data/lib/buildr/groovy/doc.rb +76 -0
- data/lib/buildr/groovy/shell.rb +24 -15
- data/lib/buildr/ide.rb +1 -1
- data/lib/buildr/ide/idea.rb +527 -141
- data/lib/buildr/java/bdd.rb +18 -13
- data/lib/buildr/java/ecj.rb +1 -3
- data/lib/buildr/java/jtestr_result.rb +295 -0
- data/lib/buildr/java/jtestr_runner.rb.erb +4 -6
- data/lib/buildr/java/packaging.rb +14 -3
- data/lib/buildr/java/pom.rb +6 -2
- data/lib/buildr/java/test_result.rb +15 -243
- data/lib/buildr/java/tests.rb +1 -1
- data/lib/buildr/packaging.rb +2 -1
- data/lib/buildr/packaging/#package.rb.rej# +19 -0
- data/lib/buildr/packaging/archive.rb +13 -3
- data/lib/buildr/packaging/artifact.rb +11 -12
- data/lib/buildr/packaging/tar.rb +4 -1
- data/lib/buildr/packaging/zip.rb +106 -1
- data/lib/buildr/resources/completed.png +0 -0
- data/lib/buildr/resources/failed.png +0 -0
- data/lib/buildr/resources/icons-license.txt +17 -0
- data/lib/buildr/run.rb +7 -14
- data/lib/buildr/scala/#Untitled-2# +7 -0
- data/lib/buildr/scala/bdd.rb +1 -1
- data/lib/buildr/scala/compiler.rb +1 -1
- data/lib/buildr/scala/doc.rb +20 -2
- data/lib/buildr/scala/shell.rb +14 -22
- data/lib/buildr/scala/tests.rb +2 -2
- data/lib/buildr/shell.rb +113 -108
- data/lib/buildr/version.rb +1 -1
- data/rakelib/checks.rake +9 -7
- data/rakelib/doc.rake +10 -0
- data/rakelib/release.rake +9 -0
- data/rakelib/rspec.rake +27 -28
- data/rakelib/setup.rake +1 -1
- data/rakelib/stage.rake +2 -2
- data/spec/addon/bnd_spec.rb +330 -0
- data/spec/addon/jaxb_xjc_spec.rb +125 -0
- data/spec/core/application_spec.rb +1 -1
- data/spec/core/build_spec.rb +7 -7
- data/spec/core/cc_spec.rb +154 -104
- data/spec/core/compile_spec.rb +3 -3
- data/spec/core/project_spec.rb +10 -0
- data/spec/core/run_spec.rb +1 -0
- data/spec/core/shell_spec.rb +146 -0
- data/spec/groovy/doc_spec.rb +65 -0
- data/spec/ide/eclipse_spec.rb +1 -1
- data/spec/ide/idea_spec.rb +1145 -0
- data/spec/java/bdd_spec.rb +3 -3
- data/spec/java/emma_spec.rb +2 -0
- data/spec/java/packaging_spec.rb +40 -11
- data/spec/java/test_coverage_helper.rb +1 -1
- data/spec/packaging/archive_spec.rb +76 -21
- data/spec/packaging/artifact_namespace_spec.rb +1 -1
- data/spec/packaging/artifact_spec.rb +14 -7
- data/spec/sandbox.rb +11 -4
- data/spec/scala/bdd_spec.rb +2 -2
- data/spec/scala/compiler_spec.rb +2 -2
- data/spec/scala/doc_spec.rb +24 -4
- data/spec/scala/scala.rb +2 -2
- data/spec/scala/tests_spec.rb +2 -2
- data/spec/spec_helpers.rb +9 -8
- data/spec/xpath_matchers.rb +121 -0
- metadata +248 -164
- data/lib/buildr/ide/idea.ipr.template +0 -300
- data/lib/buildr/ide/idea7x.ipr.template +0 -290
- data/lib/buildr/ide/idea7x.rb +0 -231
- data/spec/ide/idea7x_spec.rb +0 -96
data/spec/scala/scala.rb
CHANGED
@@ -18,8 +18,8 @@ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helpers')
|
|
18
18
|
|
19
19
|
describe 'scala' do
|
20
20
|
# Specific version of Scala required for specs
|
21
|
-
required_version = '2.8.
|
22
|
-
scala_version_str = "2.8.
|
21
|
+
required_version = '2.8.1'
|
22
|
+
scala_version_str = "2.8.1.final"
|
23
23
|
|
24
24
|
it 'should automatically add the remote scala-tools.org repository' do
|
25
25
|
# NOTE: the sandbox environment clears "repositories.remote" so we can't
|
data/spec/scala/tests_spec.rb
CHANGED
@@ -27,8 +27,8 @@ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helpers')
|
|
27
27
|
describe Buildr::Scala::ScalaTest do
|
28
28
|
|
29
29
|
before(:each) do
|
30
|
-
# Force Scala 2.8.
|
31
|
-
Buildr.settings.build['scala.version'] = "2.8.
|
30
|
+
# Force Scala 2.8.1 for specs; don't want to rely on SCALA_HOME
|
31
|
+
Buildr.settings.build['scala.version'] = "2.8.1"
|
32
32
|
end
|
33
33
|
|
34
34
|
it 'should be the default test framework when test cases are in Scala' do
|
data/spec/spec_helpers.rb
CHANGED
@@ -24,7 +24,7 @@ unless defined?(SpecHelpers)
|
|
24
24
|
spec = Gem::Specification.load(File.expand_path('../buildr.gemspec', File.dirname(__FILE__)))
|
25
25
|
# Dependency.version_requirements deprecated in rubygems 1.3.6
|
26
26
|
spec.dependencies.select {|dep| dep.type == :runtime }.each { |dep| gem dep.name, (dep.respond_to?(:requirement) ? dep.requirement.to_s : dep.version_requirements.to_s) }
|
27
|
-
|
27
|
+
|
28
28
|
# Make sure to load from these paths first, we don't want to load any
|
29
29
|
# code from Gem library.
|
30
30
|
$LOAD_PATH.unshift File.expand_path('../lib', File.dirname(__FILE__)),
|
@@ -48,7 +48,7 @@ unless defined?(SpecHelpers)
|
|
48
48
|
end
|
49
49
|
end
|
50
50
|
end
|
51
|
-
|
51
|
+
|
52
52
|
# Give a chance for plugins to do a few things before requiring the sandbox.
|
53
53
|
include SandboxHook if defined?(SandboxHook)
|
54
54
|
|
@@ -287,9 +287,9 @@ unless defined?(SpecHelpers)
|
|
287
287
|
|
288
288
|
# Value covered by range. For example:
|
289
289
|
# (1..5).should cover(3)
|
290
|
-
|
291
|
-
|
292
|
-
|
290
|
+
RSpec::Matchers.define :cover do |actual|
|
291
|
+
match do |range|
|
292
|
+
actual >= range.min && actual <= range.max
|
293
293
|
end
|
294
294
|
end
|
295
295
|
|
@@ -353,13 +353,14 @@ unless defined?(SpecHelpers)
|
|
353
353
|
|
354
354
|
# Allow using matchers within the project definition.
|
355
355
|
class Buildr::Project
|
356
|
-
include ::
|
356
|
+
include ::RSpec::Matchers, SpecHelpers
|
357
357
|
end
|
358
358
|
|
359
359
|
|
360
|
-
|
360
|
+
::RSpec.configure do |config|
|
361
361
|
# Make all Buildr methods accessible from test cases, and add various helper methods.
|
362
|
-
config.include Buildr
|
362
|
+
config.include Buildr
|
363
|
+
config.include SpecHelpers
|
363
364
|
|
364
365
|
# Sanbdox Buildr for each test.
|
365
366
|
config.include Sandbox
|
@@ -0,0 +1,121 @@
|
|
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
|
+
require 'rexml/document'
|
17
|
+
require 'rexml/element'
|
18
|
+
|
19
|
+
module RSpec
|
20
|
+
module Matchers
|
21
|
+
|
22
|
+
# check if the xpath exists one or more times
|
23
|
+
class HaveXpath
|
24
|
+
def initialize(xpath)
|
25
|
+
@xpath = xpath
|
26
|
+
end
|
27
|
+
|
28
|
+
def matches?(response)
|
29
|
+
@response = response
|
30
|
+
doc = response.is_a?(REXML::Document) ? response : REXML::Document.new(@response)
|
31
|
+
match = REXML::XPath.match(doc, @xpath)
|
32
|
+
not match.empty?
|
33
|
+
end
|
34
|
+
|
35
|
+
def failure_message
|
36
|
+
"Did not find expected xpath #{@xpath}"
|
37
|
+
end
|
38
|
+
|
39
|
+
def negative_failure_message
|
40
|
+
"Did find unexpected xpath #{@xpath}"
|
41
|
+
end
|
42
|
+
|
43
|
+
def description
|
44
|
+
"match the xpath expression #{@xpath}"
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def have_xpath(xpath)
|
49
|
+
HaveXpath.new(xpath)
|
50
|
+
end
|
51
|
+
|
52
|
+
# check if the xpath has the specified value
|
53
|
+
# value is a string and there must be a single result to match its
|
54
|
+
# equality against
|
55
|
+
class MatchXpath
|
56
|
+
def initialize(xpath, val)
|
57
|
+
@xpath = xpath
|
58
|
+
@val= val
|
59
|
+
end
|
60
|
+
|
61
|
+
def matches?(response)
|
62
|
+
@response = response
|
63
|
+
doc = response.is_a?(REXML::Document) ? response : REXML::Document.new(@response)
|
64
|
+
ok = true
|
65
|
+
REXML::XPath.each(doc, @xpath) do |e|
|
66
|
+
@actual_val = case e
|
67
|
+
when REXML::Attribute
|
68
|
+
e.to_s
|
69
|
+
when REXML::Element
|
70
|
+
e.text
|
71
|
+
else
|
72
|
+
e.to_s
|
73
|
+
end
|
74
|
+
return false unless @val == @actual_val
|
75
|
+
end
|
76
|
+
return ok
|
77
|
+
end
|
78
|
+
|
79
|
+
def failure_message
|
80
|
+
"The xpath #{@xpath} did not have the value '#{@val}' It was '#{@actual_val}'"
|
81
|
+
end
|
82
|
+
|
83
|
+
def description
|
84
|
+
"match the xpath expression #{@xpath} with #{@val}"
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
def match_xpath(xpath, val)
|
89
|
+
MatchXpath.new(xpath, val)
|
90
|
+
end
|
91
|
+
|
92
|
+
# checks if the given xpath occurs num times
|
93
|
+
class HaveNodes #:nodoc:
|
94
|
+
def initialize(xpath, num)
|
95
|
+
@xpath= xpath
|
96
|
+
@num = num
|
97
|
+
end
|
98
|
+
|
99
|
+
def matches?(response)
|
100
|
+
@response = response
|
101
|
+
doc = response.is_a?(REXML::Document) ? response : REXML::Document.new(@response)
|
102
|
+
match = REXML::XPath.match(doc, @xpath)
|
103
|
+
@num_found= match.size
|
104
|
+
@num_found == @num
|
105
|
+
end
|
106
|
+
|
107
|
+
def failure_message
|
108
|
+
"Did not find expected number of nodes #{@num} in xpath #{@xpath} Found #{@num_found}"
|
109
|
+
end
|
110
|
+
|
111
|
+
def description
|
112
|
+
"match the number of nodes #{@num}"
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
def have_nodes(xpath, num)
|
117
|
+
HaveNodes.new(xpath, num)
|
118
|
+
end
|
119
|
+
|
120
|
+
end
|
121
|
+
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: buildr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 13
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 1.4.
|
9
|
+
- 5
|
10
|
+
version: 1.4.5
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Apache Buildr
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2011-02-21 00:00:00 -08:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -90,12 +90,12 @@ dependencies:
|
|
90
90
|
requirements:
|
91
91
|
- - "="
|
92
92
|
- !ruby/object:Gem::Version
|
93
|
-
hash:
|
93
|
+
hash: 51
|
94
94
|
segments:
|
95
95
|
- 0
|
96
96
|
- 9
|
97
|
-
-
|
98
|
-
version: 0.9.
|
97
|
+
- 4
|
98
|
+
version: 0.9.4
|
99
99
|
type: :runtime
|
100
100
|
version_requirements: *id005
|
101
101
|
- !ruby/object:Gem::Dependency
|
@@ -195,25 +195,93 @@ dependencies:
|
|
195
195
|
type: :runtime
|
196
196
|
version_requirements: *id011
|
197
197
|
- !ruby/object:Gem::Dependency
|
198
|
-
name:
|
198
|
+
name: diff-lcs
|
199
199
|
prerelease: false
|
200
200
|
requirement: &id012 !ruby/object:Gem::Requirement
|
201
201
|
none: false
|
202
202
|
requirements:
|
203
|
-
- -
|
203
|
+
- - "="
|
204
204
|
- !ruby/object:Gem::Version
|
205
|
-
hash:
|
205
|
+
hash: 23
|
206
|
+
prerelease:
|
206
207
|
segments:
|
207
208
|
- 1
|
208
|
-
- 3
|
209
209
|
- 1
|
210
|
-
|
210
|
+
- 2
|
211
|
+
version: 1.1.2
|
211
212
|
type: :runtime
|
212
213
|
version_requirements: *id012
|
213
214
|
- !ruby/object:Gem::Dependency
|
214
|
-
name:
|
215
|
+
name: rspec-expectations
|
215
216
|
prerelease: false
|
216
217
|
requirement: &id013 !ruby/object:Gem::Requirement
|
218
|
+
none: false
|
219
|
+
requirements:
|
220
|
+
- - "="
|
221
|
+
- !ruby/object:Gem::Version
|
222
|
+
hash: 11
|
223
|
+
prerelease:
|
224
|
+
segments:
|
225
|
+
- 2
|
226
|
+
- 1
|
227
|
+
- 0
|
228
|
+
version: 2.1.0
|
229
|
+
type: :runtime
|
230
|
+
version_requirements: *id013
|
231
|
+
- !ruby/object:Gem::Dependency
|
232
|
+
name: rspec-mocks
|
233
|
+
prerelease: false
|
234
|
+
requirement: &id014 !ruby/object:Gem::Requirement
|
235
|
+
none: false
|
236
|
+
requirements:
|
237
|
+
- - "="
|
238
|
+
- !ruby/object:Gem::Version
|
239
|
+
hash: 11
|
240
|
+
prerelease:
|
241
|
+
segments:
|
242
|
+
- 2
|
243
|
+
- 1
|
244
|
+
- 0
|
245
|
+
version: 2.1.0
|
246
|
+
type: :runtime
|
247
|
+
version_requirements: *id014
|
248
|
+
- !ruby/object:Gem::Dependency
|
249
|
+
name: rspec-core
|
250
|
+
prerelease: false
|
251
|
+
requirement: &id015 !ruby/object:Gem::Requirement
|
252
|
+
none: false
|
253
|
+
requirements:
|
254
|
+
- - "="
|
255
|
+
- !ruby/object:Gem::Version
|
256
|
+
hash: 11
|
257
|
+
prerelease:
|
258
|
+
segments:
|
259
|
+
- 2
|
260
|
+
- 1
|
261
|
+
- 0
|
262
|
+
version: 2.1.0
|
263
|
+
type: :runtime
|
264
|
+
version_requirements: *id015
|
265
|
+
- !ruby/object:Gem::Dependency
|
266
|
+
name: rspec
|
267
|
+
prerelease: false
|
268
|
+
requirement: &id016 !ruby/object:Gem::Requirement
|
269
|
+
none: false
|
270
|
+
requirements:
|
271
|
+
- - "="
|
272
|
+
- !ruby/object:Gem::Version
|
273
|
+
hash: 11
|
274
|
+
segments:
|
275
|
+
- 2
|
276
|
+
- 1
|
277
|
+
- 0
|
278
|
+
version: 2.1.0
|
279
|
+
type: :runtime
|
280
|
+
version_requirements: *id016
|
281
|
+
- !ruby/object:Gem::Dependency
|
282
|
+
name: xml-simple
|
283
|
+
prerelease: false
|
284
|
+
requirement: &id017 !ruby/object:Gem::Requirement
|
217
285
|
none: false
|
218
286
|
requirements:
|
219
287
|
- - "="
|
@@ -225,11 +293,11 @@ dependencies:
|
|
225
293
|
- 12
|
226
294
|
version: 1.0.12
|
227
295
|
type: :runtime
|
228
|
-
version_requirements: *
|
296
|
+
version_requirements: *id017
|
229
297
|
- !ruby/object:Gem::Dependency
|
230
298
|
name: minitar
|
231
299
|
prerelease: false
|
232
|
-
requirement: &
|
300
|
+
requirement: &id018 !ruby/object:Gem::Requirement
|
233
301
|
none: false
|
234
302
|
requirements:
|
235
303
|
- - "="
|
@@ -241,11 +309,11 @@ dependencies:
|
|
241
309
|
- 3
|
242
310
|
version: 0.5.3
|
243
311
|
type: :runtime
|
244
|
-
version_requirements: *
|
312
|
+
version_requirements: *id018
|
245
313
|
- !ruby/object:Gem::Dependency
|
246
314
|
name: jekyll
|
247
315
|
prerelease: false
|
248
|
-
requirement: &
|
316
|
+
requirement: &id019 !ruby/object:Gem::Requirement
|
249
317
|
none: false
|
250
318
|
requirements:
|
251
319
|
- - ~>
|
@@ -257,11 +325,11 @@ dependencies:
|
|
257
325
|
- 2
|
258
326
|
version: 0.6.2
|
259
327
|
type: :development
|
260
|
-
version_requirements: *
|
328
|
+
version_requirements: *id019
|
261
329
|
- !ruby/object:Gem::Dependency
|
262
330
|
name: sdoc
|
263
331
|
prerelease: false
|
264
|
-
requirement: &
|
332
|
+
requirement: &id020 !ruby/object:Gem::Requirement
|
265
333
|
none: false
|
266
334
|
requirements:
|
267
335
|
- - ">="
|
@@ -271,11 +339,11 @@ dependencies:
|
|
271
339
|
- 0
|
272
340
|
version: "0"
|
273
341
|
type: :development
|
274
|
-
version_requirements: *
|
342
|
+
version_requirements: *id020
|
275
343
|
- !ruby/object:Gem::Dependency
|
276
344
|
name: rcov
|
277
345
|
prerelease: false
|
278
|
-
requirement: &
|
346
|
+
requirement: &id021 !ruby/object:Gem::Requirement
|
279
347
|
none: false
|
280
348
|
requirements:
|
281
349
|
- - "="
|
@@ -287,11 +355,11 @@ dependencies:
|
|
287
355
|
- 9
|
288
356
|
version: 0.9.9
|
289
357
|
type: :development
|
290
|
-
version_requirements: *
|
358
|
+
version_requirements: *id021
|
291
359
|
- !ruby/object:Gem::Dependency
|
292
360
|
name: jekylltask
|
293
361
|
prerelease: false
|
294
|
-
requirement: &
|
362
|
+
requirement: &id022 !ruby/object:Gem::Requirement
|
295
363
|
none: false
|
296
364
|
requirements:
|
297
365
|
- - ">="
|
@@ -303,7 +371,7 @@ dependencies:
|
|
303
371
|
- 2
|
304
372
|
version: 1.0.2
|
305
373
|
type: :development
|
306
|
-
version_requirements: *
|
374
|
+
version_requirements: *id022
|
307
375
|
description: |
|
308
376
|
Apache Buildr is a build system for Java-based applications, including support
|
309
377
|
for Scala, Groovy and a growing number of JVM languages and tools. We wanted
|
@@ -322,201 +390,217 @@ extra_rdoc_files:
|
|
322
390
|
- LICENSE
|
323
391
|
- NOTICE
|
324
392
|
files:
|
325
|
-
- addon/buildr/
|
326
|
-
- addon/buildr/
|
327
|
-
- addon/buildr/antlr.rb
|
328
|
-
- addon/buildr/hibernate.rb
|
329
|
-
- addon/buildr/javacc.rb
|
330
|
-
- addon/buildr/jdepend.rb
|
331
|
-
- addon/buildr/org/apache/buildr/BuildrNail.java
|
393
|
+
- addon/buildr/org/apache/buildr/BuildrNail$Main.class
|
394
|
+
- addon/buildr/org/apache/buildr/BuildrNail.class
|
332
395
|
- addon/buildr/org/apache/buildr/JettyWrapper.java
|
396
|
+
- addon/buildr/org/apache/buildr/JettyWrapper.class
|
397
|
+
- addon/buildr/org/apache/buildr/BuildrNail.java
|
333
398
|
- addon/buildr/org/apache/buildr/JettyWrapper$1.class
|
334
399
|
- addon/buildr/org/apache/buildr/JettyWrapper$BuildrHandler.class
|
335
|
-
- addon/buildr/
|
336
|
-
- addon/buildr/
|
337
|
-
- addon/buildr/org/apache/buildr/BuildrNail.class
|
338
|
-
- addon/buildr/openjpa.rb
|
339
|
-
- addon/buildr/jibx.rb
|
400
|
+
- addon/buildr/hibernate.rb
|
401
|
+
- addon/buildr/javacc.rb
|
340
402
|
- addon/buildr/cobertura.rb
|
341
403
|
- addon/buildr/protobuf.rb
|
342
|
-
- addon/buildr/
|
404
|
+
- addon/buildr/nailgun.rb
|
343
405
|
- addon/buildr/jetty.rb
|
406
|
+
- addon/buildr/xmlbeans.rb
|
407
|
+
- addon/buildr/jdepend.rb
|
408
|
+
- addon/buildr/jibx.rb
|
409
|
+
- addon/buildr/drb.rb
|
410
|
+
- addon/buildr/jaxb_xjc.rb
|
411
|
+
- addon/buildr/antlr.rb
|
344
412
|
- addon/buildr/emma.rb
|
413
|
+
- addon/buildr/openjpa.rb
|
414
|
+
- addon/buildr/bnd.rb
|
345
415
|
- bin/buildr
|
346
|
-
- doc/testing.textile
|
347
|
-
- doc/preface.textile
|
348
|
-
- doc/building.textile
|
349
|
-
- doc/index.textile
|
350
|
-
- doc/releasing.textile
|
351
|
-
- doc/_config.yml
|
352
|
-
- doc/extending.textile
|
353
|
-
- doc/more_stuff.textile
|
354
|
-
- doc/download.textile
|
355
|
-
- doc/projects.textile
|
356
416
|
- doc/css/default.css
|
357
417
|
- doc/css/syntax.css
|
358
418
|
- doc/css/print.css
|
359
419
|
- doc/scripts/install-osx.sh
|
360
|
-
- doc/scripts/gitflow.rb
|
361
420
|
- doc/scripts/buildr-git.rb
|
421
|
+
- doc/scripts/gitflow.rb
|
362
422
|
- doc/scripts/install-jruby.sh
|
363
423
|
- doc/scripts/install-linux.sh
|
364
|
-
- doc/
|
365
|
-
- doc/_layouts/default.html
|
366
|
-
- doc/_layouts/preface.html
|
424
|
+
- doc/projects.textile
|
367
425
|
- doc/settings_profiles.textile
|
368
|
-
- doc/
|
426
|
+
- doc/contributing.textile
|
427
|
+
- doc/more_stuff.textile
|
428
|
+
- doc/installing.textile
|
429
|
+
- doc/languages.textile
|
430
|
+
- doc/mailing_lists.textile
|
431
|
+
- doc/testing.textile
|
432
|
+
- doc/_config.yml
|
433
|
+
- doc/releasing.textile
|
369
434
|
- doc/artifacts.textile
|
370
|
-
- doc/
|
371
|
-
- doc/
|
372
|
-
- doc/
|
435
|
+
- doc/download.textile
|
436
|
+
- doc/building.textile
|
437
|
+
- doc/extending.textile
|
438
|
+
- doc/images/growl-icon.tiff
|
373
439
|
- doc/images/asf-logo.gif
|
374
440
|
- doc/images/zbuildr.png
|
375
|
-
- doc/images/zbuildr.tif
|
376
|
-
- doc/images/buildr.png
|
377
|
-
- doc/images/note.png
|
378
|
-
- doc/images/growl-icon.tiff
|
379
|
-
- doc/images/tip.png
|
380
441
|
- doc/images/1442160941-frontcover.jpg
|
381
442
|
- doc/images/asf-logo.png
|
382
|
-
- doc/
|
383
|
-
- doc/
|
384
|
-
- doc/
|
385
|
-
- doc/
|
443
|
+
- doc/images/project-structure.png
|
444
|
+
- doc/images/note.png
|
445
|
+
- doc/images/buildr.png
|
446
|
+
- doc/images/buildr-hires.png
|
447
|
+
- doc/images/favicon.png
|
448
|
+
- doc/images/tip.png
|
449
|
+
- doc/images/zbuildr.tif
|
450
|
+
- doc/_layouts/preface.html
|
451
|
+
- doc/_layouts/default.html
|
452
|
+
- doc/packaging.textile
|
453
|
+
- doc/index.textile
|
454
|
+
- doc/preface.textile
|
455
|
+
- doc/quick_start.textile
|
386
456
|
- etc/KEYS
|
457
|
+
- lib/buildr.rb
|
387
458
|
- lib/buildr/scala.rb
|
388
|
-
- lib/buildr/shell.rb
|
389
|
-
- lib/buildr/ide.rb
|
390
|
-
- lib/buildr/core.rb
|
391
|
-
- lib/buildr/packaging/artifact.rb
|
392
|
-
- lib/buildr/packaging/ziptask.rb
|
393
|
-
- lib/buildr/packaging/gems.rb
|
394
|
-
- lib/buildr/packaging/artifact_namespace.rb
|
395
|
-
- lib/buildr/packaging/archive.rb
|
396
|
-
- lib/buildr/packaging/package.rb
|
397
|
-
- lib/buildr/packaging/version_requirement.rb
|
398
|
-
- lib/buildr/packaging/zip.rb
|
399
|
-
- lib/buildr/packaging/artifact_search.rb
|
400
|
-
- lib/buildr/packaging/tar.rb
|
401
|
-
- lib/buildr/ide/idea.ipr.template
|
402
459
|
- lib/buildr/ide/eclipse/scala.rb
|
403
|
-
- lib/buildr/ide/eclipse/java.rb
|
404
460
|
- lib/buildr/ide/eclipse/plugin.rb
|
461
|
+
- lib/buildr/ide/eclipse/java.rb
|
405
462
|
- lib/buildr/ide/eclipse.rb
|
406
463
|
- lib/buildr/ide/idea.rb
|
407
|
-
- lib/buildr/
|
408
|
-
- lib/buildr/
|
409
|
-
- lib/buildr/
|
464
|
+
- lib/buildr/packaging/artifact_namespace.rb
|
465
|
+
- lib/buildr/packaging/gems.rb
|
466
|
+
- lib/buildr/packaging/zip.rb
|
467
|
+
- lib/buildr/packaging/#package.rb.rej#
|
468
|
+
- lib/buildr/packaging/package.rb
|
469
|
+
- lib/buildr/packaging/ziptask.rb
|
470
|
+
- lib/buildr/packaging/artifact_search.rb
|
471
|
+
- lib/buildr/packaging/archive.rb
|
472
|
+
- lib/buildr/packaging/artifact.rb
|
473
|
+
- lib/buildr/packaging/tar.rb
|
474
|
+
- lib/buildr/packaging/version_requirement.rb
|
475
|
+
- lib/buildr/resources/icons-license.txt
|
410
476
|
- lib/buildr/resources/buildr.icns
|
477
|
+
- lib/buildr/resources/completed.png
|
478
|
+
- lib/buildr/resources/failed.png
|
479
|
+
- lib/buildr/ide.rb
|
480
|
+
- lib/buildr/version.rb
|
481
|
+
- lib/buildr/shell.rb
|
482
|
+
- lib/buildr/core.rb
|
411
483
|
- lib/buildr/packaging.rb
|
412
|
-
- lib/buildr/
|
413
|
-
- lib/buildr/groovy/shell.rb
|
414
|
-
- lib/buildr/groovy/bdd.rb
|
415
|
-
- lib/buildr/java/compiler.rb
|
416
|
-
- lib/buildr/java/tests.rb
|
417
|
-
- lib/buildr/java/org/apache/buildr/JavaTestFilter.java
|
418
|
-
- lib/buildr/java/org/apache/buildr/JavaTestFilter.class
|
419
|
-
- lib/buildr/java/bdd.rb
|
420
|
-
- lib/buildr/java/rjb.rb
|
421
|
-
- lib/buildr/java/jtestr_runner.rb.erb
|
422
|
-
- lib/buildr/java/packaging.rb
|
423
|
-
- lib/buildr/java/deprecated.rb
|
424
|
-
- lib/buildr/java/version_requirement.rb
|
425
|
-
- lib/buildr/java/doc.rb
|
426
|
-
- lib/buildr/java/external.rb
|
427
|
-
- lib/buildr/java/cobertura.rb
|
428
|
-
- lib/buildr/java/commands.rb
|
429
|
-
- lib/buildr/java/ant.rb
|
430
|
-
- lib/buildr/java/test_result.rb
|
431
|
-
- lib/buildr/java/ecj.rb
|
432
|
-
- lib/buildr/java/jruby.rb
|
433
|
-
- lib/buildr/java/emma.rb
|
434
|
-
- lib/buildr/java/pom.rb
|
435
|
-
- lib/buildr/groovy.rb
|
436
|
-
- lib/buildr/scala/compiler.rb
|
437
|
-
- lib/buildr/scala/shell.rb
|
438
|
-
- lib/buildr/scala/tests.rb
|
439
|
-
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.java
|
484
|
+
- lib/buildr/clojure/shell.rb
|
440
485
|
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.class
|
486
|
+
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.java
|
441
487
|
- lib/buildr/scala/bdd.rb
|
488
|
+
- lib/buildr/scala/shell.rb
|
489
|
+
- lib/buildr/scala/#Untitled-2#
|
490
|
+
- lib/buildr/scala/compiler.rb
|
491
|
+
- lib/buildr/scala/tests.rb
|
442
492
|
- lib/buildr/scala/doc.rb
|
493
|
+
- lib/buildr/java.rb
|
494
|
+
- lib/buildr/core/osx.rb
|
495
|
+
- lib/buildr/core/build.rb
|
496
|
+
- lib/buildr/core/progressbar.rb
|
497
|
+
- lib/buildr/core/application.rb
|
498
|
+
- lib/buildr/core/generate.rb
|
499
|
+
- lib/buildr/core/util.rb
|
500
|
+
- lib/buildr/core/#application.rb#
|
501
|
+
- lib/buildr/core/shell.rb
|
502
|
+
- lib/buildr/core/compile.rb
|
503
|
+
- lib/buildr/core/help.rb
|
443
504
|
- lib/buildr/core/common.rb
|
444
505
|
- lib/buildr/core/test.rb
|
445
506
|
- lib/buildr/core/environment.rb
|
446
|
-
- lib/buildr/core/shell.rb
|
447
|
-
- lib/buildr/core/osx.rb
|
448
|
-
- lib/buildr/core/generate.rb
|
449
|
-
- lib/buildr/core/transports.rb
|
450
|
-
- lib/buildr/core/checks.rb
|
451
|
-
- lib/buildr/core/application.rb
|
452
507
|
- lib/buildr/core/filter.rb
|
453
|
-
- lib/buildr/core/
|
508
|
+
- lib/buildr/core/checks.rb
|
509
|
+
- lib/buildr/core/cc.rb
|
454
510
|
- lib/buildr/core/doc.rb
|
455
|
-
- lib/buildr/core/
|
456
|
-
- lib/buildr/core/
|
511
|
+
- lib/buildr/core/transports.rb
|
512
|
+
- lib/buildr/core/jrebel.rb
|
457
513
|
- lib/buildr/core/project.rb
|
458
|
-
- lib/buildr/core/help.rb
|
459
|
-
- lib/buildr/core/util.rb
|
460
|
-
- lib/buildr/core/cc.rb
|
461
514
|
- lib/buildr/core/run.rb
|
462
|
-
- lib/buildr/
|
515
|
+
- lib/buildr/core/linux.rb
|
516
|
+
- lib/buildr/java/org/apache/buildr/JavaTestFilter.java
|
517
|
+
- lib/buildr/java/org/apache/buildr/JavaTestFilter.class
|
518
|
+
- lib/buildr/java/bdd.rb
|
519
|
+
- lib/buildr/java/external.rb
|
520
|
+
- lib/buildr/java/pom.rb
|
521
|
+
- lib/buildr/java/ecj.rb
|
522
|
+
- lib/buildr/java/rjb.rb
|
523
|
+
- lib/buildr/java/cobertura.rb
|
524
|
+
- lib/buildr/java/jtestr_result.rb
|
525
|
+
- lib/buildr/java/packaging.rb
|
526
|
+
- lib/buildr/java/compiler.rb
|
527
|
+
- lib/buildr/java/jruby.rb
|
528
|
+
- lib/buildr/java/tests.rb
|
529
|
+
- lib/buildr/java/commands.rb
|
530
|
+
- lib/buildr/java/doc.rb
|
531
|
+
- lib/buildr/java/jtestr_runner.rb.erb
|
532
|
+
- lib/buildr/java/ant.rb
|
533
|
+
- lib/buildr/java/deprecated.rb
|
534
|
+
- lib/buildr/java/test_result.rb
|
535
|
+
- lib/buildr/java/emma.rb
|
536
|
+
- lib/buildr/java/version_requirement.rb
|
537
|
+
- lib/buildr/groovy.rb
|
538
|
+
- lib/buildr/groovy/bdd.rb
|
539
|
+
- lib/buildr/groovy/shell.rb
|
540
|
+
- lib/buildr/groovy/compiler.rb
|
541
|
+
- lib/buildr/groovy/doc.rb
|
542
|
+
- lib/buildr/clojure.rb
|
463
543
|
- lib/buildr/run.rb
|
464
|
-
- lib/buildr.rb
|
465
|
-
- rakelib/all-in-one.rake
|
466
544
|
- rakelib/checks.rake
|
467
|
-
- rakelib/
|
468
|
-
- rakelib/setup.rake
|
545
|
+
- rakelib/package.rake
|
469
546
|
- rakelib/metrics.rake
|
470
|
-
- rakelib/stage.rake
|
471
|
-
- rakelib/release.rake
|
472
547
|
- rakelib/doc.rake
|
473
|
-
- rakelib/
|
474
|
-
-
|
548
|
+
- rakelib/release.rake
|
549
|
+
- rakelib/stage.rake
|
550
|
+
- rakelib/all-in-one.rake
|
551
|
+
- rakelib/setup.rake
|
552
|
+
- rakelib/rspec.rake
|
553
|
+
- spec/ide/idea_spec.rb
|
554
|
+
- spec/ide/eclipse_spec.rb
|
475
555
|
- spec/sandbox.rb
|
476
|
-
- spec/packaging/artifact_namespace_spec.rb
|
477
|
-
- spec/packaging/artifact_spec.rb
|
478
556
|
- spec/packaging/packaging_spec.rb
|
479
557
|
- spec/packaging/archive_spec.rb
|
480
558
|
- spec/packaging/packaging_helper.rb
|
481
|
-
- spec/
|
482
|
-
- spec/
|
483
|
-
- spec/version_requirement_spec.rb
|
559
|
+
- spec/packaging/artifact_spec.rb
|
560
|
+
- spec/packaging/artifact_namespace_spec.rb
|
484
561
|
- spec/addon/drb_spec.rb
|
485
|
-
- spec/
|
486
|
-
- spec/
|
487
|
-
- spec/
|
488
|
-
- spec/java/external_spec.rb
|
489
|
-
- spec/java/run_spec.rb
|
490
|
-
- spec/java/packaging_spec.rb
|
491
|
-
- spec/java/bdd_spec.rb
|
492
|
-
- spec/java/emma_spec.rb
|
493
|
-
- spec/java/doc_spec.rb
|
494
|
-
- spec/java/test_coverage_helper.rb
|
495
|
-
- spec/java/commands_spec.rb
|
496
|
-
- spec/java/java_spec.rb
|
497
|
-
- spec/java/cobertura_spec.rb
|
498
|
-
- spec/java/ant_spec.rb
|
499
|
-
- spec/java/tests_spec.rb
|
500
|
-
- spec/java/compiler_spec.rb
|
501
|
-
- spec/scala/scala.rb
|
562
|
+
- spec/addon/jaxb_xjc_spec.rb
|
563
|
+
- spec/addon/bnd_spec.rb
|
564
|
+
- spec/spec_helpers.rb
|
502
565
|
- spec/scala/bdd_spec.rb
|
503
|
-
- spec/scala/
|
566
|
+
- spec/scala/scala.rb
|
504
567
|
- spec/scala/tests_spec.rb
|
505
568
|
- spec/scala/compiler_spec.rb
|
569
|
+
- spec/scala/doc_spec.rb
|
570
|
+
- spec/version_requirement_spec.rb
|
571
|
+
- spec/core/cc_spec.rb
|
572
|
+
- spec/core/extension_spec.rb
|
573
|
+
- spec/core/build_spec.rb
|
506
574
|
- spec/core/application_spec.rb
|
507
575
|
- spec/core/compile_spec.rb
|
508
|
-
- spec/core/
|
576
|
+
- spec/core/shell_spec.rb
|
509
577
|
- spec/core/util_spec.rb
|
510
|
-
- spec/core/generate_spec.rb
|
511
|
-
- spec/core/run_spec.rb
|
512
578
|
- spec/core/checks_spec.rb
|
513
|
-
- spec/core/transport_spec.rb
|
514
|
-
- spec/core/doc_spec.rb
|
515
|
-
- spec/core/extension_spec.rb
|
516
579
|
- spec/core/test_spec.rb
|
517
|
-
- spec/core/
|
580
|
+
- spec/core/generate_spec.rb
|
581
|
+
- spec/core/doc_spec.rb
|
518
582
|
- spec/core/common_spec.rb
|
519
|
-
- spec/core/
|
583
|
+
- spec/core/transport_spec.rb
|
584
|
+
- spec/core/run_spec.rb
|
585
|
+
- spec/core/project_spec.rb
|
586
|
+
- spec/java/bdd_spec.rb
|
587
|
+
- spec/java/test_coverage_helper.rb
|
588
|
+
- spec/java/packaging_spec.rb
|
589
|
+
- spec/java/commands_spec.rb
|
590
|
+
- spec/java/ecj_spec.rb
|
591
|
+
- spec/java/external_spec.rb
|
592
|
+
- spec/java/java_spec.rb
|
593
|
+
- spec/java/cobertura_spec.rb
|
594
|
+
- spec/java/tests_spec.rb
|
595
|
+
- spec/java/ant_spec.rb
|
596
|
+
- spec/java/compiler_spec.rb
|
597
|
+
- spec/java/emma_spec.rb
|
598
|
+
- spec/java/doc_spec.rb
|
599
|
+
- spec/java/run_spec.rb
|
600
|
+
- spec/xpath_matchers.rb
|
601
|
+
- spec/groovy/bdd_spec.rb
|
602
|
+
- spec/groovy/compiler_spec.rb
|
603
|
+
- spec/groovy/doc_spec.rb
|
520
604
|
- buildr.gemspec
|
521
605
|
- buildr.buildfile
|
522
606
|
- LICENSE
|
@@ -562,7 +646,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
562
646
|
requirements: []
|
563
647
|
|
564
648
|
rubyforge_project: buildr
|
565
|
-
rubygems_version: 1.
|
649
|
+
rubygems_version: 1.5.2
|
566
650
|
signing_key:
|
567
651
|
specification_version: 3
|
568
652
|
summary: Build like you code
|