atoulme-Antwrap 0.7.1-java → 0.7.2-java
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/History.txt +8 -0
- data/lib/ant_project.rb +5 -1
- data/lib/antwrap.rb +1 -1
- metadata +46 -57
data/History.txt
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
== 0.7.2 / 2011-07-06
|
|
2
|
+
|
|
3
|
+
* Patch by thomaslee to support method_missing in JRuby environments.
|
|
4
|
+
|
|
5
|
+
== 0.7.1 / 2010-07-20
|
|
6
|
+
|
|
7
|
+
* Support for Ruby 1.9 by removing the call to nitems.
|
|
8
|
+
|
|
1
9
|
== 0.7.0 / 2008-02-16
|
|
2
10
|
|
|
3
11
|
* Antwrap has been re-licensed under the Apache Software License. This was done to make Antwrap compatible with the Buildr project, and the Ant library.
|
data/lib/ant_project.rb
CHANGED
data/lib/antwrap.rb
CHANGED
metadata
CHANGED
|
@@ -1,36 +1,28 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: atoulme-Antwrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
prerelease:
|
|
5
|
-
|
|
6
|
-
- 0
|
|
7
|
-
- 7
|
|
8
|
-
- 1
|
|
9
|
-
version: 0.7.1
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.7.2
|
|
10
6
|
platform: java
|
|
11
7
|
authors:
|
|
12
|
-
|
|
8
|
+
- Caleb Powell
|
|
13
9
|
autorequire:
|
|
14
10
|
bindir: bin
|
|
15
11
|
cert_chain: []
|
|
16
12
|
|
|
17
|
-
date:
|
|
18
|
-
default_executable:
|
|
13
|
+
date: 2011-07-06 00:00:00 Z
|
|
19
14
|
dependencies:
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
version: 2.3.3
|
|
32
|
-
type: :development
|
|
33
|
-
version_requirements: *id001
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: hoe
|
|
17
|
+
prerelease: false
|
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
19
|
+
none: false
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 2.3.3
|
|
24
|
+
type: :development
|
|
25
|
+
version_requirements: *id001
|
|
34
26
|
description: "\tA Ruby module that wraps the Apache Ant build tool. Antwrap can be used to invoke Ant Tasks from a Ruby or a JRuby script.\n\n\
|
|
35
27
|
== FEATURES/PROBLEMS:\n\n\
|
|
36
28
|
\tAntwrap runs on the native Ruby interpreter via the RJB (Ruby Java Bridge gem) and on the JRuby interpreter. Antwrap is compatible with Ant versions 1.5.4, \n\
|
|
@@ -46,54 +38,51 @@ executables: []
|
|
|
46
38
|
extensions: []
|
|
47
39
|
|
|
48
40
|
extra_rdoc_files:
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
41
|
+
- History.txt
|
|
42
|
+
- Manifest.txt
|
|
43
|
+
- README.txt
|
|
52
44
|
files:
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
has_rdoc: true
|
|
45
|
+
- History.txt
|
|
46
|
+
- LICENSE
|
|
47
|
+
- Manifest.txt
|
|
48
|
+
- README.txt
|
|
49
|
+
- Rakefile
|
|
50
|
+
- docs/index.html
|
|
51
|
+
- docs/index_files/Brander.css
|
|
52
|
+
- docs/index_files/blankdot.gif
|
|
53
|
+
- docs/index_files/blankdot.html
|
|
54
|
+
- docs/index_files/urchin.js
|
|
55
|
+
- lib/ant_project.rb
|
|
56
|
+
- lib/ant_task.rb
|
|
57
|
+
- lib/antwrap.rb
|
|
58
|
+
- lib/antwrap_utilities.rb
|
|
59
|
+
- lib/ant_libraries.rb
|
|
60
|
+
- lib/java_adapter.rb
|
|
70
61
|
homepage: http://rubyforge.org/projects/antwrap/
|
|
71
62
|
licenses: []
|
|
72
63
|
|
|
73
64
|
post_install_message:
|
|
74
65
|
rdoc_options:
|
|
75
|
-
|
|
76
|
-
|
|
66
|
+
- --main
|
|
67
|
+
- README.txt
|
|
77
68
|
require_paths:
|
|
78
|
-
|
|
69
|
+
- lib
|
|
79
70
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
|
+
none: false
|
|
80
72
|
requirements:
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
- 0
|
|
85
|
-
version: "0"
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: "0"
|
|
86
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
|
+
none: false
|
|
87
78
|
requirements:
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
- 0
|
|
92
|
-
version: "0"
|
|
79
|
+
- - ">="
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: "0"
|
|
93
82
|
requirements: []
|
|
94
83
|
|
|
95
84
|
rubyforge_project: antwrap
|
|
96
|
-
rubygems_version: 1.
|
|
85
|
+
rubygems_version: 1.8.5
|
|
97
86
|
signing_key:
|
|
98
87
|
specification_version: 3
|
|
99
88
|
summary: A Ruby module that wraps the Apache Ant build tool. Antwrap can be used to invoke Ant Tasks from a Ruby or a JRuby script.
|