rjack-icu 4.8.1.1-java → 4.49.1.0-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.rdoc +3 -0
- data/Manifest.txt +1 -1
- data/README.rdoc +1 -1
- data/Rakefile +4 -33
- data/lib/rjack-icu.rb +1 -1
- data/lib/rjack-icu/base.rb +3 -3
- data/lib/rjack-icu/{icu4j-4.8.1.1.jar → icu4j-49.1.jar} +0 -0
- data/pom.xml +1 -1
- data/test/test_icu.rb +9 -5
- metadata +30 -14
data/History.rdoc
CHANGED
data/Manifest.txt
CHANGED
data/README.rdoc
CHANGED
@@ -12,7 +12,7 @@ A gem packaging of {ICU4J}[http://site.icu-project.org/].
|
|
12
12
|
|
13
13
|
=== rjack-icu gem
|
14
14
|
|
15
|
-
Copyright (c) 2011 David Kellum
|
15
|
+
Copyright (c) 2011-2012 David Kellum
|
16
16
|
|
17
17
|
Permission is hereby granted, free of charge, to any person obtaining
|
18
18
|
a copy of this software and associated documentation files (the
|
data/Rakefile
CHANGED
@@ -1,41 +1,12 @@
|
|
1
1
|
# -*- ruby -*-
|
2
2
|
|
3
|
-
$LOAD_PATH << './lib'
|
4
|
-
require 'rjack-icu/base'
|
5
|
-
|
6
3
|
require 'rubygems'
|
7
|
-
|
4
|
+
require 'bundler/setup'
|
8
5
|
require 'rjack-tarpit'
|
9
6
|
|
10
|
-
|
11
|
-
|
12
|
-
t = TarPit.new( 'rjack-icu', ICU::VERSION, :java_platform )
|
13
|
-
|
14
|
-
t.specify do |h|
|
15
|
-
h.developer( "David Kellum", "dek-oss@gravitext.com" )
|
16
|
-
h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/icu"
|
17
|
-
end
|
18
|
-
|
19
|
-
t.jars = [ "icu4j-#{ ICU::J_VERSION }.jar" ]
|
20
|
-
|
21
|
-
t.assembly_version = 1.0
|
7
|
+
RJack::TarPit.new( 'rjack-icu' ) do |tp|
|
22
8
|
|
23
|
-
|
9
|
+
tp.rdoc_destinations <<
|
10
|
+
'dekellum@rubyforge.org:/var/www/gforge-projects/rjack/icu'
|
24
11
|
|
25
|
-
task :check_pom_deps do
|
26
|
-
t.test_line_match( 'pom.xml',
|
27
|
-
%r[<version>#{ ICU::J_VERSION }</version>] )
|
28
12
|
end
|
29
|
-
|
30
|
-
task :check_history_version do
|
31
|
-
t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
|
32
|
-
end
|
33
|
-
task :check_history_date do
|
34
|
-
t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
|
35
|
-
end
|
36
|
-
|
37
|
-
task :gem => [ :check_pom_deps, :check_history_version ]
|
38
|
-
task :tag => [ :check_pom_deps, :check_history_version, :check_history_date ]
|
39
|
-
task :push => [ :check_history_date ]
|
40
|
-
|
41
|
-
t.define_tasks
|
data/lib/rjack-icu.rb
CHANGED
data/lib/rjack-icu/base.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#--
|
2
|
-
# Copyright (c) 2011 David Kellum
|
2
|
+
# Copyright (c) 2011-2012 David Kellum
|
3
3
|
# All rights reserved.
|
4
4
|
#
|
5
5
|
# Permission is hereby granted, free of charge, to any person obtaining
|
@@ -26,10 +26,10 @@ module RJack
|
|
26
26
|
module ICU
|
27
27
|
|
28
28
|
# icu4j (java) version
|
29
|
-
J_VERSION = '
|
29
|
+
J_VERSION = '49.1'
|
30
30
|
|
31
31
|
# rjack gem version
|
32
|
-
VERSION = J_VERSION
|
32
|
+
VERSION = [ 4, J_VERSION, 0 ].join( '.' )
|
33
33
|
|
34
34
|
LIB_DIR = File.dirname( __FILE__ ) # :nodoc:
|
35
35
|
end
|
Binary file
|
data/pom.xml
CHANGED
data/test/test_icu.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
#.hashdot.profile += jruby-shortlived
|
3
3
|
|
4
4
|
#--
|
5
|
-
# Copyright (c) 2011 David Kellum
|
5
|
+
# Copyright (c) 2011-2012 David Kellum
|
6
6
|
# All rights reserved.
|
7
7
|
#
|
8
8
|
# Permission is hereby granted, free of charge, to any person obtaining
|
@@ -25,16 +25,20 @@
|
|
25
25
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
26
26
|
#++
|
27
27
|
|
28
|
-
|
28
|
+
require 'rubygems'
|
29
|
+
require 'bundler/setup'
|
30
|
+
|
31
|
+
require 'minitest/unit'
|
32
|
+
require 'minitest/autorun'
|
29
33
|
|
30
34
|
require 'rjack-icu'
|
31
35
|
|
32
|
-
|
36
|
+
class TestICU < MiniTest::Unit::TestCase
|
33
37
|
|
34
|
-
class TestICU < Test::Unit::TestCase
|
35
38
|
import 'com.ibm.icu.text.CharsetDetector'
|
36
39
|
|
37
40
|
def test_load
|
38
|
-
|
41
|
+
pass
|
39
42
|
end
|
43
|
+
|
40
44
|
end
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: rjack-icu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 4.
|
5
|
+
version: 4.49.1.0
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- David Kellum
|
@@ -10,20 +10,31 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date:
|
13
|
+
date: 2012-06-09 00:00:00 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: minitest
|
17
|
+
version_requirements: &id001 !ruby/object:Gem::Requirement
|
18
|
+
none: false
|
19
|
+
requirements:
|
20
|
+
- - ~>
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: "2.2"
|
23
|
+
requirement: *id001
|
17
24
|
prerelease: false
|
18
|
-
|
25
|
+
type: :development
|
26
|
+
- !ruby/object:Gem::Dependency
|
27
|
+
name: rjack-tarpit
|
28
|
+
version_requirements: &id002 !ruby/object:Gem::Requirement
|
19
29
|
none: false
|
20
30
|
requirements:
|
21
31
|
- - ~>
|
22
32
|
- !ruby/object:Gem::Version
|
23
|
-
version:
|
33
|
+
version: "2.0"
|
34
|
+
requirement: *id002
|
35
|
+
prerelease: false
|
24
36
|
type: :development
|
25
|
-
|
26
|
-
description: A gem packaging of {ICU4J}[http://site.icu-project.org/].
|
37
|
+
description:
|
27
38
|
email:
|
28
39
|
- dek-oss@gravitext.com
|
29
40
|
executables: []
|
@@ -31,7 +42,6 @@ executables: []
|
|
31
42
|
extensions: []
|
32
43
|
|
33
44
|
extra_rdoc_files:
|
34
|
-
- Manifest.txt
|
35
45
|
- History.rdoc
|
36
46
|
- README.rdoc
|
37
47
|
files:
|
@@ -44,7 +54,7 @@ files:
|
|
44
54
|
- lib/rjack-icu/base.rb
|
45
55
|
- lib/rjack-icu.rb
|
46
56
|
- test/test_icu.rb
|
47
|
-
- lib/rjack-icu/icu4j-
|
57
|
+
- lib/rjack-icu/icu4j-49.1.jar
|
48
58
|
homepage: http://rjack.rubyforge.org/icu
|
49
59
|
licenses: []
|
50
60
|
|
@@ -59,19 +69,25 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
69
|
requirements:
|
60
70
|
- - ">="
|
61
71
|
- !ruby/object:Gem::Version
|
72
|
+
hash: 2
|
73
|
+
segments:
|
74
|
+
- 0
|
62
75
|
version: "0"
|
63
76
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
64
77
|
none: false
|
65
78
|
requirements:
|
66
79
|
- - ">="
|
67
80
|
- !ruby/object:Gem::Version
|
81
|
+
hash: 2
|
82
|
+
segments:
|
83
|
+
- 0
|
68
84
|
version: "0"
|
69
85
|
requirements: []
|
70
86
|
|
71
|
-
rubyforge_project:
|
72
|
-
rubygems_version: 1.8.
|
87
|
+
rubyforge_project:
|
88
|
+
rubygems_version: 1.8.15
|
73
89
|
signing_key:
|
74
90
|
specification_version: 3
|
75
|
-
summary: A gem packaging of
|
76
|
-
test_files:
|
77
|
-
|
91
|
+
summary: A gem packaging of ICU4J.
|
92
|
+
test_files: []
|
93
|
+
|