pepijnve-ivy4r 0.12.11
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/.autotest +14 -0
- data/.gitignore +7 -0
- data/.project +17 -0
- data/.rspec +2 -0
- data/CHANGELOG +280 -0
- data/Gemfile +5 -0
- data/README.txt +124 -0
- data/Rakefile +36 -0
- data/autotest/discover.rb +1 -0
- data/ivy4r.gemspec +30 -0
- data/lib/buildr/ivy_extension.rb +808 -0
- data/lib/ivy/artifactproperty.rb +34 -0
- data/lib/ivy/artifactreport.rb +24 -0
- data/lib/ivy/buildlist.rb +37 -0
- data/lib/ivy/buildnumber.rb +34 -0
- data/lib/ivy/cachepath.rb +30 -0
- data/lib/ivy/cleancache.rb +20 -0
- data/lib/ivy/configure.rb +29 -0
- data/lib/ivy/findrevision.rb +34 -0
- data/lib/ivy/info.rb +36 -0
- data/lib/ivy/install.rb +33 -0
- data/lib/ivy/java/all_version_matcher.rb +31 -0
- data/lib/ivy/java/java_object_wrapper.rb +160 -0
- data/lib/ivy/listmodules.rb +35 -0
- data/lib/ivy/makepom.rb +30 -0
- data/lib/ivy/publish.rb +37 -0
- data/lib/ivy/report.rb +33 -0
- data/lib/ivy/resolve.rb +44 -0
- data/lib/ivy/retrieve.rb +27 -0
- data/lib/ivy/settings.rb +15 -0
- data/lib/ivy/target.rb +162 -0
- data/lib/ivy/targets.rb +50 -0
- data/lib/ivy4r.rb +252 -0
- data/lib/ivy4r/version.rb +3 -0
- data/lib/ivy4r_java_extensions.rb +42 -0
- data/lib/rake/ivy_extension.rb +349 -0
- data/spec/ivy/target_spec.rb +86 -0
- data/spec/ivy/targets_spec.rb +27 -0
- data/spec/ivy4r_spec.rb +50 -0
- data/spec/spec_helper.rb +10 -0
- data/spec_files/buildlist/p1/buildfile +0 -0
- data/spec_files/buildlist/p1/ivy.xml +7 -0
- data/spec_files/buildlist/sub/p2/buildfile +0 -0
- data/spec_files/buildlist/sub/p2/ivy.xml +11 -0
- data/spec_files/buildlist/sub/p3/buildfile +0 -0
- data/spec_files/buildlist/sub/p3/ivy.xml +11 -0
- data/spec_files/ivy.xml +18 -0
- data/spec_files/ivysettings.xml +11 -0
- data/spec_functional/ivy4r_spec.rb +131 -0
- metadata +214 -0
@@ -0,0 +1,86 @@
|
|
1
|
+
describe "Ivy::Target" do
|
2
|
+
|
3
|
+
before(:each) do
|
4
|
+
Ivy::Target.send(:public, :call_nested) # make tested method public
|
5
|
+
@ant = Object.new
|
6
|
+
@target = Ivy::Target.new(@ant)
|
7
|
+
end
|
8
|
+
|
9
|
+
it "#call_nested(single data) should make correct calls" do
|
10
|
+
nested = {
|
11
|
+
:fileset => {
|
12
|
+
:includes => 'bla',
|
13
|
+
:excludes => 'blub',
|
14
|
+
:dir => 'anything'
|
15
|
+
}
|
16
|
+
}
|
17
|
+
mock(@ant).fileset(nested[:fileset])
|
18
|
+
|
19
|
+
@target.call_nested(nested)
|
20
|
+
end
|
21
|
+
|
22
|
+
it "#call_nested(multi data) should make correct calls" do
|
23
|
+
nested = {
|
24
|
+
:fileset => {
|
25
|
+
:includes => 'bla',
|
26
|
+
:excludes => 'blub',
|
27
|
+
:dir => 'anything'
|
28
|
+
},
|
29
|
+
:other => {
|
30
|
+
:param => 'myparam'
|
31
|
+
}
|
32
|
+
}
|
33
|
+
mock(@ant).fileset nested[:fileset]
|
34
|
+
mock(@ant).other nested[:other]
|
35
|
+
|
36
|
+
@target.call_nested(nested)
|
37
|
+
end
|
38
|
+
|
39
|
+
it "#call_nested(single data list) should make correct calls" do
|
40
|
+
nested = {
|
41
|
+
:fileset => [
|
42
|
+
{
|
43
|
+
:includes => 'bla',
|
44
|
+
:excludes => 'blub',
|
45
|
+
:dir => 'anything'
|
46
|
+
},
|
47
|
+
{
|
48
|
+
:includes => 'otherbla',
|
49
|
+
:excludes => 'otherblub',
|
50
|
+
:dir => 'otheranything'
|
51
|
+
}
|
52
|
+
]
|
53
|
+
}
|
54
|
+
mock(@ant).fileset nested[:fileset][0]
|
55
|
+
mock(@ant).fileset nested[:fileset][1]
|
56
|
+
|
57
|
+
@target.call_nested(nested)
|
58
|
+
end
|
59
|
+
|
60
|
+
it "#call_nested(recursive data) should make correct calls" do
|
61
|
+
nested = {
|
62
|
+
:taskdef =>
|
63
|
+
{
|
64
|
+
:name => 'bla',
|
65
|
+
:nested => {
|
66
|
+
:fileset => {
|
67
|
+
:includes => 'bla',
|
68
|
+
:excludes => 'blub',
|
69
|
+
:dir => 'anything'}
|
70
|
+
}
|
71
|
+
}
|
72
|
+
}
|
73
|
+
|
74
|
+
# define the method that yields if a block is given, to test the nested stuff
|
75
|
+
def @ant.taskdef(p)
|
76
|
+
raise "Invalid params to many" unless p.size == 1
|
77
|
+
raise "Wrong parameter value" unless 'bla' == p[:name]
|
78
|
+
raise "missing block for method" unless block_given?
|
79
|
+
yield
|
80
|
+
end
|
81
|
+
mock(@ant).fileset nested[:taskdef][:nested][:fileset]
|
82
|
+
|
83
|
+
@target.call_nested(nested)
|
84
|
+
end
|
85
|
+
|
86
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
describe "Ivy::Targets" do
|
2
|
+
|
3
|
+
before(:each) do
|
4
|
+
ivy4r = Ivy4r.new
|
5
|
+
@ivy_test_xml = File.join(File.dirname(__FILE__), '..', '..', 'spec_files', 'ivy.xml')
|
6
|
+
@info = Ivy::Info.new(ivy4r.ant)
|
7
|
+
end
|
8
|
+
|
9
|
+
it "#execute with empty parameters missing mandatory error" do
|
10
|
+
lambda{ @info.execute({}) }.should raise_error(ArgumentError)
|
11
|
+
end
|
12
|
+
|
13
|
+
it "#execute validate with unknown parameters error" do
|
14
|
+
lambda{ @info.execute(:unknown_parameter => 'unknown') }.should raise_error(ArgumentError)
|
15
|
+
end
|
16
|
+
|
17
|
+
it "#execute simple file correct return values" do
|
18
|
+
result = @info.execute(:file => @ivy_test_xml)
|
19
|
+
|
20
|
+
result.should_not be nil
|
21
|
+
%w[ivy.organisation ivy.revision ivy.module].each do |var|
|
22
|
+
result.keys.should include(var)
|
23
|
+
end
|
24
|
+
result['ivy.organisation'].should eq('blau')
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
data/spec/ivy4r_spec.rb
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
describe "::Ivy4r" do
|
2
|
+
|
3
|
+
before(:each) do
|
4
|
+
@ivy4r = Ivy4r.new
|
5
|
+
@ivy_xml = File.join(File.dirname(__FILE__), '..', 'spec_files', 'ivy.xml')
|
6
|
+
@ivy_settings_xml = File.join(File.dirname(__FILE__), '..', 'spec_files', 'ivysettings.xml')
|
7
|
+
end
|
8
|
+
|
9
|
+
it "#ant returns default AntWrapper" do
|
10
|
+
@ivy4r.ant.should_not be nil
|
11
|
+
@ivy4r.ant.should be_kind_of(::Antwrap::AntProject)
|
12
|
+
@ivy4r.ant.basedir.should eq(Dir.pwd)
|
13
|
+
@ivy4r.ant.declarative.should be true
|
14
|
+
end
|
15
|
+
|
16
|
+
it "#ant returns always same instance" do
|
17
|
+
@ivy4r.ant.should be @ivy4r.ant
|
18
|
+
end
|
19
|
+
|
20
|
+
it "#ant returns provided instance if set previously" do
|
21
|
+
provided = "bla"
|
22
|
+
@ivy4r.ant = provided
|
23
|
+
@ivy4r.instance_eval("@init_done = true")
|
24
|
+
@ivy4r.ant.should be provided
|
25
|
+
end
|
26
|
+
|
27
|
+
it "#cleancache returns nil" do
|
28
|
+
@ivy4r.cleancache.should be nil
|
29
|
+
end
|
30
|
+
|
31
|
+
it "#info returns data from used ivy.xml" do
|
32
|
+
result = @ivy4r.info :file => @ivy_xml
|
33
|
+
|
34
|
+
result.should_not be nil
|
35
|
+
result['ivy.organisation'].should eq('blau')
|
36
|
+
result['ivy.module'].should eq('testmodule')
|
37
|
+
result['ivy.revision'].should eq('2.20.0')
|
38
|
+
end
|
39
|
+
|
40
|
+
it "#settings returns nil" do
|
41
|
+
@ivy4r.settings(:file => @ivy_settings_xml).should be nil
|
42
|
+
end
|
43
|
+
|
44
|
+
it "#configure returns custom properties" do
|
45
|
+
result = @ivy4r.configure(:file => @ivy_settings_xml)
|
46
|
+
|
47
|
+
result.should_not be nil
|
48
|
+
result['myparam.ivy.instance'].should eq('myvalue')
|
49
|
+
end
|
50
|
+
end
|
data/spec/spec_helper.rb
ADDED
File without changes
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<?xml-stylesheet type="text/xsl" href="http://www.ivyrep.org/ivy-doc.xsl"?>
|
3
|
+
<ivy-module version="1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
+
xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd">
|
5
|
+
|
6
|
+
<info organisation="blau" module="p1" revision="1.0" />
|
7
|
+
</ivy-module>
|
File without changes
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<?xml-stylesheet type="text/xsl" href="http://www.ivyrep.org/ivy-doc.xsl"?>
|
3
|
+
<ivy-module version="1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
+
xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd">
|
5
|
+
|
6
|
+
<info organisation="blau" module="p2" revision="1.1" />
|
7
|
+
|
8
|
+
<dependencies>
|
9
|
+
<dependency org="blau" name="p1" rev="1.0" conf="*->default" />
|
10
|
+
</dependencies>
|
11
|
+
</ivy-module>
|
File without changes
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<?xml-stylesheet type="text/xsl" href="http://www.ivyrep.org/ivy-doc.xsl"?>
|
3
|
+
<ivy-module version="1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
+
xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd">
|
5
|
+
|
6
|
+
<info organisation="blau" module="p3" revision="1.1" />
|
7
|
+
|
8
|
+
<dependencies>
|
9
|
+
<dependency org="blau" name="p2" rev="1.1" conf="*->default" />
|
10
|
+
</dependencies>
|
11
|
+
</ivy-module>
|
data/spec_files/ivy.xml
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<?xml-stylesheet type="text/xsl" href="http://www.ivyrep.org/ivy-doc.xsl"?>
|
3
|
+
<ivy-module version="1.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
+
xsi:noNamespaceSchemaLocation="http://incubator.apache.org/ivy/schemas/ivy.xsd">
|
5
|
+
|
6
|
+
<info organisation="blau" module="testmodule" revision="2.20.0" />
|
7
|
+
|
8
|
+
<configurations defaultconfmapping="client">
|
9
|
+
<conf name="deploy" description="Contains the deployable artifacts for the Project." />
|
10
|
+
<conf name="reports" description="Contains all buildreports for the Project." />
|
11
|
+
<conf name="basic" visibility="private" description="Basic dependencies needed for all configurations."/>
|
12
|
+
<conf name="test" extends="basic" visibility="private" description="Only needed for testing of project."/>
|
13
|
+
</configurations>
|
14
|
+
|
15
|
+
<dependencies>
|
16
|
+
<dependency org="oro" name="oro" rev="2.0.8" conf="*->default" />
|
17
|
+
</dependencies>
|
18
|
+
</ivy-module>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<ivysettings>
|
2
|
+
<property name="myparam" value="myvalue" />
|
3
|
+
<settings defaultCache="/tmp" defaultResolver="ibiblio" checkUpToDate="false" />
|
4
|
+
<resolvers>
|
5
|
+
<ibiblio name="ibiblio" />
|
6
|
+
<filesystem name="internal">
|
7
|
+
<ivy pattern="/tmp/[module]/ivy-[revision].xml" />
|
8
|
+
<artifact pattern="/tmp/[module]/[artifact]-[revision].[ext]" />
|
9
|
+
</filesystem>
|
10
|
+
</resolvers>
|
11
|
+
</ivysettings>
|
@@ -0,0 +1,131 @@
|
|
1
|
+
describe "Test Functional ::Ivy4r" do
|
2
|
+
|
3
|
+
before(:each) do
|
4
|
+
@ivy4r = Ivy4r.new
|
5
|
+
spec_files = File.join(File.dirname(__FILE__), '..', 'spec_files')
|
6
|
+
@ivy_xml = File.join(spec_files, 'ivy.xml')
|
7
|
+
@ivy_settings_xml = File.join(spec_files, 'ivysettings.xml')
|
8
|
+
@buildlist_dir = File.join(spec_files, 'buildlist')
|
9
|
+
end
|
10
|
+
|
11
|
+
it "#buildnumber returns next version" do
|
12
|
+
result = @ivy4r.buildnumber :organisation => 'oro', :module => 'oro'
|
13
|
+
|
14
|
+
result.should_not be nil
|
15
|
+
result['ivy.revision'].should eq('2.0.8')
|
16
|
+
result['ivy.new.revision'].should eq('2.0.9')
|
17
|
+
result['ivy.build.number'].should eq('8')
|
18
|
+
result['ivy.new.build.number'].should eq('9')
|
19
|
+
end
|
20
|
+
|
21
|
+
it "#resolve returns resolve values as map" do
|
22
|
+
result = @ivy4r.resolve :file => @ivy_xml
|
23
|
+
|
24
|
+
result.should_not be nil
|
25
|
+
result['ivy.organisation'].should eq('blau')
|
26
|
+
result['ivy.resolved.configurations'].size.should eq(4)
|
27
|
+
end
|
28
|
+
|
29
|
+
it "#cachpath contains correct jars from previous resolve" do
|
30
|
+
@ivy4r.resolve :organisation => "oro", :module => "oro", :revision => "2.0.8", :keep => true, :inline => true
|
31
|
+
result = @ivy4r.cachepath :pathid => 'mytestpathid'
|
32
|
+
|
33
|
+
result.any? {|a| a =~ /.*oro.*\.jar/ && a =~ /.*2\.0\.8*/ }.should be true
|
34
|
+
end
|
35
|
+
|
36
|
+
it "#cachpath with inline resolve contains correct jars" do
|
37
|
+
result = @ivy4r.cachepath :organisation => "oro", :module => "oro", :revision => "2.0.8", :inline => true, :pathid => 'mytestpathid'
|
38
|
+
|
39
|
+
result.any? {|a| a =~ /.*oro.*\.jar/ && a =~ /.*2\.0\.8*/ }.should be true
|
40
|
+
end
|
41
|
+
|
42
|
+
it "#findrevision finds correct version" do
|
43
|
+
result = @ivy4r.findrevision :organisation => "oro", :module => "oro", :revision => "2.0.8"
|
44
|
+
|
45
|
+
result.should eq('2.0.8')
|
46
|
+
end
|
47
|
+
|
48
|
+
it "#findrevision returns nil for unknown revision on existing module" do
|
49
|
+
result = @ivy4r.findrevision :organisation => "oro", :module => "oro", :revision => "1unknown1"
|
50
|
+
|
51
|
+
result.should be nil
|
52
|
+
end
|
53
|
+
|
54
|
+
it "#artifactproperty dependencies are contained in result" do
|
55
|
+
@ivy4r.resolve :file => @ivy_xml
|
56
|
+
result = @ivy4r.artifactproperty :name => '[organisation]-[module]', :value => '[revision]'
|
57
|
+
|
58
|
+
result.any? {|k,v| k == 'oro-oro' && v == '2.0.8' }.should be true
|
59
|
+
end
|
60
|
+
|
61
|
+
it "#artifactreport creates xml report file" do
|
62
|
+
begin
|
63
|
+
target = File.join(Dir.pwd, "temp_test#{Time.new.strftime('%Y%m%d%H%M%S')}")
|
64
|
+
FileUtils.mkdir(target)
|
65
|
+
@ivy4r.resolve :file => @ivy_xml
|
66
|
+
result = @ivy4r.artifactreport :tofile => File.join(target, 'test.xml')
|
67
|
+
|
68
|
+
result.should_not be nil
|
69
|
+
result.should match(/.*<module organisation="oro".*/)
|
70
|
+
ensure
|
71
|
+
FileUtils.rm_rf target
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
it "#retrieve creates directory with artifacts" do
|
76
|
+
begin
|
77
|
+
target = File.join(Dir.pwd, "temp_test#{Time.new.strftime('%Y%m%d%H%M%S')}")
|
78
|
+
FileUtils.mkdir(target)
|
79
|
+
@ivy4r.resolve :file => @ivy_xml
|
80
|
+
@ivy4r.retrieve :pattern => "#{target}/[organisation]/[module].[ext]"
|
81
|
+
|
82
|
+
Dir.glob(File.join(target, '**/oro.jar')).size.should be > 0
|
83
|
+
ensure
|
84
|
+
FileUtils.rm_rf target
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
it "#report creates reports" do
|
89
|
+
begin
|
90
|
+
target = File.join(Dir.pwd, "temp_test#{Time.new.strftime('%Y%m%d%H%M%S')}")
|
91
|
+
FileUtils.mkdir(target)
|
92
|
+
@ivy4r.resolve :file => @ivy_xml
|
93
|
+
@ivy4r.report :todir => target
|
94
|
+
|
95
|
+
Dir.glob(File.join(target, '**/*')).size.should be > 0
|
96
|
+
ensure
|
97
|
+
FileUtils.rm_rf target
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
it "#buildlist returns list in correct order for linear build" do
|
102
|
+
target = @buildlist_dir
|
103
|
+
result = @ivy4r.buildlist :reference => 'testpath', :nested => {
|
104
|
+
:fileset => [
|
105
|
+
{:dir => File.join(target, "sub"), :includes => '**/buildfile'},
|
106
|
+
{:dir => File.join(target, "p1"), :includes => 'buildfile'}
|
107
|
+
]
|
108
|
+
}
|
109
|
+
|
110
|
+
result.size.should be 3
|
111
|
+
result.map! { |file| File.expand_path(file) }
|
112
|
+
File.expand_path(File.join(target, "p1", "buildfile")).should eq(result[0])
|
113
|
+
File.expand_path(File.join(target, "sub", "p2", "buildfile")).should eq(result[1])
|
114
|
+
File.expand_path(File.join(target, "sub", "p3", "buildfile")).should eq(result[2])
|
115
|
+
end
|
116
|
+
|
117
|
+
it "#makepom creates a pom for ivy.xml" do
|
118
|
+
begin
|
119
|
+
target = File.join(File.dirname(__FILE__), "testpom.xml")
|
120
|
+
result = @ivy4r.makepom :ivyfile => @ivy_xml, :pomfile => target, :nested => {
|
121
|
+
:mapping => {:conf => 'default', :scope => 'runtime' }
|
122
|
+
}
|
123
|
+
|
124
|
+
IO.read(target).should eq(result)
|
125
|
+
ensure
|
126
|
+
FileUtils.rm target
|
127
|
+
end
|
128
|
+
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
metadata
ADDED
@@ -0,0 +1,214 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: pepijnve-ivy4r
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.12.11
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Klaas Reineke
|
9
|
+
- Pepijn Van Eeckhoudt
|
10
|
+
autorequire:
|
11
|
+
bindir: bin
|
12
|
+
cert_chain: []
|
13
|
+
date: 2014-11-21 00:00:00.000000000 Z
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: atoulme-Antwrap
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 0.7.4
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
none: false
|
27
|
+
requirements:
|
28
|
+
- - ~>
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: 0.7.4
|
31
|
+
- !ruby/object:Gem::Dependency
|
32
|
+
name: ivy4r-jars
|
33
|
+
requirement: !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
35
|
+
requirements:
|
36
|
+
- - ~>
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: 1.2.0
|
39
|
+
type: :runtime
|
40
|
+
prerelease: false
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
42
|
+
none: false
|
43
|
+
requirements:
|
44
|
+
- - ~>
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: 1.2.0
|
47
|
+
- !ruby/object:Gem::Dependency
|
48
|
+
name: rake
|
49
|
+
requirement: !ruby/object:Gem::Requirement
|
50
|
+
none: false
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 10.3.2
|
55
|
+
type: :development
|
56
|
+
prerelease: false
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ~>
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 10.3.2
|
63
|
+
- !ruby/object:Gem::Dependency
|
64
|
+
name: autotest
|
65
|
+
requirement: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
67
|
+
requirements:
|
68
|
+
- - ~>
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: 4.4.6
|
71
|
+
type: :development
|
72
|
+
prerelease: false
|
73
|
+
version_requirements: !ruby/object:Gem::Requirement
|
74
|
+
none: false
|
75
|
+
requirements:
|
76
|
+
- - ~>
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 4.4.6
|
79
|
+
- !ruby/object:Gem::Dependency
|
80
|
+
name: ZenTest
|
81
|
+
requirement: !ruby/object:Gem::Requirement
|
82
|
+
none: false
|
83
|
+
requirements:
|
84
|
+
- - ~>
|
85
|
+
- !ruby/object:Gem::Version
|
86
|
+
version: 4.4.2
|
87
|
+
type: :development
|
88
|
+
prerelease: false
|
89
|
+
version_requirements: !ruby/object:Gem::Requirement
|
90
|
+
none: false
|
91
|
+
requirements:
|
92
|
+
- - ~>
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: 4.4.2
|
95
|
+
- !ruby/object:Gem::Dependency
|
96
|
+
name: rspec
|
97
|
+
requirement: !ruby/object:Gem::Requirement
|
98
|
+
none: false
|
99
|
+
requirements:
|
100
|
+
- - ~>
|
101
|
+
- !ruby/object:Gem::Version
|
102
|
+
version: 2.4.0
|
103
|
+
type: :development
|
104
|
+
prerelease: false
|
105
|
+
version_requirements: !ruby/object:Gem::Requirement
|
106
|
+
none: false
|
107
|
+
requirements:
|
108
|
+
- - ~>
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 2.4.0
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: rr
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
none: false
|
115
|
+
requirements:
|
116
|
+
- - ~>
|
117
|
+
- !ruby/object:Gem::Version
|
118
|
+
version: 1.0.2
|
119
|
+
type: :development
|
120
|
+
prerelease: false
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
none: false
|
123
|
+
requirements:
|
124
|
+
- - ~>
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: 1.0.2
|
127
|
+
description: Ivy4r is a Ruby interface for Apache Ivy dependency management library.
|
128
|
+
Offers support for using Ivy with Buildr and Rake.
|
129
|
+
email:
|
130
|
+
- klaas.reineke@googlemail.com
|
131
|
+
executables: []
|
132
|
+
extensions: []
|
133
|
+
extra_rdoc_files: []
|
134
|
+
files:
|
135
|
+
- .autotest
|
136
|
+
- .gitignore
|
137
|
+
- .project
|
138
|
+
- .rspec
|
139
|
+
- CHANGELOG
|
140
|
+
- Gemfile
|
141
|
+
- README.txt
|
142
|
+
- Rakefile
|
143
|
+
- autotest/discover.rb
|
144
|
+
- ivy4r.gemspec
|
145
|
+
- lib/buildr/ivy_extension.rb
|
146
|
+
- lib/ivy/artifactproperty.rb
|
147
|
+
- lib/ivy/artifactreport.rb
|
148
|
+
- lib/ivy/buildlist.rb
|
149
|
+
- lib/ivy/buildnumber.rb
|
150
|
+
- lib/ivy/cachepath.rb
|
151
|
+
- lib/ivy/cleancache.rb
|
152
|
+
- lib/ivy/configure.rb
|
153
|
+
- lib/ivy/findrevision.rb
|
154
|
+
- lib/ivy/info.rb
|
155
|
+
- lib/ivy/install.rb
|
156
|
+
- lib/ivy/java/all_version_matcher.rb
|
157
|
+
- lib/ivy/java/java_object_wrapper.rb
|
158
|
+
- lib/ivy/listmodules.rb
|
159
|
+
- lib/ivy/makepom.rb
|
160
|
+
- lib/ivy/publish.rb
|
161
|
+
- lib/ivy/report.rb
|
162
|
+
- lib/ivy/resolve.rb
|
163
|
+
- lib/ivy/retrieve.rb
|
164
|
+
- lib/ivy/settings.rb
|
165
|
+
- lib/ivy/target.rb
|
166
|
+
- lib/ivy/targets.rb
|
167
|
+
- lib/ivy4r.rb
|
168
|
+
- lib/ivy4r/version.rb
|
169
|
+
- lib/ivy4r_java_extensions.rb
|
170
|
+
- lib/rake/ivy_extension.rb
|
171
|
+
- spec/ivy/target_spec.rb
|
172
|
+
- spec/ivy/targets_spec.rb
|
173
|
+
- spec/ivy4r_spec.rb
|
174
|
+
- spec/spec_helper.rb
|
175
|
+
- spec_files/buildlist/p1/buildfile
|
176
|
+
- spec_files/buildlist/p1/ivy.xml
|
177
|
+
- spec_files/buildlist/sub/p2/buildfile
|
178
|
+
- spec_files/buildlist/sub/p2/ivy.xml
|
179
|
+
- spec_files/buildlist/sub/p3/buildfile
|
180
|
+
- spec_files/buildlist/sub/p3/ivy.xml
|
181
|
+
- spec_files/ivy.xml
|
182
|
+
- spec_files/ivysettings.xml
|
183
|
+
- spec_functional/ivy4r_spec.rb
|
184
|
+
homepage: http://github.com/pepijnve/ivy4r
|
185
|
+
licenses: []
|
186
|
+
post_install_message:
|
187
|
+
rdoc_options: []
|
188
|
+
require_paths:
|
189
|
+
- lib
|
190
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
191
|
+
none: false
|
192
|
+
requirements:
|
193
|
+
- - ! '>='
|
194
|
+
- !ruby/object:Gem::Version
|
195
|
+
version: '0'
|
196
|
+
segments:
|
197
|
+
- 0
|
198
|
+
hash: -2670854461252515520
|
199
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
200
|
+
none: false
|
201
|
+
requirements:
|
202
|
+
- - ! '>='
|
203
|
+
- !ruby/object:Gem::Version
|
204
|
+
version: '0'
|
205
|
+
segments:
|
206
|
+
- 0
|
207
|
+
hash: -2670854461252515520
|
208
|
+
requirements: []
|
209
|
+
rubyforge_project: ivy4r
|
210
|
+
rubygems_version: 1.8.23.2
|
211
|
+
signing_key:
|
212
|
+
specification_version: 3
|
213
|
+
summary: Ivy4r Apache Ivy dependency management for Ruby
|
214
|
+
test_files: []
|