buildr 1.4.4-x86-mswin32 → 1.4.5-x86-mswin32
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.
- 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 +246 -166
- 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/doc_spec.rb
CHANGED
@@ -19,8 +19,8 @@ require File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helpers')
|
|
19
19
|
describe "Scaladoc" do
|
20
20
|
|
21
21
|
before(:each) do
|
22
|
-
# Force Scala 2.8.
|
23
|
-
Buildr.settings.build['scala.version'] = "2.8.
|
22
|
+
# Force Scala 2.8.1 for specs; don't want to rely on SCALA_HOME
|
23
|
+
Buildr.settings.build['scala.version'] = "2.8.1"
|
24
24
|
end
|
25
25
|
|
26
26
|
it 'should pick -doc-title from project name by default' do
|
@@ -52,17 +52,37 @@ describe "Scaladoc" do
|
|
52
52
|
project('foo').doc.options[:"doc-title"].should eql('explicit')
|
53
53
|
end
|
54
54
|
|
55
|
-
it 'should convert :windowtitle to -doc-title for Scala 2.8.
|
55
|
+
it 'should convert :windowtitle to -doc-title for Scala 2.8.1' do
|
56
56
|
write 'src/main/scala/com/example/Test.scala', 'package com.example; class Test { val i = 1 }'
|
57
57
|
define('foo') do
|
58
58
|
doc.using :windowtitle => "foo"
|
59
59
|
end
|
60
|
-
Java.scala.tools.nsc.ScalaDoc.should_receive(:
|
60
|
+
Java.scala.tools.nsc.ScalaDoc.should_receive(:process) do |args|
|
61
61
|
# Convert Java Strings to Ruby Strings, if needed.
|
62
62
|
args.map { |a| a.is_a?(String) ? a : a.toString }.should include("-doc-title")
|
63
63
|
0 # normal return
|
64
64
|
end
|
65
65
|
project('foo').doc.invoke
|
66
66
|
end
|
67
|
+
end
|
68
|
+
|
69
|
+
describe "package(:scaladoc)" do
|
70
|
+
it "should generate target/project-version-scaladoc.jar" do
|
71
|
+
write 'src/main/scala/Foo.scala', 'class Foo'
|
72
|
+
define 'foo', :version=>'1.0' do
|
73
|
+
package(:scaladoc)
|
74
|
+
end
|
75
|
+
|
76
|
+
scaladoc = project('foo').package(:scaladoc)
|
77
|
+
scaladoc.should point_to_path('target/foo-1.0-scaladoc.jar')
|
67
78
|
|
79
|
+
lambda {
|
80
|
+
project('foo').task('package').invoke
|
81
|
+
}.should change { File.exist?('target/foo-1.0-scaladoc.jar') }.to(true)
|
82
|
+
|
83
|
+
scaladoc.should exist
|
84
|
+
scaladoc.should contain('index.html')
|
85
|
+
scaladoc.should contain('Foo.html')
|
86
|
+
end
|
68
87
|
end
|
88
|
+
|
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: x86-mswin32
|
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,89 @@ 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
206
|
segments:
|
207
207
|
- 1
|
208
|
-
- 3
|
209
208
|
- 1
|
210
|
-
|
209
|
+
- 2
|
210
|
+
version: 1.1.2
|
211
211
|
type: :runtime
|
212
212
|
version_requirements: *id012
|
213
213
|
- !ruby/object:Gem::Dependency
|
214
|
-
name:
|
214
|
+
name: rspec-expectations
|
215
215
|
prerelease: false
|
216
216
|
requirement: &id013 !ruby/object:Gem::Requirement
|
217
|
+
none: false
|
218
|
+
requirements:
|
219
|
+
- - "="
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
hash: 11
|
222
|
+
segments:
|
223
|
+
- 2
|
224
|
+
- 1
|
225
|
+
- 0
|
226
|
+
version: 2.1.0
|
227
|
+
type: :runtime
|
228
|
+
version_requirements: *id013
|
229
|
+
- !ruby/object:Gem::Dependency
|
230
|
+
name: rspec-mocks
|
231
|
+
prerelease: false
|
232
|
+
requirement: &id014 !ruby/object:Gem::Requirement
|
233
|
+
none: false
|
234
|
+
requirements:
|
235
|
+
- - "="
|
236
|
+
- !ruby/object:Gem::Version
|
237
|
+
hash: 11
|
238
|
+
segments:
|
239
|
+
- 2
|
240
|
+
- 1
|
241
|
+
- 0
|
242
|
+
version: 2.1.0
|
243
|
+
type: :runtime
|
244
|
+
version_requirements: *id014
|
245
|
+
- !ruby/object:Gem::Dependency
|
246
|
+
name: rspec-core
|
247
|
+
prerelease: false
|
248
|
+
requirement: &id015 !ruby/object:Gem::Requirement
|
249
|
+
none: false
|
250
|
+
requirements:
|
251
|
+
- - "="
|
252
|
+
- !ruby/object:Gem::Version
|
253
|
+
hash: 11
|
254
|
+
segments:
|
255
|
+
- 2
|
256
|
+
- 1
|
257
|
+
- 0
|
258
|
+
version: 2.1.0
|
259
|
+
type: :runtime
|
260
|
+
version_requirements: *id015
|
261
|
+
- !ruby/object:Gem::Dependency
|
262
|
+
name: rspec
|
263
|
+
prerelease: false
|
264
|
+
requirement: &id016 !ruby/object:Gem::Requirement
|
265
|
+
none: false
|
266
|
+
requirements:
|
267
|
+
- - "="
|
268
|
+
- !ruby/object:Gem::Version
|
269
|
+
hash: 11
|
270
|
+
segments:
|
271
|
+
- 2
|
272
|
+
- 1
|
273
|
+
- 0
|
274
|
+
version: 2.1.0
|
275
|
+
type: :runtime
|
276
|
+
version_requirements: *id016
|
277
|
+
- !ruby/object:Gem::Dependency
|
278
|
+
name: xml-simple
|
279
|
+
prerelease: false
|
280
|
+
requirement: &id017 !ruby/object:Gem::Requirement
|
217
281
|
none: false
|
218
282
|
requirements:
|
219
283
|
- - "="
|
@@ -225,11 +289,11 @@ dependencies:
|
|
225
289
|
- 12
|
226
290
|
version: 1.0.12
|
227
291
|
type: :runtime
|
228
|
-
version_requirements: *
|
292
|
+
version_requirements: *id017
|
229
293
|
- !ruby/object:Gem::Dependency
|
230
294
|
name: minitar
|
231
295
|
prerelease: false
|
232
|
-
requirement: &
|
296
|
+
requirement: &id018 !ruby/object:Gem::Requirement
|
233
297
|
none: false
|
234
298
|
requirements:
|
235
299
|
- - "="
|
@@ -241,11 +305,11 @@ dependencies:
|
|
241
305
|
- 3
|
242
306
|
version: 0.5.3
|
243
307
|
type: :runtime
|
244
|
-
version_requirements: *
|
308
|
+
version_requirements: *id018
|
245
309
|
- !ruby/object:Gem::Dependency
|
246
310
|
name: jekyll
|
247
311
|
prerelease: false
|
248
|
-
requirement: &
|
312
|
+
requirement: &id019 !ruby/object:Gem::Requirement
|
249
313
|
none: false
|
250
314
|
requirements:
|
251
315
|
- - ~>
|
@@ -257,11 +321,11 @@ dependencies:
|
|
257
321
|
- 2
|
258
322
|
version: 0.6.2
|
259
323
|
type: :development
|
260
|
-
version_requirements: *
|
324
|
+
version_requirements: *id019
|
261
325
|
- !ruby/object:Gem::Dependency
|
262
326
|
name: sdoc
|
263
327
|
prerelease: false
|
264
|
-
requirement: &
|
328
|
+
requirement: &id020 !ruby/object:Gem::Requirement
|
265
329
|
none: false
|
266
330
|
requirements:
|
267
331
|
- - ">="
|
@@ -271,11 +335,11 @@ dependencies:
|
|
271
335
|
- 0
|
272
336
|
version: "0"
|
273
337
|
type: :development
|
274
|
-
version_requirements: *
|
338
|
+
version_requirements: *id020
|
275
339
|
- !ruby/object:Gem::Dependency
|
276
340
|
name: rcov
|
277
341
|
prerelease: false
|
278
|
-
requirement: &
|
342
|
+
requirement: &id021 !ruby/object:Gem::Requirement
|
279
343
|
none: false
|
280
344
|
requirements:
|
281
345
|
- - "="
|
@@ -287,11 +351,11 @@ dependencies:
|
|
287
351
|
- 9
|
288
352
|
version: 0.9.9
|
289
353
|
type: :development
|
290
|
-
version_requirements: *
|
354
|
+
version_requirements: *id021
|
291
355
|
- !ruby/object:Gem::Dependency
|
292
356
|
name: win32console
|
293
357
|
prerelease: false
|
294
|
-
requirement: &
|
358
|
+
requirement: &id022 !ruby/object:Gem::Requirement
|
295
359
|
none: false
|
296
360
|
requirements:
|
297
361
|
- - ">="
|
@@ -301,11 +365,11 @@ dependencies:
|
|
301
365
|
- 0
|
302
366
|
version: "0"
|
303
367
|
type: :development
|
304
|
-
version_requirements: *
|
368
|
+
version_requirements: *id022
|
305
369
|
- !ruby/object:Gem::Dependency
|
306
370
|
name: jekylltask
|
307
371
|
prerelease: false
|
308
|
-
requirement: &
|
372
|
+
requirement: &id023 !ruby/object:Gem::Requirement
|
309
373
|
none: false
|
310
374
|
requirements:
|
311
375
|
- - ">="
|
@@ -317,7 +381,7 @@ dependencies:
|
|
317
381
|
- 2
|
318
382
|
version: 1.0.2
|
319
383
|
type: :development
|
320
|
-
version_requirements: *
|
384
|
+
version_requirements: *id023
|
321
385
|
description: |
|
322
386
|
Apache Buildr is a build system for Java-based applications, including support
|
323
387
|
for Scala, Groovy and a growing number of JVM languages and tools. We wanted
|
@@ -336,201 +400,217 @@ extra_rdoc_files:
|
|
336
400
|
- LICENSE
|
337
401
|
- NOTICE
|
338
402
|
files:
|
339
|
-
- addon/buildr/
|
340
|
-
- addon/buildr/
|
341
|
-
- addon/buildr/antlr.rb
|
342
|
-
- addon/buildr/hibernate.rb
|
343
|
-
- addon/buildr/javacc.rb
|
344
|
-
- addon/buildr/jdepend.rb
|
345
|
-
- addon/buildr/org/apache/buildr/BuildrNail.java
|
403
|
+
- addon/buildr/org/apache/buildr/BuildrNail$Main.class
|
404
|
+
- addon/buildr/org/apache/buildr/BuildrNail.class
|
346
405
|
- addon/buildr/org/apache/buildr/JettyWrapper.java
|
406
|
+
- addon/buildr/org/apache/buildr/JettyWrapper.class
|
407
|
+
- addon/buildr/org/apache/buildr/BuildrNail.java
|
347
408
|
- addon/buildr/org/apache/buildr/JettyWrapper$1.class
|
348
409
|
- addon/buildr/org/apache/buildr/JettyWrapper$BuildrHandler.class
|
349
|
-
- addon/buildr/
|
350
|
-
- addon/buildr/
|
351
|
-
- addon/buildr/org/apache/buildr/BuildrNail.class
|
352
|
-
- addon/buildr/openjpa.rb
|
353
|
-
- addon/buildr/jibx.rb
|
410
|
+
- addon/buildr/hibernate.rb
|
411
|
+
- addon/buildr/javacc.rb
|
354
412
|
- addon/buildr/cobertura.rb
|
355
413
|
- addon/buildr/protobuf.rb
|
356
|
-
- addon/buildr/
|
414
|
+
- addon/buildr/nailgun.rb
|
357
415
|
- addon/buildr/jetty.rb
|
416
|
+
- addon/buildr/xmlbeans.rb
|
417
|
+
- addon/buildr/jdepend.rb
|
418
|
+
- addon/buildr/jibx.rb
|
419
|
+
- addon/buildr/drb.rb
|
420
|
+
- addon/buildr/jaxb_xjc.rb
|
421
|
+
- addon/buildr/antlr.rb
|
358
422
|
- addon/buildr/emma.rb
|
423
|
+
- addon/buildr/openjpa.rb
|
424
|
+
- addon/buildr/bnd.rb
|
359
425
|
- bin/buildr
|
360
|
-
- doc/testing.textile
|
361
|
-
- doc/preface.textile
|
362
|
-
- doc/building.textile
|
363
|
-
- doc/index.textile
|
364
|
-
- doc/releasing.textile
|
365
|
-
- doc/_config.yml
|
366
|
-
- doc/extending.textile
|
367
|
-
- doc/more_stuff.textile
|
368
|
-
- doc/download.textile
|
369
|
-
- doc/projects.textile
|
370
426
|
- doc/css/default.css
|
371
427
|
- doc/css/syntax.css
|
372
428
|
- doc/css/print.css
|
373
429
|
- doc/scripts/install-osx.sh
|
374
|
-
- doc/scripts/gitflow.rb
|
375
430
|
- doc/scripts/buildr-git.rb
|
431
|
+
- doc/scripts/gitflow.rb
|
376
432
|
- doc/scripts/install-jruby.sh
|
377
433
|
- doc/scripts/install-linux.sh
|
378
|
-
- doc/
|
379
|
-
- doc/_layouts/default.html
|
380
|
-
- doc/_layouts/preface.html
|
434
|
+
- doc/projects.textile
|
381
435
|
- doc/settings_profiles.textile
|
382
|
-
- doc/
|
436
|
+
- doc/contributing.textile
|
437
|
+
- doc/more_stuff.textile
|
438
|
+
- doc/installing.textile
|
439
|
+
- doc/languages.textile
|
440
|
+
- doc/mailing_lists.textile
|
441
|
+
- doc/testing.textile
|
442
|
+
- doc/_config.yml
|
443
|
+
- doc/releasing.textile
|
383
444
|
- doc/artifacts.textile
|
384
|
-
- doc/
|
385
|
-
- doc/
|
386
|
-
- doc/
|
445
|
+
- doc/download.textile
|
446
|
+
- doc/building.textile
|
447
|
+
- doc/extending.textile
|
448
|
+
- doc/images/growl-icon.tiff
|
387
449
|
- doc/images/asf-logo.gif
|
388
450
|
- doc/images/zbuildr.png
|
389
|
-
- doc/images/zbuildr.tif
|
390
|
-
- doc/images/buildr.png
|
391
|
-
- doc/images/note.png
|
392
|
-
- doc/images/growl-icon.tiff
|
393
|
-
- doc/images/tip.png
|
394
451
|
- doc/images/1442160941-frontcover.jpg
|
395
452
|
- doc/images/asf-logo.png
|
396
|
-
- doc/
|
397
|
-
- doc/
|
398
|
-
- doc/
|
399
|
-
- doc/
|
453
|
+
- doc/images/project-structure.png
|
454
|
+
- doc/images/note.png
|
455
|
+
- doc/images/buildr.png
|
456
|
+
- doc/images/buildr-hires.png
|
457
|
+
- doc/images/favicon.png
|
458
|
+
- doc/images/tip.png
|
459
|
+
- doc/images/zbuildr.tif
|
460
|
+
- doc/_layouts/preface.html
|
461
|
+
- doc/_layouts/default.html
|
462
|
+
- doc/packaging.textile
|
463
|
+
- doc/index.textile
|
464
|
+
- doc/preface.textile
|
465
|
+
- doc/quick_start.textile
|
400
466
|
- etc/KEYS
|
467
|
+
- lib/buildr.rb
|
401
468
|
- lib/buildr/scala.rb
|
402
|
-
- lib/buildr/shell.rb
|
403
|
-
- lib/buildr/ide.rb
|
404
|
-
- lib/buildr/core.rb
|
405
|
-
- lib/buildr/packaging/artifact.rb
|
406
|
-
- lib/buildr/packaging/ziptask.rb
|
407
|
-
- lib/buildr/packaging/gems.rb
|
408
|
-
- lib/buildr/packaging/artifact_namespace.rb
|
409
|
-
- lib/buildr/packaging/archive.rb
|
410
|
-
- lib/buildr/packaging/package.rb
|
411
|
-
- lib/buildr/packaging/version_requirement.rb
|
412
|
-
- lib/buildr/packaging/zip.rb
|
413
|
-
- lib/buildr/packaging/artifact_search.rb
|
414
|
-
- lib/buildr/packaging/tar.rb
|
415
|
-
- lib/buildr/ide/idea.ipr.template
|
416
469
|
- lib/buildr/ide/eclipse/scala.rb
|
417
|
-
- lib/buildr/ide/eclipse/java.rb
|
418
470
|
- lib/buildr/ide/eclipse/plugin.rb
|
471
|
+
- lib/buildr/ide/eclipse/java.rb
|
419
472
|
- lib/buildr/ide/eclipse.rb
|
420
473
|
- lib/buildr/ide/idea.rb
|
421
|
-
- lib/buildr/
|
422
|
-
- lib/buildr/
|
423
|
-
- lib/buildr/
|
474
|
+
- lib/buildr/packaging/artifact_namespace.rb
|
475
|
+
- lib/buildr/packaging/gems.rb
|
476
|
+
- lib/buildr/packaging/zip.rb
|
477
|
+
- lib/buildr/packaging/#package.rb.rej#
|
478
|
+
- lib/buildr/packaging/package.rb
|
479
|
+
- lib/buildr/packaging/ziptask.rb
|
480
|
+
- lib/buildr/packaging/artifact_search.rb
|
481
|
+
- lib/buildr/packaging/archive.rb
|
482
|
+
- lib/buildr/packaging/artifact.rb
|
483
|
+
- lib/buildr/packaging/tar.rb
|
484
|
+
- lib/buildr/packaging/version_requirement.rb
|
485
|
+
- lib/buildr/resources/icons-license.txt
|
424
486
|
- lib/buildr/resources/buildr.icns
|
487
|
+
- lib/buildr/resources/completed.png
|
488
|
+
- lib/buildr/resources/failed.png
|
489
|
+
- lib/buildr/ide.rb
|
490
|
+
- lib/buildr/version.rb
|
491
|
+
- lib/buildr/shell.rb
|
492
|
+
- lib/buildr/core.rb
|
425
493
|
- lib/buildr/packaging.rb
|
426
|
-
- lib/buildr/
|
427
|
-
- lib/buildr/groovy/shell.rb
|
428
|
-
- lib/buildr/groovy/bdd.rb
|
429
|
-
- lib/buildr/java/compiler.rb
|
430
|
-
- lib/buildr/java/tests.rb
|
431
|
-
- lib/buildr/java/org/apache/buildr/JavaTestFilter.java
|
432
|
-
- lib/buildr/java/org/apache/buildr/JavaTestFilter.class
|
433
|
-
- lib/buildr/java/bdd.rb
|
434
|
-
- lib/buildr/java/rjb.rb
|
435
|
-
- lib/buildr/java/jtestr_runner.rb.erb
|
436
|
-
- lib/buildr/java/packaging.rb
|
437
|
-
- lib/buildr/java/deprecated.rb
|
438
|
-
- lib/buildr/java/version_requirement.rb
|
439
|
-
- lib/buildr/java/doc.rb
|
440
|
-
- lib/buildr/java/external.rb
|
441
|
-
- lib/buildr/java/cobertura.rb
|
442
|
-
- lib/buildr/java/commands.rb
|
443
|
-
- lib/buildr/java/ant.rb
|
444
|
-
- lib/buildr/java/test_result.rb
|
445
|
-
- lib/buildr/java/ecj.rb
|
446
|
-
- lib/buildr/java/jruby.rb
|
447
|
-
- lib/buildr/java/emma.rb
|
448
|
-
- lib/buildr/java/pom.rb
|
449
|
-
- lib/buildr/groovy.rb
|
450
|
-
- lib/buildr/scala/compiler.rb
|
451
|
-
- lib/buildr/scala/shell.rb
|
452
|
-
- lib/buildr/scala/tests.rb
|
453
|
-
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.java
|
494
|
+
- lib/buildr/clojure/shell.rb
|
454
495
|
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.class
|
496
|
+
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.java
|
455
497
|
- lib/buildr/scala/bdd.rb
|
498
|
+
- lib/buildr/scala/shell.rb
|
499
|
+
- lib/buildr/scala/#Untitled-2#
|
500
|
+
- lib/buildr/scala/compiler.rb
|
501
|
+
- lib/buildr/scala/tests.rb
|
456
502
|
- lib/buildr/scala/doc.rb
|
503
|
+
- lib/buildr/java.rb
|
504
|
+
- lib/buildr/core/osx.rb
|
505
|
+
- lib/buildr/core/build.rb
|
506
|
+
- lib/buildr/core/progressbar.rb
|
507
|
+
- lib/buildr/core/application.rb
|
508
|
+
- lib/buildr/core/generate.rb
|
509
|
+
- lib/buildr/core/util.rb
|
510
|
+
- lib/buildr/core/#application.rb#
|
511
|
+
- lib/buildr/core/shell.rb
|
512
|
+
- lib/buildr/core/compile.rb
|
513
|
+
- lib/buildr/core/help.rb
|
457
514
|
- lib/buildr/core/common.rb
|
458
515
|
- lib/buildr/core/test.rb
|
459
516
|
- lib/buildr/core/environment.rb
|
460
|
-
- lib/buildr/core/shell.rb
|
461
|
-
- lib/buildr/core/osx.rb
|
462
|
-
- lib/buildr/core/generate.rb
|
463
|
-
- lib/buildr/core/transports.rb
|
464
|
-
- lib/buildr/core/checks.rb
|
465
|
-
- lib/buildr/core/application.rb
|
466
517
|
- lib/buildr/core/filter.rb
|
467
|
-
- lib/buildr/core/
|
518
|
+
- lib/buildr/core/checks.rb
|
519
|
+
- lib/buildr/core/cc.rb
|
468
520
|
- lib/buildr/core/doc.rb
|
469
|
-
- lib/buildr/core/
|
470
|
-
- lib/buildr/core/
|
521
|
+
- lib/buildr/core/transports.rb
|
522
|
+
- lib/buildr/core/jrebel.rb
|
471
523
|
- lib/buildr/core/project.rb
|
472
|
-
- lib/buildr/core/help.rb
|
473
|
-
- lib/buildr/core/util.rb
|
474
|
-
- lib/buildr/core/cc.rb
|
475
524
|
- lib/buildr/core/run.rb
|
476
|
-
- lib/buildr/
|
525
|
+
- lib/buildr/core/linux.rb
|
526
|
+
- lib/buildr/java/org/apache/buildr/JavaTestFilter.java
|
527
|
+
- lib/buildr/java/org/apache/buildr/JavaTestFilter.class
|
528
|
+
- lib/buildr/java/bdd.rb
|
529
|
+
- lib/buildr/java/external.rb
|
530
|
+
- lib/buildr/java/pom.rb
|
531
|
+
- lib/buildr/java/ecj.rb
|
532
|
+
- lib/buildr/java/rjb.rb
|
533
|
+
- lib/buildr/java/cobertura.rb
|
534
|
+
- lib/buildr/java/jtestr_result.rb
|
535
|
+
- lib/buildr/java/packaging.rb
|
536
|
+
- lib/buildr/java/compiler.rb
|
537
|
+
- lib/buildr/java/jruby.rb
|
538
|
+
- lib/buildr/java/tests.rb
|
539
|
+
- lib/buildr/java/commands.rb
|
540
|
+
- lib/buildr/java/doc.rb
|
541
|
+
- lib/buildr/java/jtestr_runner.rb.erb
|
542
|
+
- lib/buildr/java/ant.rb
|
543
|
+
- lib/buildr/java/deprecated.rb
|
544
|
+
- lib/buildr/java/test_result.rb
|
545
|
+
- lib/buildr/java/emma.rb
|
546
|
+
- lib/buildr/java/version_requirement.rb
|
547
|
+
- lib/buildr/groovy.rb
|
548
|
+
- lib/buildr/groovy/bdd.rb
|
549
|
+
- lib/buildr/groovy/shell.rb
|
550
|
+
- lib/buildr/groovy/compiler.rb
|
551
|
+
- lib/buildr/groovy/doc.rb
|
552
|
+
- lib/buildr/clojure.rb
|
477
553
|
- lib/buildr/run.rb
|
478
|
-
- lib/buildr.rb
|
479
|
-
- rakelib/all-in-one.rake
|
480
554
|
- rakelib/checks.rake
|
481
|
-
- rakelib/
|
482
|
-
- rakelib/setup.rake
|
555
|
+
- rakelib/package.rake
|
483
556
|
- rakelib/metrics.rake
|
484
|
-
- rakelib/stage.rake
|
485
|
-
- rakelib/release.rake
|
486
557
|
- rakelib/doc.rake
|
487
|
-
- rakelib/
|
488
|
-
-
|
558
|
+
- rakelib/release.rake
|
559
|
+
- rakelib/stage.rake
|
560
|
+
- rakelib/all-in-one.rake
|
561
|
+
- rakelib/setup.rake
|
562
|
+
- rakelib/rspec.rake
|
563
|
+
- spec/ide/idea_spec.rb
|
564
|
+
- spec/ide/eclipse_spec.rb
|
489
565
|
- spec/sandbox.rb
|
490
|
-
- spec/packaging/artifact_namespace_spec.rb
|
491
|
-
- spec/packaging/artifact_spec.rb
|
492
566
|
- spec/packaging/packaging_spec.rb
|
493
567
|
- spec/packaging/archive_spec.rb
|
494
568
|
- spec/packaging/packaging_helper.rb
|
495
|
-
- spec/
|
496
|
-
- spec/
|
497
|
-
- spec/version_requirement_spec.rb
|
569
|
+
- spec/packaging/artifact_spec.rb
|
570
|
+
- spec/packaging/artifact_namespace_spec.rb
|
498
571
|
- spec/addon/drb_spec.rb
|
499
|
-
- spec/
|
500
|
-
- spec/
|
501
|
-
- spec/
|
502
|
-
- spec/java/external_spec.rb
|
503
|
-
- spec/java/run_spec.rb
|
504
|
-
- spec/java/packaging_spec.rb
|
505
|
-
- spec/java/bdd_spec.rb
|
506
|
-
- spec/java/emma_spec.rb
|
507
|
-
- spec/java/doc_spec.rb
|
508
|
-
- spec/java/test_coverage_helper.rb
|
509
|
-
- spec/java/commands_spec.rb
|
510
|
-
- spec/java/java_spec.rb
|
511
|
-
- spec/java/cobertura_spec.rb
|
512
|
-
- spec/java/ant_spec.rb
|
513
|
-
- spec/java/tests_spec.rb
|
514
|
-
- spec/java/compiler_spec.rb
|
515
|
-
- spec/scala/scala.rb
|
572
|
+
- spec/addon/jaxb_xjc_spec.rb
|
573
|
+
- spec/addon/bnd_spec.rb
|
574
|
+
- spec/spec_helpers.rb
|
516
575
|
- spec/scala/bdd_spec.rb
|
517
|
-
- spec/scala/
|
576
|
+
- spec/scala/scala.rb
|
518
577
|
- spec/scala/tests_spec.rb
|
519
578
|
- spec/scala/compiler_spec.rb
|
579
|
+
- spec/scala/doc_spec.rb
|
580
|
+
- spec/version_requirement_spec.rb
|
581
|
+
- spec/core/cc_spec.rb
|
582
|
+
- spec/core/extension_spec.rb
|
583
|
+
- spec/core/build_spec.rb
|
520
584
|
- spec/core/application_spec.rb
|
521
585
|
- spec/core/compile_spec.rb
|
522
|
-
- spec/core/
|
586
|
+
- spec/core/shell_spec.rb
|
523
587
|
- spec/core/util_spec.rb
|
524
|
-
- spec/core/generate_spec.rb
|
525
|
-
- spec/core/run_spec.rb
|
526
588
|
- spec/core/checks_spec.rb
|
527
|
-
- spec/core/transport_spec.rb
|
528
|
-
- spec/core/doc_spec.rb
|
529
|
-
- spec/core/extension_spec.rb
|
530
589
|
- spec/core/test_spec.rb
|
531
|
-
- spec/core/
|
590
|
+
- spec/core/generate_spec.rb
|
591
|
+
- spec/core/doc_spec.rb
|
532
592
|
- spec/core/common_spec.rb
|
533
|
-
- spec/core/
|
593
|
+
- spec/core/transport_spec.rb
|
594
|
+
- spec/core/run_spec.rb
|
595
|
+
- spec/core/project_spec.rb
|
596
|
+
- spec/java/bdd_spec.rb
|
597
|
+
- spec/java/test_coverage_helper.rb
|
598
|
+
- spec/java/packaging_spec.rb
|
599
|
+
- spec/java/commands_spec.rb
|
600
|
+
- spec/java/ecj_spec.rb
|
601
|
+
- spec/java/external_spec.rb
|
602
|
+
- spec/java/java_spec.rb
|
603
|
+
- spec/java/cobertura_spec.rb
|
604
|
+
- spec/java/tests_spec.rb
|
605
|
+
- spec/java/ant_spec.rb
|
606
|
+
- spec/java/compiler_spec.rb
|
607
|
+
- spec/java/emma_spec.rb
|
608
|
+
- spec/java/doc_spec.rb
|
609
|
+
- spec/java/run_spec.rb
|
610
|
+
- spec/xpath_matchers.rb
|
611
|
+
- spec/groovy/bdd_spec.rb
|
612
|
+
- spec/groovy/compiler_spec.rb
|
613
|
+
- spec/groovy/doc_spec.rb
|
534
614
|
- buildr.gemspec
|
535
615
|
- buildr.buildfile
|
536
616
|
- LICENSE
|
@@ -576,7 +656,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
576
656
|
requirements: []
|
577
657
|
|
578
658
|
rubyforge_project: buildr
|
579
|
-
rubygems_version: 1.
|
659
|
+
rubygems_version: 1.5.2
|
580
660
|
signing_key:
|
581
661
|
specification_version: 3
|
582
662
|
summary: Build like you code
|