cldr 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/cldr.gemspec +6 -5
- data/lib/cldr.rb +0 -1
- metadata +28 -11
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.5
|
data/cldr.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{cldr}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.5"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Masao Mutoh"]
|
@@ -13,10 +13,10 @@ Gem::Specification.new do |s|
|
|
13
13
|
[1] http://www.unicode.org/cldr/
|
14
14
|
}
|
15
15
|
s.email = %q{mutoh at highway.ne.jp}
|
16
|
-
s.extra_rdoc_files = [
|
17
|
-
|
18
|
-
|
19
|
-
]
|
16
|
+
#s.extra_rdoc_files = [
|
17
|
+
# "ChangeLog",
|
18
|
+
# "README"
|
19
|
+
#]
|
20
20
|
s.files = [
|
21
21
|
"COPYING",
|
22
22
|
"ChangeLog",
|
@@ -1601,6 +1601,7 @@ Gem::Specification.new do |s|
|
|
1601
1601
|
]
|
1602
1602
|
s.homepage = %q{http://www.yotabanana.com/hiki/ruby-cldr.html}
|
1603
1603
|
s.rdoc_options = ["--charset=UTF-8"]
|
1604
|
+
s.has_rdoc = false
|
1604
1605
|
s.require_paths = ["lib"]
|
1605
1606
|
s.rubygems_version = %q{1.3.4}
|
1606
1607
|
s.summary = %q{Ruby/CLDR is a library which provides locale informations}
|
data/lib/cldr.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cldr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 17
|
5
|
+
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
- 5
|
10
|
+
version: 0.1.5
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Masao Mutoh
|
@@ -14,23 +20,28 @@ default_executable:
|
|
14
20
|
dependencies:
|
15
21
|
- !ruby/object:Gem::Dependency
|
16
22
|
name: locale
|
17
|
-
|
18
|
-
|
19
|
-
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
20
26
|
requirements:
|
21
27
|
- - ">"
|
22
28
|
- !ruby/object:Gem::Version
|
29
|
+
hash: 15
|
30
|
+
segments:
|
31
|
+
- 2
|
32
|
+
- 0
|
33
|
+
- 0
|
23
34
|
version: 2.0.0
|
24
|
-
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
25
37
|
description: " Ruby/CLDR a library which provides locale informations based on \n Common Locale Data Repository(CLDR) Project[1].\n\n [1] http://www.unicode.org/cldr/\n"
|
26
38
|
email: mutoh at highway.ne.jp
|
27
39
|
executables: []
|
28
40
|
|
29
41
|
extensions: []
|
30
42
|
|
31
|
-
extra_rdoc_files:
|
32
|
-
|
33
|
-
- README
|
43
|
+
extra_rdoc_files: []
|
44
|
+
|
34
45
|
files:
|
35
46
|
- COPYING
|
36
47
|
- ChangeLog
|
@@ -1622,21 +1633,27 @@ rdoc_options:
|
|
1622
1633
|
require_paths:
|
1623
1634
|
- lib
|
1624
1635
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1636
|
+
none: false
|
1625
1637
|
requirements:
|
1626
1638
|
- - ">="
|
1627
1639
|
- !ruby/object:Gem::Version
|
1640
|
+
hash: 3
|
1641
|
+
segments:
|
1642
|
+
- 0
|
1628
1643
|
version: "0"
|
1629
|
-
version:
|
1630
1644
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1645
|
+
none: false
|
1631
1646
|
requirements:
|
1632
1647
|
- - ">="
|
1633
1648
|
- !ruby/object:Gem::Version
|
1649
|
+
hash: 3
|
1650
|
+
segments:
|
1651
|
+
- 0
|
1634
1652
|
version: "0"
|
1635
|
-
version:
|
1636
1653
|
requirements: []
|
1637
1654
|
|
1638
1655
|
rubyforge_project:
|
1639
|
-
rubygems_version: 1.
|
1656
|
+
rubygems_version: 1.5.0
|
1640
1657
|
signing_key:
|
1641
1658
|
specification_version: 3
|
1642
1659
|
summary: Ruby/CLDR is a library which provides locale informations
|