spdr-cldr 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/cldr.gemspec +15 -7
- metadata +17 -7
data/Rakefile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.3
|
data/cldr.gemspec
CHANGED
@@ -1,11 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
1
3
|
Gem::Specification.new do |s|
|
2
4
|
s.name = %q{cldr}
|
3
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.3"
|
4
6
|
|
5
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
6
8
|
s.authors = ["Masao Mutoh"]
|
7
|
-
s.date = %q{2009-
|
8
|
-
s.description = %q{Ruby/CLDR a library which provides locale informations based on
|
9
|
+
s.date = %q{2009-09-24}
|
10
|
+
s.description = %q{ Ruby/CLDR a library which provides locale informations based on
|
11
|
+
Common Locale Data Repository(CLDR) Project[1].
|
12
|
+
|
13
|
+
[1] http://www.unicode.org/cldr/
|
14
|
+
}
|
9
15
|
s.email = %q{mutoh at highway.ne.jp}
|
10
16
|
s.extra_rdoc_files = [
|
11
17
|
"ChangeLog",
|
@@ -1593,11 +1599,10 @@ Gem::Specification.new do |s|
|
|
1593
1599
|
"lib/cldr/version.rb",
|
1594
1600
|
"test/test_generator.rb"
|
1595
1601
|
]
|
1596
|
-
s.has_rdoc = true
|
1597
1602
|
s.homepage = %q{http://www.yotabanana.com/hiki/ruby-cldr.html}
|
1598
1603
|
s.rdoc_options = ["--charset=UTF-8"]
|
1599
1604
|
s.require_paths = ["lib"]
|
1600
|
-
s.rubygems_version = %q{1.
|
1605
|
+
s.rubygems_version = %q{1.3.4}
|
1601
1606
|
s.summary = %q{Ruby/CLDR is a library which provides locale informations}
|
1602
1607
|
s.test_files = [
|
1603
1608
|
"test/test_generator.rb"
|
@@ -1605,11 +1610,14 @@ Gem::Specification.new do |s|
|
|
1605
1610
|
|
1606
1611
|
if s.respond_to? :specification_version then
|
1607
1612
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
1608
|
-
s.specification_version =
|
1613
|
+
s.specification_version = 3
|
1609
1614
|
|
1610
|
-
if
|
1615
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
1616
|
+
s.add_runtime_dependency(%q<locale>, ["> 2.0.0"])
|
1611
1617
|
else
|
1618
|
+
s.add_dependency(%q<locale>, ["> 2.0.0"])
|
1612
1619
|
end
|
1613
1620
|
else
|
1621
|
+
s.add_dependency(%q<locale>, ["> 2.0.0"])
|
1614
1622
|
end
|
1615
1623
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: spdr-cldr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Masao Mutoh
|
@@ -9,10 +9,19 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-09-24 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: locale
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 2.0.0
|
24
|
+
version:
|
16
25
|
description: Ruby/CLDR a library which provides locale informations based on Common Locale Data Repository(CLDR) Project[1]. [1] http://www.unicode.org/cldr/
|
17
26
|
email: mutoh at highway.ne.jp
|
18
27
|
executables: []
|
@@ -1603,8 +1612,9 @@ files:
|
|
1603
1612
|
- lib/cldr/utils.rb
|
1604
1613
|
- lib/cldr/version.rb
|
1605
1614
|
- test/test_generator.rb
|
1606
|
-
has_rdoc:
|
1615
|
+
has_rdoc: false
|
1607
1616
|
homepage: http://www.yotabanana.com/hiki/ruby-cldr.html
|
1617
|
+
licenses:
|
1608
1618
|
post_install_message:
|
1609
1619
|
rdoc_options:
|
1610
1620
|
- --charset=UTF-8
|
@@ -1625,9 +1635,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1625
1635
|
requirements: []
|
1626
1636
|
|
1627
1637
|
rubyforge_project:
|
1628
|
-
rubygems_version: 1.
|
1638
|
+
rubygems_version: 1.3.5
|
1629
1639
|
signing_key:
|
1630
|
-
specification_version:
|
1640
|
+
specification_version: 3
|
1631
1641
|
summary: Ruby/CLDR is a library which provides locale informations
|
1632
1642
|
test_files:
|
1633
1643
|
- test/test_generator.rb
|