ivy4r 0.7.3 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -1
- data/README.txt +2 -2
- data/lib/ivy4r.rb +1 -1
- metadata +126 -127
data/History.txt
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
=== 0.8.0 / 2009-10-19
|
2
|
+
|
3
|
+
* Moved to gemcutter for hosting of gems 'gem install gemcutter' add it as primary location and you
|
4
|
+
can install gems as before
|
5
|
+
|
1
6
|
=== 0.7.3 / 2009-09-15
|
2
7
|
|
3
8
|
* Renamed +ant+ to +ivy4r+ in buildr extension to make more clear what this object does. It is accesible
|
@@ -7,7 +12,6 @@
|
|
7
12
|
I.e. configured +ivy.publish package(:jar) => 'name.jar'
|
8
13
|
access this hash via +ivy.publish_mappings+
|
9
14
|
|
10
|
-
|
11
15
|
=== 0.7.2 / 2009-09-08
|
12
16
|
|
13
17
|
* Fix bug for creating EARs. The package dependencies are added into the root directory
|
data/README.txt
CHANGED
@@ -64,8 +64,8 @@ Supports most standard Ivy Ant targets via Antwrap.
|
|
64
64
|
|
65
65
|
== INSTALL:
|
66
66
|
|
67
|
-
|
68
|
-
|
67
|
+
You can use gemcutter to install
|
68
|
+
sudo gem install ivy4r
|
69
69
|
|
70
70
|
== LICENSE:
|
71
71
|
|
data/lib/ivy4r.rb
CHANGED
metadata
CHANGED
@@ -1,144 +1,143 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
3
|
-
requirements:
|
4
|
-
- - '>='
|
5
|
-
- !ruby/object:Gem::Version
|
6
|
-
version: "0"
|
7
|
-
version:
|
8
|
-
email:
|
9
|
-
- klaas.prause@googlemail.com
|
10
|
-
cert_chain: []
|
11
|
-
|
12
|
-
summary: Apache Ivy dependency manager wrapper for ruby (see {Apache Ivy}[http://ant.apache.org/ivy/index.html]
|
13
|
-
for more information)
|
14
|
-
post_install_message:
|
15
|
-
extra_rdoc_files:
|
16
|
-
- History.txt
|
17
|
-
- Manifest.txt
|
18
|
-
- README.txt
|
19
|
-
homepage: http://github.com/klaas1979/ivy4r/tree/master
|
20
|
-
signing_key:
|
21
2
|
name: ivy4r
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.8.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Klaas Prause
|
27
8
|
autorequire:
|
28
|
-
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
29
11
|
|
30
|
-
|
31
|
-
|
12
|
+
date: 2009-10-19 00:00:00 +02:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: Antwrap
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.7.0
|
24
|
+
version:
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: ivy4r-jars
|
27
|
+
type: :runtime
|
28
|
+
version_requirement:
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.0.0
|
34
|
+
version:
|
35
|
+
- !ruby/object:Gem::Dependency
|
36
|
+
name: facets
|
37
|
+
type: :runtime
|
38
|
+
version_requirement:
|
39
|
+
version_requirements: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: 2.5.2
|
44
|
+
version:
|
45
|
+
- !ruby/object:Gem::Dependency
|
46
|
+
name: hoe
|
47
|
+
type: :development
|
48
|
+
version_requirement:
|
49
|
+
version_requirements: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 2.3.3
|
54
|
+
version:
|
32
55
|
description: |-
|
33
56
|
Apache Ivy dependency manager wrapper for ruby (see {Apache Ivy}[http://ant.apache.org/ivy/index.html] for more information).
|
34
57
|
Use {Apache Ivy}[http://ant.apache.org/ivy/index.html] via a ruby wrapper without the need to use Apache Ant.
|
35
58
|
The wrapper uses Antwrap[http://antwrap.rubyforge.org/] to interface with Ivy.
|
36
|
-
|
59
|
+
|
37
60
|
Includes a Extension for Buildr[http://buildr.apache.org/] to use {Apache Ivy}[http://ant.apache.org/ivy/index.html]
|
38
61
|
for dependency management.
|
39
|
-
|
40
|
-
|
62
|
+
email:
|
63
|
+
- klaas.prause@googlemail.com
|
64
|
+
executables:
|
65
|
+
- ivy4r
|
66
|
+
extensions: []
|
67
|
+
|
68
|
+
extra_rdoc_files:
|
69
|
+
- History.txt
|
70
|
+
- Manifest.txt
|
71
|
+
- README.txt
|
41
72
|
files:
|
42
|
-
- History.txt
|
43
|
-
- Manifest.txt
|
44
|
-
- README.txt
|
45
|
-
- Rakefile
|
46
|
-
- bin/ivy4r
|
47
|
-
- lib/buildr/ivy_extension.rb
|
48
|
-
- lib/ivy/artifactproperty.rb
|
49
|
-
- lib/ivy/artifactreport.rb
|
50
|
-
- lib/ivy/buildlist.rb
|
51
|
-
- lib/ivy/buildnumber.rb
|
52
|
-
- lib/ivy/cachepath.rb
|
53
|
-
- lib/ivy/cleancache.rb
|
54
|
-
- lib/ivy/configure.rb
|
55
|
-
- lib/ivy/findrevision.rb
|
56
|
-
- lib/ivy/info.rb
|
57
|
-
- lib/ivy/listmodules.rb
|
58
|
-
- lib/ivy/makepom.rb
|
59
|
-
- lib/ivy/publish.rb
|
60
|
-
- lib/ivy/report.rb
|
61
|
-
- lib/ivy/resolve.rb
|
62
|
-
- lib/ivy/retrieve.rb
|
63
|
-
- lib/ivy/settings.rb
|
64
|
-
- lib/ivy/target.rb
|
65
|
-
- lib/ivy/targets.rb
|
66
|
-
- lib/ivy4r.rb
|
67
|
-
- lib/rake/ivy_extension.rb
|
68
|
-
- test/buildlist/p1/buildfile
|
69
|
-
- test/buildlist/p1/ivy.xml
|
70
|
-
- test/buildlist/sub/p2/buildfile
|
71
|
-
- test/buildlist/sub/p2/ivy.xml
|
72
|
-
- test/buildlist/sub/p3/buildfile
|
73
|
-
- test/buildlist/sub/p3/ivy.xml
|
74
|
-
- test/ivy/ivysettings.xml
|
75
|
-
- test/ivy/ivytest.xml
|
76
|
-
- test/ivy/test_target.rb
|
77
|
-
- test/ivy/test_targets.rb
|
78
|
-
- test/test_ivy4r.rb
|
73
|
+
- History.txt
|
74
|
+
- Manifest.txt
|
75
|
+
- README.txt
|
76
|
+
- Rakefile
|
77
|
+
- bin/ivy4r
|
78
|
+
- lib/buildr/ivy_extension.rb
|
79
|
+
- lib/ivy/artifactproperty.rb
|
80
|
+
- lib/ivy/artifactreport.rb
|
81
|
+
- lib/ivy/buildlist.rb
|
82
|
+
- lib/ivy/buildnumber.rb
|
83
|
+
- lib/ivy/cachepath.rb
|
84
|
+
- lib/ivy/cleancache.rb
|
85
|
+
- lib/ivy/configure.rb
|
86
|
+
- lib/ivy/findrevision.rb
|
87
|
+
- lib/ivy/info.rb
|
88
|
+
- lib/ivy/listmodules.rb
|
89
|
+
- lib/ivy/makepom.rb
|
90
|
+
- lib/ivy/publish.rb
|
91
|
+
- lib/ivy/report.rb
|
92
|
+
- lib/ivy/resolve.rb
|
93
|
+
- lib/ivy/retrieve.rb
|
94
|
+
- lib/ivy/settings.rb
|
95
|
+
- lib/ivy/target.rb
|
96
|
+
- lib/ivy/targets.rb
|
97
|
+
- lib/ivy4r.rb
|
98
|
+
- lib/rake/ivy_extension.rb
|
99
|
+
- test/buildlist/p1/buildfile
|
100
|
+
- test/buildlist/p1/ivy.xml
|
101
|
+
- test/buildlist/sub/p2/buildfile
|
102
|
+
- test/buildlist/sub/p2/ivy.xml
|
103
|
+
- test/buildlist/sub/p3/buildfile
|
104
|
+
- test/buildlist/sub/p3/ivy.xml
|
105
|
+
- test/ivy/ivysettings.xml
|
106
|
+
- test/ivy/ivytest.xml
|
107
|
+
- test/ivy/test_target.rb
|
108
|
+
- test/ivy/test_targets.rb
|
109
|
+
- test/test_ivy4r.rb
|
110
|
+
has_rdoc: true
|
111
|
+
homepage: http://github.com/klaas1979/ivy4r/tree/master
|
112
|
+
licenses: []
|
113
|
+
|
114
|
+
post_install_message:
|
115
|
+
rdoc_options:
|
116
|
+
- --main
|
117
|
+
- README.txt
|
118
|
+
- --charset=UTF-8
|
119
|
+
require_paths:
|
120
|
+
- lib
|
121
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - ">="
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: "0"
|
126
|
+
version:
|
79
127
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
128
|
requirements:
|
81
|
-
|
82
|
-
|
83
|
-
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: "0"
|
84
132
|
version:
|
85
|
-
extensions: []
|
86
|
-
|
87
|
-
rubygems_version: 1.3.3
|
88
133
|
requirements: []
|
89
134
|
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
135
|
+
rubyforge_project: hamburgrb
|
136
|
+
rubygems_version: 1.3.5
|
137
|
+
signing_key:
|
138
|
+
specification_version: 3
|
139
|
+
summary: Apache Ivy dependency manager wrapper for ruby (see {Apache Ivy}[http://ant.apache.org/ivy/index.html] for more information)
|
94
140
|
test_files:
|
95
|
-
- test/test_ivy4r.rb
|
96
|
-
- test/ivy/test_target.rb
|
97
|
-
- test/ivy/test_targets.rb
|
98
|
-
version: !ruby/object:Gem::Version
|
99
|
-
version: 0.7.3
|
100
|
-
require_paths:
|
101
|
-
- lib
|
102
|
-
dependencies:
|
103
|
-
- !ruby/object:Gem::Dependency
|
104
|
-
version_requirements: !ruby/object:Gem::Requirement
|
105
|
-
requirements:
|
106
|
-
- - '>='
|
107
|
-
- !ruby/object:Gem::Version
|
108
|
-
version: 0.7.0
|
109
|
-
version:
|
110
|
-
type: :runtime
|
111
|
-
version_requirement:
|
112
|
-
name: Antwrap
|
113
|
-
- !ruby/object:Gem::Dependency
|
114
|
-
version_requirements: !ruby/object:Gem::Requirement
|
115
|
-
requirements:
|
116
|
-
- - '>='
|
117
|
-
- !ruby/object:Gem::Version
|
118
|
-
version: 1.0.0
|
119
|
-
version:
|
120
|
-
type: :runtime
|
121
|
-
version_requirement:
|
122
|
-
name: ivy4r-jars
|
123
|
-
- !ruby/object:Gem::Dependency
|
124
|
-
version_requirements: !ruby/object:Gem::Requirement
|
125
|
-
requirements:
|
126
|
-
- - '>='
|
127
|
-
- !ruby/object:Gem::Version
|
128
|
-
version: 2.5.2
|
129
|
-
version:
|
130
|
-
type: :runtime
|
131
|
-
version_requirement:
|
132
|
-
name: facets
|
133
|
-
- !ruby/object:Gem::Dependency
|
134
|
-
version_requirements: !ruby/object:Gem::Requirement
|
135
|
-
requirements:
|
136
|
-
- - '>='
|
137
|
-
- !ruby/object:Gem::Version
|
138
|
-
version: 2.2.0
|
139
|
-
version:
|
140
|
-
type: :development
|
141
|
-
version_requirement:
|
142
|
-
name: hoe
|
143
|
-
bindir: bin
|
144
|
-
has_rdoc: true
|
141
|
+
- test/test_ivy4r.rb
|
142
|
+
- test/ivy/test_target.rb
|
143
|
+
- test/ivy/test_targets.rb
|