buildr 1.4.2-x86-mswin32 → 1.4.3-x86-mswin32
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +29 -3
- data/LICENSE +0 -0
- data/NOTICE +0 -0
- data/_jbuildr +2 -0
- data/addon/buildr/antlr.rb +0 -0
- data/addon/buildr/cobertura.rb +0 -0
- data/addon/buildr/drb.rb +0 -0
- data/addon/buildr/emma.rb +0 -0
- data/addon/buildr/javacc.rb +0 -0
- data/addon/buildr/jdepend.rb +0 -0
- data/addon/buildr/jetty.rb +0 -0
- data/addon/buildr/jibx.rb +0 -0
- data/addon/buildr/nailgun.rb +0 -0
- data/addon/buildr/org/apache/buildr/BuildrNail.java +0 -0
- data/addon/buildr/org/apache/buildr/JettyWrapper.java +0 -0
- data/addon/buildr/xmlbeans.rb +0 -0
- data/buildr.gemspec +1 -1
- data/doc/_config.yml +0 -0
- data/doc/_layouts/preface.html +0 -0
- data/doc/css/syntax.css +0 -0
- data/doc/extending.textile +0 -0
- data/doc/images/asf-logo.gif +0 -0
- data/doc/images/buildr-hires.png +0 -0
- data/doc/images/buildr.png +0 -0
- data/doc/images/favicon.png +0 -0
- data/doc/images/growl-icon.tiff +0 -0
- data/doc/images/note.png +0 -0
- data/doc/images/project-structure.png +0 -0
- data/doc/images/tip.png +0 -0
- data/doc/images/zbuildr.png +0 -0
- data/doc/images/zbuildr.tif +0 -0
- data/doc/index.textile +14 -15
- data/doc/mailing_lists.textile +0 -0
- data/doc/more_stuff.textile +54 -1
- data/doc/releasing.textile +17 -16
- data/doc/settings_profiles.textile +13 -13
- data/lib/buildr.rb +1 -0
- data/lib/buildr/core.rb +1 -0
- data/lib/buildr/core/application.rb +8 -3
- data/lib/buildr/core/checks.rb +0 -0
- data/lib/buildr/core/doc.rb +15 -4
- data/lib/buildr/core/environment.rb +0 -0
- data/lib/buildr/core/generate.rb +0 -0
- data/lib/buildr/core/help.rb +0 -0
- data/lib/buildr/core/progressbar.rb +0 -0
- data/lib/buildr/core/run.rb +43 -0
- data/lib/buildr/core/util.rb +21 -3
- data/lib/buildr/ide.rb +0 -0
- data/lib/buildr/ide/idea.ipr.template +0 -0
- data/lib/buildr/ide/idea.rb +0 -0
- data/lib/buildr/ide/idea7x.ipr.template +0 -0
- data/lib/buildr/java/doc.rb +16 -0
- data/lib/buildr/java/packaging.rb +9 -4
- data/lib/buildr/packaging.rb +0 -0
- data/lib/buildr/packaging/archive.rb +4 -4
- data/lib/buildr/packaging/artifact.rb +16 -15
- data/lib/buildr/packaging/artifact_search.rb +0 -0
- data/lib/buildr/packaging/gems.rb +0 -0
- data/lib/buildr/packaging/package.rb +1 -1
- data/lib/buildr/packaging/version_requirement.rb +0 -0
- data/lib/buildr/packaging/ziptask.rb +6 -4
- data/lib/buildr/resources/buildr.icns +0 -0
- data/lib/buildr/run.rb +202 -0
- data/lib/buildr/scala/doc.rb +18 -0
- data/lib/buildr/scala/tests.rb +3 -0
- data/lib/buildr/shell.rb +1 -1
- data/lib/buildr/version.rb +1 -1
- data/rakelib/doc.rake +23 -5
- data/rakelib/release.rake +0 -0
- data/rakelib/setup.rake +2 -2
- data/rakelib/stage.rake +3 -3
- data/spec/addon/drb_spec.rb +0 -0
- data/spec/core/application_spec.rb +65 -27
- data/spec/core/doc_spec.rb +195 -0
- data/spec/core/run_spec.rb +92 -0
- data/spec/java/compiler_spec.rb +0 -194
- data/spec/java/doc_spec.rb +56 -0
- data/spec/java/packaging_spec.rb +30 -14
- data/spec/java/run_spec.rb +78 -0
- data/spec/packaging/archive_spec.rb +20 -5
- data/spec/packaging/artifact_spec.rb +23 -14
- data/spec/packaging/packaging_helper.rb +0 -0
- data/spec/scala/doc_spec.rb +68 -0
- metadata +151 -143
@@ -200,15 +200,15 @@ describe 'ArchiveTask', :shared=>true do
|
|
200
200
|
archive(@archive).include(@files.first, :as=>'test/sample').invoke
|
201
201
|
inspect_archive { |archive| @files.each { |f| archive['test/sample'].should eql(content_for(@files.first)) } }
|
202
202
|
end
|
203
|
-
|
203
|
+
|
204
204
|
it 'should archive directory into specified alias, without using "."' do
|
205
205
|
archive(@archive).include(@dir, :as=>'.').invoke
|
206
206
|
inspect_archive { |archive| archive.keys.should_not include(".") }
|
207
207
|
end
|
208
|
-
|
208
|
+
|
209
209
|
it 'should archive directories into specified alias, even if it has the same name' do
|
210
210
|
archive(@archive).include(@dir, :as=>File.basename(@dir)).invoke
|
211
|
-
inspect_archive { |archive|
|
211
|
+
inspect_archive { |archive|
|
212
212
|
archive.keys.should_not include "#{File.basename(@dir)}"
|
213
213
|
}
|
214
214
|
end
|
@@ -399,6 +399,20 @@ describe ZipTask do
|
|
399
399
|
before { @archive = File.expand_path('test.zip') }
|
400
400
|
define_method(:archive) { |file| zip(file) }
|
401
401
|
|
402
|
+
after do
|
403
|
+
checkZip(@archive)
|
404
|
+
end
|
405
|
+
|
406
|
+
# Check for possible corruption usign Java's ZipInputStream since it's stricter than rubyzip
|
407
|
+
def checkZip(file)
|
408
|
+
return unless File.exist?(file)
|
409
|
+
zip = Java.java.util.zip.ZipInputStream.new(Java.java.io.FileInputStream.new(file))
|
410
|
+
while entry = zip.getNextEntry do
|
411
|
+
# just iterate over all entries
|
412
|
+
end
|
413
|
+
zip.close()
|
414
|
+
end
|
415
|
+
|
402
416
|
def inspect_archive
|
403
417
|
entries = {}
|
404
418
|
Zip::ZipFile.open @archive do |zip|
|
@@ -432,7 +446,7 @@ describe ZipTask do
|
|
432
446
|
archive(@archive).invoke
|
433
447
|
inspect_archive { |archive| archive.keys.should include('code/') }
|
434
448
|
end
|
435
|
-
|
449
|
+
|
436
450
|
it 'should have path object that includes empty dirs' do
|
437
451
|
archive(@archive).path('code').include(Dir["#{@dir}/*"])
|
438
452
|
archive(@archive).invoke
|
@@ -585,7 +599,7 @@ describe Unzip do
|
|
585
599
|
Rake::Task.clear ; rm_rf @target
|
586
600
|
unzip(@target=>@zip).include('test/**/*').target.invoke
|
587
601
|
FileList[File.join(@target, 'test/path/*')].size.should be(2)
|
588
|
-
|
602
|
+
|
589
603
|
Rake::Task.clear ; rm_rf @target
|
590
604
|
unzip(@target=>@zip).include('test/*').target.invoke
|
591
605
|
FileList[File.join(@target, 'test/path/*')].size.should be(2)
|
@@ -702,4 +716,5 @@ describe Unzip do
|
|
702
716
|
task = unzip(@target=>@zip)
|
703
717
|
task.from_path('foo').should be(task.path('foo'))
|
704
718
|
end
|
719
|
+
|
705
720
|
end
|
@@ -299,7 +299,7 @@ describe Repositories, 'remote' do
|
|
299
299
|
lambda { artifact('com.example:library:jar:2.1-SNAPSHOT').invoke }.
|
300
300
|
should change { File.exist?(File.join(repositories.local, 'com/example/library/2.1-SNAPSHOT/library-2.1-SNAPSHOT.jar')) }.to(true)
|
301
301
|
end
|
302
|
-
|
302
|
+
|
303
303
|
it 'should fail resolving m2-style deployed snapshots if a timestamp is missing' do
|
304
304
|
metadata = <<-XML
|
305
305
|
<?xml version='1.0' encoding='UTF-8'?>
|
@@ -325,7 +325,7 @@ describe Repositories, 'remote' do
|
|
325
325
|
}.should show_error "No timestamp provided for the snapshot com.example:library:jar:2.1-SNAPSHOT"
|
326
326
|
File.exist?(File.join(repositories.local, 'com/example/library/2.1-SNAPSHOT/library-2.1-SNAPSHOT.jar')).should be_false
|
327
327
|
end
|
328
|
-
|
328
|
+
|
329
329
|
it 'should fail resolving m2-style deployed snapshots if a build number is missing' do
|
330
330
|
metadata = <<-XML
|
331
331
|
<?xml version='1.0' encoding='UTF-8'?>
|
@@ -451,6 +451,14 @@ describe Repositories, 'release_to' do
|
|
451
451
|
repositories.release_to.should == { :url=>'http://john:secret@example.com' }
|
452
452
|
end
|
453
453
|
|
454
|
+
it 'should load URL from build settings file' do
|
455
|
+
write 'build.yaml', <<-YAML
|
456
|
+
repositories:
|
457
|
+
release_to: http://john:secret@example.com
|
458
|
+
YAML
|
459
|
+
repositories.release_to.should == { :url=>'http://john:secret@example.com' }
|
460
|
+
end
|
461
|
+
|
454
462
|
it 'should load URL, username and password from settings file' do
|
455
463
|
write 'home/.buildr/settings.yaml', <<-YAML
|
456
464
|
repositories:
|
@@ -465,10 +473,10 @@ end
|
|
465
473
|
|
466
474
|
|
467
475
|
describe Buildr, '#artifact' do
|
468
|
-
before do
|
476
|
+
before do
|
469
477
|
@spec = { :group=>'com.example', :id=>'library', :type=>'jar', :version=>'2.0' }
|
470
478
|
@snapshot_spec = 'group:id:jar:1.0-SNAPSHOT'
|
471
|
-
write @file = 'testartifact.jar'
|
479
|
+
write @file = 'testartifact.jar'
|
472
480
|
end
|
473
481
|
|
474
482
|
it 'should accept hash specification' do
|
@@ -556,11 +564,11 @@ describe Buildr, '#artifact' do
|
|
556
564
|
Buildr.application.send(:load_artifact_ns)
|
557
565
|
artifact(:j2ee).to_s.pathmap('%f').should == 'geronimo-spec-j2ee-1.4-rc4.jar'
|
558
566
|
end
|
559
|
-
|
567
|
+
|
560
568
|
it 'should try to download snapshot artifact' do
|
561
569
|
run_with_repo
|
562
570
|
snapshot = artifact(@snapshot_spec)
|
563
|
-
|
571
|
+
|
564
572
|
URI.should_receive(:download).at_least(:twice).and_return { |uri, target, options| write target }
|
565
573
|
FileUtils.should_receive(:mv).at_least(:twice)
|
566
574
|
snapshot.invoke
|
@@ -574,7 +582,7 @@ describe Buildr, '#artifact' do
|
|
574
582
|
URI.should_receive(:download).exactly(0).times
|
575
583
|
snapshot.invoke
|
576
584
|
end
|
577
|
-
|
585
|
+
|
578
586
|
it 'should download snapshot even in offline mode if it doesn''t exist' do
|
579
587
|
run_with_repo
|
580
588
|
snapshot = artifact(@snapshot_spec)
|
@@ -582,17 +590,18 @@ describe Buildr, '#artifact' do
|
|
582
590
|
URI.should_receive(:download).exactly(2).times
|
583
591
|
snapshot.invoke
|
584
592
|
end
|
585
|
-
|
593
|
+
|
586
594
|
it 'should update snapshots if --update-snapshots' do
|
587
595
|
run_with_repo
|
588
596
|
snapshot = artifact(@snapshot_spec)
|
597
|
+
write snapshot.to_s
|
589
598
|
Buildr.application.options.update_snapshots = true
|
590
|
-
|
599
|
+
|
591
600
|
URI.should_receive(:download).at_least(:twice).and_return { |uri, target, options| write target }
|
592
601
|
FileUtils.should_receive(:mv).at_least(:twice)
|
593
602
|
snapshot.invoke
|
594
603
|
end
|
595
|
-
|
604
|
+
|
596
605
|
it 'should update snapshot if it''s older than 24 hours' do
|
597
606
|
run_with_repo
|
598
607
|
snapshot = artifact(@snapshot_spec)
|
@@ -602,11 +611,11 @@ describe Buildr, '#artifact' do
|
|
602
611
|
URI.should_receive(:download).at_least(:once).and_return { |uri, target, options| write target }
|
603
612
|
snapshot.invoke
|
604
613
|
end
|
605
|
-
|
614
|
+
|
606
615
|
def run_with_repo
|
607
616
|
repositories.remote = 'http://example.com'
|
608
617
|
end
|
609
|
-
|
618
|
+
|
610
619
|
end
|
611
620
|
|
612
621
|
|
@@ -730,13 +739,13 @@ describe Buildr, '#install' do
|
|
730
739
|
sleep 1; write @file # make sure the "from" file has newer modification time
|
731
740
|
lambda { install.invoke }.should change { modified?(old_mtime, @snapshot_spec) }.to(true)
|
732
741
|
end
|
733
|
-
|
742
|
+
|
734
743
|
it 'should download snapshot to temporary location' do
|
735
744
|
repositories.remote = 'http://example.com'
|
736
745
|
snapshot = artifact(@snapshot_spec)
|
737
746
|
same_time = Time.new
|
738
747
|
download_file = "#{Dir.tmpdir}/#{File.basename(snapshot.name)}#{same_time.to_i}"
|
739
|
-
|
748
|
+
|
740
749
|
Time.should_receive(:new).twice.and_return(same_time)
|
741
750
|
URI.should_receive(:download).at_least(:twice).and_return { |uri, target, options| write target }
|
742
751
|
FileUtils.should_receive(:mv).at_least(:twice)
|
File without changes
|
@@ -0,0 +1,68 @@
|
|
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 File.expand_path(File.join(File.dirname(__FILE__), '..', 'spec_helpers'))
|
18
|
+
|
19
|
+
describe "Scaladoc" do
|
20
|
+
|
21
|
+
before(:each) do
|
22
|
+
# Force Scala 2.8.0 for specs; don't want to rely on SCALA_HOME
|
23
|
+
Buildr.settings.build['scala.version'] = "2.8.0"
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'should pick -doc-title from project name by default' do
|
27
|
+
define 'foo' do
|
28
|
+
compile.using(:scalac)
|
29
|
+
|
30
|
+
define 'bar' do
|
31
|
+
compile.using(:scalac)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
project('foo').doc.options[:"doc-title"].should eql('foo')
|
36
|
+
project('foo:bar').doc.options[:"doc-title"].should eql('foo:bar')
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'should pick -doc-title from project description by default, if available' do
|
40
|
+
desc 'My App'
|
41
|
+
define 'foo' do
|
42
|
+
compile.using(:scalac)
|
43
|
+
end
|
44
|
+
project('foo').doc.options[:"doc-title"].should eql('My App')
|
45
|
+
end
|
46
|
+
|
47
|
+
it 'should not override explicit "doc-title" option' do
|
48
|
+
define 'foo' do
|
49
|
+
compile.using(:scalac)
|
50
|
+
doc.using "doc-title" => 'explicit'
|
51
|
+
end
|
52
|
+
project('foo').doc.options[:"doc-title"].should eql('explicit')
|
53
|
+
end
|
54
|
+
|
55
|
+
it 'should convert :windowtitle to -doc-title for Scala 2.8.0' do
|
56
|
+
write 'src/main/scala/com/example/Test.scala', 'package com.example; class Test { val i = 1 }'
|
57
|
+
define('foo') do
|
58
|
+
doc.using :windowtitle => "foo"
|
59
|
+
end
|
60
|
+
Java.scala.tools.nsc.ScalaDoc.should_receive(:main) do |args|
|
61
|
+
# Convert Java Strings to Ruby Strings, if needed.
|
62
|
+
args.map { |a| a.is_a?(String) ? a : a.toString }.should include("-doc-title")
|
63
|
+
0 # normal return
|
64
|
+
end
|
65
|
+
project('foo').doc.invoke
|
66
|
+
end
|
67
|
+
|
68
|
+
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:
|
4
|
+
hash: 1
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 1.4.
|
9
|
+
- 3
|
10
|
+
version: 1.4.3
|
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: 2010-
|
18
|
+
date: 2010-10-13 00:00:00 -07:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -278,13 +278,14 @@ dependencies:
|
|
278
278
|
requirement: &id017 !ruby/object:Gem::Requirement
|
279
279
|
none: false
|
280
280
|
requirements:
|
281
|
-
- -
|
281
|
+
- - "="
|
282
282
|
- !ruby/object:Gem::Version
|
283
|
-
hash:
|
283
|
+
hash: 41
|
284
284
|
segments:
|
285
285
|
- 0
|
286
|
-
-
|
287
|
-
|
286
|
+
- 9
|
287
|
+
- 9
|
288
|
+
version: 0.9.9
|
288
289
|
type: :development
|
289
290
|
version_requirements: *id017
|
290
291
|
- !ruby/object:Gem::Dependency
|
@@ -335,194 +336,201 @@ extra_rdoc_files:
|
|
335
336
|
- LICENSE
|
336
337
|
- NOTICE
|
337
338
|
files:
|
338
|
-
- addon/buildr/
|
339
|
-
- addon/buildr/cobertura.rb
|
339
|
+
- addon/buildr/nailgun.rb
|
340
340
|
- addon/buildr/drb.rb
|
341
|
-
- addon/buildr/
|
341
|
+
- addon/buildr/antlr.rb
|
342
342
|
- addon/buildr/hibernate.rb
|
343
343
|
- addon/buildr/javacc.rb
|
344
344
|
- addon/buildr/jdepend.rb
|
345
|
-
- addon/buildr/jetty.rb
|
346
|
-
- addon/buildr/jibx.rb
|
347
|
-
- addon/buildr/nailgun.rb
|
348
|
-
- addon/buildr/openjpa.rb
|
349
|
-
- addon/buildr/org/apache/buildr/BuildrNail$Main.class
|
350
|
-
- addon/buildr/org/apache/buildr/BuildrNail.class
|
351
345
|
- addon/buildr/org/apache/buildr/BuildrNail.java
|
346
|
+
- addon/buildr/org/apache/buildr/JettyWrapper.java
|
352
347
|
- addon/buildr/org/apache/buildr/JettyWrapper$1.class
|
353
348
|
- addon/buildr/org/apache/buildr/JettyWrapper$BuildrHandler.class
|
354
349
|
- addon/buildr/org/apache/buildr/JettyWrapper.class
|
355
|
-
- addon/buildr/org/apache/buildr/
|
350
|
+
- addon/buildr/org/apache/buildr/BuildrNail$Main.class
|
351
|
+
- addon/buildr/org/apache/buildr/BuildrNail.class
|
352
|
+
- addon/buildr/openjpa.rb
|
353
|
+
- addon/buildr/jibx.rb
|
354
|
+
- addon/buildr/cobertura.rb
|
356
355
|
- addon/buildr/protobuf.rb
|
357
356
|
- addon/buildr/xmlbeans.rb
|
357
|
+
- addon/buildr/jetty.rb
|
358
|
+
- addon/buildr/emma.rb
|
358
359
|
- bin/buildr
|
360
|
+
- doc/testing.textile
|
361
|
+
- doc/preface.textile
|
362
|
+
- doc/building.textile
|
363
|
+
- doc/index.textile
|
364
|
+
- doc/releasing.textile
|
359
365
|
- doc/_config.yml
|
366
|
+
- doc/extending.textile
|
367
|
+
- doc/more_stuff.textile
|
368
|
+
- doc/download.textile
|
369
|
+
- doc/projects.textile
|
370
|
+
- doc/css/default.css
|
371
|
+
- doc/css/syntax.css
|
372
|
+
- doc/css/print.css
|
373
|
+
- doc/scripts/install-osx.sh
|
374
|
+
- doc/scripts/gitflow.rb
|
375
|
+
- doc/scripts/buildr-git.rb
|
376
|
+
- doc/scripts/install-jruby.sh
|
377
|
+
- doc/scripts/install-linux.sh
|
378
|
+
- doc/packaging.textile
|
360
379
|
- doc/_layouts/default.html
|
361
380
|
- doc/_layouts/preface.html
|
381
|
+
- doc/settings_profiles.textile
|
382
|
+
- doc/quick_start.textile
|
362
383
|
- doc/artifacts.textile
|
363
|
-
- doc/building.textile
|
364
|
-
- doc/contributing.textile
|
365
|
-
- doc/css/default.css
|
366
|
-
- doc/css/print.css
|
367
|
-
- doc/css/syntax.css
|
368
|
-
- doc/download.textile
|
369
|
-
- doc/extending.textile
|
370
|
-
- doc/images/1442160941-frontcover.jpg
|
371
|
-
- doc/images/asf-logo.gif
|
372
|
-
- doc/images/asf-logo.png
|
373
|
-
- doc/images/buildr-hires.png
|
374
|
-
- doc/images/buildr.png
|
375
384
|
- doc/images/favicon.png
|
376
|
-
- doc/images/
|
377
|
-
- doc/images/note.png
|
385
|
+
- doc/images/buildr-hires.png
|
378
386
|
- doc/images/project-structure.png
|
379
|
-
- doc/images/
|
387
|
+
- doc/images/asf-logo.gif
|
380
388
|
- doc/images/zbuildr.png
|
381
389
|
- doc/images/zbuildr.tif
|
382
|
-
- doc/
|
383
|
-
- doc/
|
384
|
-
- doc/
|
390
|
+
- doc/images/buildr.png
|
391
|
+
- doc/images/note.png
|
392
|
+
- doc/images/growl-icon.tiff
|
393
|
+
- doc/images/tip.png
|
394
|
+
- doc/images/1442160941-frontcover.jpg
|
395
|
+
- doc/images/asf-logo.png
|
385
396
|
- doc/mailing_lists.textile
|
386
|
-
- doc/
|
387
|
-
- doc/
|
388
|
-
- doc/
|
389
|
-
- doc/projects.textile
|
390
|
-
- doc/quick_start.textile
|
391
|
-
- doc/releasing.textile
|
392
|
-
- doc/scripts/buildr-git.rb
|
393
|
-
- doc/scripts/gitflow.rb
|
394
|
-
- doc/scripts/install-jruby.sh
|
395
|
-
- doc/scripts/install-linux.sh
|
396
|
-
- doc/scripts/install-osx.sh
|
397
|
-
- doc/settings_profiles.textile
|
398
|
-
- doc/testing.textile
|
397
|
+
- doc/languages.textile
|
398
|
+
- doc/installing.textile
|
399
|
+
- doc/contributing.textile
|
399
400
|
- etc/KEYS
|
400
|
-
- lib/buildr/
|
401
|
-
- lib/buildr/
|
402
|
-
- lib/buildr/
|
403
|
-
- lib/buildr/core/checks.rb
|
404
|
-
- lib/buildr/core/common.rb
|
405
|
-
- lib/buildr/core/compile.rb
|
406
|
-
- lib/buildr/core/doc.rb
|
407
|
-
- lib/buildr/core/environment.rb
|
408
|
-
- lib/buildr/core/filter.rb
|
409
|
-
- lib/buildr/core/generate.rb
|
410
|
-
- lib/buildr/core/help.rb
|
411
|
-
- lib/buildr/core/osx.rb
|
412
|
-
- lib/buildr/core/progressbar.rb
|
413
|
-
- lib/buildr/core/project.rb
|
414
|
-
- lib/buildr/core/shell.rb
|
415
|
-
- lib/buildr/core/test.rb
|
416
|
-
- lib/buildr/core/transports.rb
|
417
|
-
- lib/buildr/core/util.rb
|
401
|
+
- lib/buildr/scala.rb
|
402
|
+
- lib/buildr/shell.rb
|
403
|
+
- lib/buildr/ide.rb
|
418
404
|
- lib/buildr/core.rb
|
419
|
-
- lib/buildr/
|
420
|
-
- lib/buildr/
|
421
|
-
- lib/buildr/
|
422
|
-
- lib/buildr/
|
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
|
+
- lib/buildr/ide/eclipse/scala.rb
|
423
417
|
- lib/buildr/ide/eclipse/java.rb
|
424
418
|
- lib/buildr/ide/eclipse/plugin.rb
|
425
|
-
- lib/buildr/ide/eclipse/scala.rb
|
426
419
|
- lib/buildr/ide/eclipse.rb
|
427
|
-
- lib/buildr/ide/idea.ipr.template
|
428
420
|
- lib/buildr/ide/idea.rb
|
429
|
-
- lib/buildr/ide/idea7x.ipr.template
|
430
421
|
- lib/buildr/ide/idea7x.rb
|
431
|
-
- lib/buildr/ide.
|
432
|
-
- lib/buildr/java
|
433
|
-
- lib/buildr/
|
434
|
-
- lib/buildr/
|
435
|
-
- lib/buildr/
|
422
|
+
- lib/buildr/ide/idea7x.ipr.template
|
423
|
+
- lib/buildr/java.rb
|
424
|
+
- lib/buildr/resources/buildr.icns
|
425
|
+
- lib/buildr/packaging.rb
|
426
|
+
- lib/buildr/groovy/compiler.rb
|
427
|
+
- lib/buildr/groovy/shell.rb
|
428
|
+
- lib/buildr/groovy/bdd.rb
|
436
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
437
|
- lib/buildr/java/deprecated.rb
|
438
|
+
- lib/buildr/java/version_requirement.rb
|
438
439
|
- lib/buildr/java/doc.rb
|
439
|
-
- lib/buildr/java/ecj.rb
|
440
|
-
- lib/buildr/java/emma.rb
|
441
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
|
442
446
|
- lib/buildr/java/jruby.rb
|
443
|
-
- lib/buildr/java/
|
444
|
-
- lib/buildr/java/org/apache/buildr/JavaTestFilter.class
|
445
|
-
- lib/buildr/java/org/apache/buildr/JavaTestFilter.java
|
446
|
-
- lib/buildr/java/packaging.rb
|
447
|
+
- lib/buildr/java/emma.rb
|
447
448
|
- lib/buildr/java/pom.rb
|
448
|
-
- lib/buildr/
|
449
|
-
- lib/buildr/java/test_result.rb
|
450
|
-
- lib/buildr/java/tests.rb
|
451
|
-
- lib/buildr/java/version_requirement.rb
|
452
|
-
- lib/buildr/java.rb
|
453
|
-
- lib/buildr/packaging/archive.rb
|
454
|
-
- lib/buildr/packaging/artifact.rb
|
455
|
-
- lib/buildr/packaging/artifact_namespace.rb
|
456
|
-
- lib/buildr/packaging/artifact_search.rb
|
457
|
-
- lib/buildr/packaging/gems.rb
|
458
|
-
- lib/buildr/packaging/package.rb
|
459
|
-
- lib/buildr/packaging/tar.rb
|
460
|
-
- lib/buildr/packaging/version_requirement.rb
|
461
|
-
- lib/buildr/packaging/zip.rb
|
462
|
-
- lib/buildr/packaging/ziptask.rb
|
463
|
-
- lib/buildr/packaging.rb
|
464
|
-
- lib/buildr/resources/buildr.icns
|
465
|
-
- lib/buildr/scala/bdd.rb
|
449
|
+
- lib/buildr/groovy.rb
|
466
450
|
- lib/buildr/scala/compiler.rb
|
467
|
-
- lib/buildr/scala/doc.rb
|
468
|
-
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.class
|
469
|
-
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.java
|
470
451
|
- lib/buildr/scala/shell.rb
|
471
452
|
- lib/buildr/scala/tests.rb
|
472
|
-
- lib/buildr/scala.
|
473
|
-
- lib/buildr/
|
453
|
+
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.java
|
454
|
+
- lib/buildr/scala/org/apache/buildr/SpecsSingletonRunner.class
|
455
|
+
- lib/buildr/scala/bdd.rb
|
456
|
+
- lib/buildr/scala/doc.rb
|
457
|
+
- lib/buildr/core/common.rb
|
458
|
+
- lib/buildr/core/test.rb
|
459
|
+
- 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
|
+
- lib/buildr/core/filter.rb
|
467
|
+
- lib/buildr/core/compile.rb
|
468
|
+
- lib/buildr/core/doc.rb
|
469
|
+
- lib/buildr/core/progressbar.rb
|
470
|
+
- lib/buildr/core/build.rb
|
471
|
+
- lib/buildr/core/project.rb
|
472
|
+
- lib/buildr/core/help.rb
|
473
|
+
- lib/buildr/core/util.rb
|
474
|
+
- lib/buildr/core/cc.rb
|
475
|
+
- lib/buildr/core/run.rb
|
474
476
|
- lib/buildr/version.rb
|
477
|
+
- lib/buildr/run.rb
|
475
478
|
- lib/buildr.rb
|
476
479
|
- rakelib/all-in-one.rake
|
477
480
|
- rakelib/checks.rake
|
478
|
-
- rakelib/doc.rake
|
479
|
-
- rakelib/metrics.rake
|
480
|
-
- rakelib/package.rake
|
481
|
-
- rakelib/release.rake
|
482
481
|
- rakelib/rspec.rake
|
483
482
|
- rakelib/setup.rake
|
483
|
+
- rakelib/metrics.rake
|
484
484
|
- rakelib/stage.rake
|
485
|
+
- rakelib/release.rake
|
486
|
+
- rakelib/doc.rake
|
487
|
+
- rakelib/package.rake
|
488
|
+
- spec/spec_helpers.rb
|
489
|
+
- spec/sandbox.rb
|
490
|
+
- spec/packaging/artifact_namespace_spec.rb
|
491
|
+
- spec/packaging/artifact_spec.rb
|
492
|
+
- spec/packaging/packaging_spec.rb
|
493
|
+
- spec/packaging/archive_spec.rb
|
494
|
+
- spec/packaging/packaging_helper.rb
|
495
|
+
- spec/ide/eclipse_spec.rb
|
496
|
+
- spec/ide/idea7x_spec.rb
|
497
|
+
- spec/version_requirement_spec.rb
|
485
498
|
- spec/addon/drb_spec.rb
|
486
|
-
- spec/core/application_spec.rb
|
487
|
-
- spec/core/build_spec.rb
|
488
|
-
- spec/core/cc_spec.rb
|
489
|
-
- spec/core/checks_spec.rb
|
490
|
-
- spec/core/common_spec.rb
|
491
|
-
- spec/core/compile_spec.rb
|
492
|
-
- spec/core/extension_spec.rb
|
493
|
-
- spec/core/generate_spec.rb
|
494
|
-
- spec/core/project_spec.rb
|
495
|
-
- spec/core/test_spec.rb
|
496
|
-
- spec/core/transport_spec.rb
|
497
|
-
- spec/core/util_spec.rb
|
498
499
|
- spec/groovy/bdd_spec.rb
|
499
500
|
- spec/groovy/compiler_spec.rb
|
500
|
-
- spec/ide/eclipse_spec.rb
|
501
|
-
- spec/ide/idea7x_spec.rb
|
502
|
-
- spec/java/ant_spec.rb
|
503
|
-
- spec/java/bdd_spec.rb
|
504
|
-
- spec/java/cobertura_spec.rb
|
505
|
-
- spec/java/commands_spec.rb
|
506
|
-
- spec/java/compiler_spec.rb
|
507
501
|
- spec/java/ecj_spec.rb
|
508
|
-
- spec/java/emma_spec.rb
|
509
502
|
- spec/java/external_spec.rb
|
510
|
-
- spec/java/
|
503
|
+
- spec/java/run_spec.rb
|
511
504
|
- spec/java/packaging_spec.rb
|
505
|
+
- spec/java/bdd_spec.rb
|
506
|
+
- spec/java/emma_spec.rb
|
507
|
+
- spec/java/doc_spec.rb
|
512
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
513
|
- spec/java/tests_spec.rb
|
514
|
-
- spec/
|
515
|
-
- spec/packaging/artifact_namespace_spec.rb
|
516
|
-
- spec/packaging/artifact_spec.rb
|
517
|
-
- spec/packaging/packaging_helper.rb
|
518
|
-
- spec/packaging/packaging_spec.rb
|
519
|
-
- spec/sandbox.rb
|
520
|
-
- spec/scala/bdd_spec.rb
|
521
|
-
- spec/scala/compiler_spec.rb
|
514
|
+
- spec/java/compiler_spec.rb
|
522
515
|
- spec/scala/scala.rb
|
516
|
+
- spec/scala/bdd_spec.rb
|
517
|
+
- spec/scala/doc_spec.rb
|
523
518
|
- spec/scala/tests_spec.rb
|
524
|
-
- spec/
|
525
|
-
- spec/
|
519
|
+
- spec/scala/compiler_spec.rb
|
520
|
+
- spec/core/application_spec.rb
|
521
|
+
- spec/core/compile_spec.rb
|
522
|
+
- spec/core/cc_spec.rb
|
523
|
+
- spec/core/util_spec.rb
|
524
|
+
- spec/core/generate_spec.rb
|
525
|
+
- spec/core/run_spec.rb
|
526
|
+
- spec/core/checks_spec.rb
|
527
|
+
- spec/core/transport_spec.rb
|
528
|
+
- spec/core/doc_spec.rb
|
529
|
+
- spec/core/extension_spec.rb
|
530
|
+
- spec/core/test_spec.rb
|
531
|
+
- spec/core/project_spec.rb
|
532
|
+
- spec/core/common_spec.rb
|
533
|
+
- spec/core/build_spec.rb
|
526
534
|
- buildr.gemspec
|
527
535
|
- buildr.buildfile
|
528
536
|
- LICENSE
|