atoulme-Antwrap 0.7.4 → 0.7.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +1 -1
  3. data/lib/antwrap.rb +1 -1
  4. data/lib/java_adapter.rb +2 -2
  5. metadata +25 -32
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 41b60a07899d9ee8af6560275631e93db14714a7
4
+ data.tar.gz: b6b5ed28fedc279b008d76248e6ea7b3fa814e64
5
+ SHA512:
6
+ metadata.gz: 0c37984425035938102f298aff31348d72d73447f5aa68d88996f6560c86b49b2af1763e1ecbfd7aada121ba3695bc92c25f8ab515303675f930c18f3466eae5
7
+ data.tar.gz: 6cd8b6ea7a0f0e73e628a4adfe37a5cba4a2ce518a883028c8db3a1d68dfbc7743dfadd7b66f130f5091f7f671795b4d1bbb069d6c9d7d25bf860fadea55a052
data/Rakefile CHANGED
@@ -19,7 +19,7 @@ require 'rake/testtask'
19
19
 
20
20
  def apply_default_hoe_properties(hoe)
21
21
  hoe.remote_rdoc_dir = ''
22
- hoe.rubyforge_name = 'antwrap'
22
+ #hoe.rubyforge_name = 'antwrap'
23
23
  hoe.author = 'Caleb Powell'
24
24
  hoe.email = 'caleb.powell@gmail.com'
25
25
  hoe.urls = ['http://rubyforge.org/projects/antwrap/']
@@ -18,5 +18,5 @@ module Antwrap
18
18
  autoload :ApacheAnt, 'ant_libraries.rb'
19
19
  autoload :JavaLang, 'ant_libraries.rb'
20
20
  autoload :XmlOrg, 'ant_libraries.rb'
21
- VERSION = "0.7.4"
21
+ VERSION = "0.7.5"
22
22
  end
@@ -45,8 +45,8 @@ module Antwrap
45
45
 
46
46
  private
47
47
  def JavaAdapter.import_using_jruby(name)
48
- include_class(name)
48
+ java_import(name)
49
49
  return remove_const(name.scan(/[_a-zA-Z0-9$]+/).last)
50
50
  end
51
51
  end
52
- end
52
+ end
metadata CHANGED
@@ -1,66 +1,59 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: atoulme-Antwrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.4
5
- prerelease:
4
+ version: 0.7.5
6
5
  platform: ruby
7
6
  authors:
8
7
  - Caleb Powell
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2012-12-12 00:00:00.000000000 Z
11
+ date: 2014-11-21 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rjb
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: 1.0.3
22
20
  type: :runtime
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 1.0.3
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: rdoc
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ~>
31
+ - - "~>"
36
32
  - !ruby/object:Gem::Version
37
- version: '3.10'
33
+ version: '4.0'
38
34
  type: :development
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ~>
38
+ - - "~>"
44
39
  - !ruby/object:Gem::Version
45
- version: '3.10'
40
+ version: '4.0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: hoe
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ~>
45
+ - - "~>"
52
46
  - !ruby/object:Gem::Version
53
- version: '3.2'
47
+ version: '3.13'
54
48
  type: :development
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ~>
52
+ - - "~>"
60
53
  - !ruby/object:Gem::Version
61
- version: '3.2'
62
- description: ! "\tA Ruby module that wraps the Apache Ant build tool. Antwrap can
63
- be used to invoke Ant Tasks from a Ruby or a JRuby script.\n\n== FEATURES/PROBLEMS:\n\n\tAntwrap
54
+ version: '3.13'
55
+ description: "\tA Ruby module that wraps the Apache Ant build tool. Antwrap can be
56
+ used to invoke Ant Tasks from a Ruby or a JRuby script.\n\n== FEATURES/PROBLEMS:\n\n\tAntwrap
64
57
  runs on the native Ruby interpreter via the RJB (Ruby Java Bridge gem) and on the
65
58
  JRuby interpreter. Antwrap is compatible with Ant versions 1.5.4, \n\t1.6.5 and
66
59
  1.7.0. For more information, \tsee the Project Info (http://rubyforge.org/projects/antwrap/)
@@ -77,6 +70,7 @@ extra_rdoc_files:
77
70
  - Manifest.txt
78
71
  - README.txt
79
72
  files:
73
+ - ".gemtest"
80
74
  - History.txt
81
75
  - LICENSE
82
76
  - Manifest.txt
@@ -87,40 +81,39 @@ files:
87
81
  - docs/index_files/blankdot.gif
88
82
  - docs/index_files/blankdot.html
89
83
  - docs/index_files/urchin.js
84
+ - lib/ant_libraries.rb
90
85
  - lib/ant_project.rb
91
86
  - lib/ant_task.rb
92
87
  - lib/antwrap.rb
93
88
  - lib/antwrap_utilities.rb
94
- - lib/ant_libraries.rb
95
89
  - lib/java_adapter.rb
96
90
  - test/antwrap_test.rb
97
91
  - test/javaadapter_spec.rb
98
- - .gemtest
99
92
  homepage: http://rubyforge.org/projects/antwrap/
100
- licenses: []
93
+ licenses:
94
+ - MIT
95
+ metadata: {}
101
96
  post_install_message:
102
97
  rdoc_options:
103
- - --main
98
+ - "--main"
104
99
  - README.txt
105
100
  require_paths:
106
101
  - lib
107
102
  required_ruby_version: !ruby/object:Gem::Requirement
108
- none: false
109
103
  requirements:
110
- - - ! '>='
104
+ - - ">="
111
105
  - !ruby/object:Gem::Version
112
106
  version: '0'
113
107
  required_rubygems_version: !ruby/object:Gem::Requirement
114
- none: false
115
108
  requirements:
116
- - - ! '>='
109
+ - - ">="
117
110
  - !ruby/object:Gem::Version
118
111
  version: '0'
119
112
  requirements: []
120
- rubyforge_project: antwrap
121
- rubygems_version: 1.8.24
113
+ rubyforge_project:
114
+ rubygems_version: 2.2.2
122
115
  signing_key:
123
- specification_version: 3
116
+ specification_version: 4
124
117
  summary: A Ruby module that wraps the Apache Ant build tool. Antwrap can be used to
125
118
  invoke Ant Tasks from a Ruby or a JRuby script.
126
119
  test_files: