carmen 0.2.0 → 0.2.1
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/README.rdoc +2 -0
- data/VERSION +1 -1
- data/carmen.gemspec +3 -2
- data/data/states/nz.yml +35 -0
- metadata +5 -4
data/README.rdoc
CHANGED
|
@@ -64,6 +64,7 @@ Currently included localizations are: English (:en), German (:de)
|
|
|
64
64
|
* Split the Rails-specific view helpers out into a separate gem (carmen-rails)
|
|
65
65
|
|
|
66
66
|
== Changelog
|
|
67
|
+
* 0.2.1 Added regions for New Zealand (yehezkielbs)
|
|
67
68
|
* 0.2.0 Merge in Maximilian Schulz's locale fork, refactor internals to better support locales, and update documentation.
|
|
68
69
|
Remove Carmen::STATES and Carmen::COUNTRIES constants in favor of module instance variables and proper accessors.
|
|
69
70
|
Add a test_helper and remove dependency on RubyGems.
|
|
@@ -93,5 +94,6 @@ Maximilian Schulz (namxam)
|
|
|
93
94
|
Mani Tadayon (bowsersenior)
|
|
94
95
|
Andriy Tyurnikov (andriytyurnikov)
|
|
95
96
|
lonestarsoftware
|
|
97
|
+
yehezkielbs
|
|
96
98
|
|
|
97
99
|
If I missed your name in this list, please let me know and I will add it. I tried to find everyone that has sent in patches or found bugs, but I may have missed a few folks.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
data/carmen.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{carmen}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jim Benton"]
|
|
12
|
-
s.date = %q{2010-11-
|
|
12
|
+
s.date = %q{2010-11-19}
|
|
13
13
|
s.description = %q{A collection of geographis country and state names for Ruby. Also includes replacements for Rails' country_select and state_select plugins}
|
|
14
14
|
s.email = %q{jim@autonomousmachine.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -35,6 +35,7 @@ Gem::Specification.new do |s|
|
|
|
35
35
|
"data/states/it.yml",
|
|
36
36
|
"data/states/mx.yml",
|
|
37
37
|
"data/states/no.yml",
|
|
38
|
+
"data/states/nz.yml",
|
|
38
39
|
"data/states/ua.yml",
|
|
39
40
|
"data/states/us.yml",
|
|
40
41
|
"lib/carmen.rb",
|
data/data/states/nz.yml
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
- - Auckland
|
|
3
|
+
- AUK
|
|
4
|
+
- - Bay of Plenty
|
|
5
|
+
- BOP
|
|
6
|
+
- - Canterbury
|
|
7
|
+
- CAN
|
|
8
|
+
- - "Hawke's Bay"
|
|
9
|
+
- HKB
|
|
10
|
+
- - Manawatu-Wanganui
|
|
11
|
+
- MWT
|
|
12
|
+
- - Northland
|
|
13
|
+
- NTL
|
|
14
|
+
- - Otago
|
|
15
|
+
- OTA
|
|
16
|
+
- - Southland
|
|
17
|
+
- STL
|
|
18
|
+
- - Taranaki
|
|
19
|
+
- TKI
|
|
20
|
+
- - Waikato
|
|
21
|
+
- WKO
|
|
22
|
+
- - Wellington
|
|
23
|
+
- WGN
|
|
24
|
+
- - West Coast
|
|
25
|
+
- WTC
|
|
26
|
+
- - Gisborne District
|
|
27
|
+
- GIS
|
|
28
|
+
- - Marlborough District
|
|
29
|
+
- MBH
|
|
30
|
+
- - Nelson City
|
|
31
|
+
- NSN
|
|
32
|
+
- - Tasman District
|
|
33
|
+
- TAS
|
|
34
|
+
- - Chatham Islands Territory
|
|
35
|
+
- CIT
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: carmen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 2
|
|
9
|
-
-
|
|
10
|
-
version: 0.2.
|
|
9
|
+
- 1
|
|
10
|
+
version: 0.2.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jim Benton
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-11-
|
|
18
|
+
date: 2010-11-19 00:00:00 -06:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -74,6 +74,7 @@ files:
|
|
|
74
74
|
- data/states/it.yml
|
|
75
75
|
- data/states/mx.yml
|
|
76
76
|
- data/states/no.yml
|
|
77
|
+
- data/states/nz.yml
|
|
77
78
|
- data/states/ua.yml
|
|
78
79
|
- data/states/us.yml
|
|
79
80
|
- lib/carmen.rb
|