bcardarella-country_coder 0.1.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/.document +5 -0
- data/.gitignore +5 -0
- data/LICENSE +20 -0
- data/README.rdoc +27 -0
- data/Rakefile +56 -0
- data/VERSION +1 -0
- data/country_coder.gemspec +54 -0
- data/lib/country_coder.rb +7 -0
- data/test/country_coder_test.rb +20 -0
- data/test/test_helper.rb +10 -0
- metadata +74 -0
data/.document
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Brian Cardarella
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
= country_coder
|
2
|
+
|
3
|
+
Very simple for now:
|
4
|
+
|
5
|
+
>> CountryCoder[:US]
|
6
|
+
|
7
|
+
=> "United States"
|
8
|
+
|
9
|
+
You can access the data:
|
10
|
+
|
11
|
+
>> CountryCoder::COUNTRY_CODES
|
12
|
+
|
13
|
+
|
14
|
+
== Note on Patches/Pull Requests
|
15
|
+
|
16
|
+
* Fork the project.
|
17
|
+
* Make your feature addition or bug fix.
|
18
|
+
* Add tests for it. This is important so I don't break it in a
|
19
|
+
future version unintentionally.
|
20
|
+
* Commit, do not mess with rakefile, version, or history.
|
21
|
+
(if you want to have your own version, that is fine but
|
22
|
+
bump version in a commit by itself I can ignore when I pull)
|
23
|
+
* Send me a pull request. Bonus points for topic branches.
|
24
|
+
|
25
|
+
== Copyright
|
26
|
+
|
27
|
+
Copyright (c) 2009 Brian Cardarella. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "country_coder"
|
8
|
+
gem.summary = %Q{TODO: one-line summary of your gem}
|
9
|
+
gem.description = %Q{TODO: longer description of your gem}
|
10
|
+
gem.email = "bcardarella@gmail.com"
|
11
|
+
gem.homepage = "http://github.com/bcardarella/country_coder"
|
12
|
+
gem.authors = ["Brian Cardarella"]
|
13
|
+
gem.add_development_dependency "thoughtbot-shoulda"
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
rescue LoadError
|
17
|
+
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
18
|
+
end
|
19
|
+
|
20
|
+
require 'rake/testtask'
|
21
|
+
Rake::TestTask.new(:test) do |test|
|
22
|
+
test.libs << 'lib' << 'test'
|
23
|
+
test.pattern = 'test/**/*_test.rb'
|
24
|
+
test.verbose = true
|
25
|
+
end
|
26
|
+
|
27
|
+
begin
|
28
|
+
require 'rcov/rcovtask'
|
29
|
+
Rcov::RcovTask.new do |test|
|
30
|
+
test.libs << 'test'
|
31
|
+
test.pattern = 'test/**/*_test.rb'
|
32
|
+
test.verbose = true
|
33
|
+
end
|
34
|
+
rescue LoadError
|
35
|
+
task :rcov do
|
36
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
task :test => :check_dependencies
|
41
|
+
|
42
|
+
task :default => :test
|
43
|
+
|
44
|
+
require 'rake/rdoctask'
|
45
|
+
Rake::RDocTask.new do |rdoc|
|
46
|
+
if File.exist?('VERSION')
|
47
|
+
version = File.read('VERSION')
|
48
|
+
else
|
49
|
+
version = ""
|
50
|
+
end
|
51
|
+
|
52
|
+
rdoc.rdoc_dir = 'rdoc'
|
53
|
+
rdoc.title = "country_coder #{version}"
|
54
|
+
rdoc.rdoc_files.include('README*')
|
55
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
56
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.1
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{country_coder}
|
8
|
+
s.version = "0.1.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Brian Cardarella"]
|
12
|
+
s.date = %q{2009-08-26}
|
13
|
+
s.description = %q{TODO: longer description of your gem}
|
14
|
+
s.email = %q{bcardarella@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"country_coder.gemspec",
|
27
|
+
"lib/country_coder.rb",
|
28
|
+
"test/country_coder_test.rb",
|
29
|
+
"test/test_helper.rb"
|
30
|
+
]
|
31
|
+
s.has_rdoc = true
|
32
|
+
s.homepage = %q{http://github.com/bcardarella/country_coder}
|
33
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
34
|
+
s.require_paths = ["lib"]
|
35
|
+
s.rubygems_version = %q{1.3.2}
|
36
|
+
s.summary = %q{TODO: one-line summary of your gem}
|
37
|
+
s.test_files = [
|
38
|
+
"test/country_coder_test.rb",
|
39
|
+
"test/test_helper.rb"
|
40
|
+
]
|
41
|
+
|
42
|
+
if s.respond_to? :specification_version then
|
43
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
44
|
+
s.specification_version = 3
|
45
|
+
|
46
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
47
|
+
s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
48
|
+
else
|
49
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
50
|
+
end
|
51
|
+
else
|
52
|
+
s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
|
53
|
+
end
|
54
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
class CountryCoder
|
2
|
+
COUNTRY_CODES = { :AC => "Ascension Island", :AD => "Andorra", :AE => "United Arab Emirates", :AF => "Afghanistan", :AG => "Antigua and Barbuda", :AI => "Anguilla", :AL => "Albania", :AM => "Armenia", :AN => "Netherlands Antilles", :AO => "Angola", :AQ => "Antarctica", :AR => "Argentina", :AS => "American Samoa", :AT => "Austria", :AU => "Australia", :AW => "Aruba", :AX => "Aland Islands", :AZ => "Azerbaijan", :BA => "Bosnia and Herzegovina", :BB => "Barbados", :BD => "Bangladesh", :BE => "Belgium", :BF => "Burkina Faso", :BG => "Bulgaria", :BH => "Bahrain", :BI => "Burundi", :BJ => "Benin", :BM => "Bermuda", :BN => "Brunei Darussalam", :BO => "Bolivia", :BR => "Brazil", :BS => "Bahamas", :BT => "Bhutan", :BV => "Bouvet Island", :BW => "Botswana", :BY => "Belarus", :BZ => "Belize", :CA => "Canada", :CC => "Cocos (Keeling) Islands", :CD => "Congo, Democratic Republic", :CF => "Central African Republic", :CG => "Congo", :CH => "Switzerland", :CI => "Cote D'Ivoire (Ivory Coast)", :CK => "Cook Islands", :CL => "Chile", :CM => "Cameroon", :CN => "China", :CO => "Colombia", :CR => "Costa Rica", :CS => "Czechoslovakia (former)", :CU => "Cuba", :CV => "Cape Verde", :CX => "Christmas Island", :CY => "Cyprus", :CZ => "Czech Republic", :DE => "Germany", :DJ => "Djibouti", :DK => "Denmark", :DM => "Dominica", :DO => "Dominican Republic", :DZ => "Algeria", :EC => "Ecuador", :EE => "Estonia", :EG => "Egypt", :EH => "Western Sahara", :ER => "Eritrea", :ES => "Spain", :ET => "Ethiopia", :FI => "Finland", :FJ => "Fiji", :FK => "Falkland Islands (Malvinas)", :FM => "Micronesia", :FO => "Faroe Islands", :FR => "France", :FX => "France, Metropolitan", :GA => "Gabon", :GB => "Great Britain (UK)", :GD => "Grenada", :GE => "Georgia", :GF => "French Guiana", :GH => "Ghana", :GI => "Gibraltar", :GL => "Greenland", :GM => "Gambia", :GN => "Guinea", :GP => "Guadeloupe", :GQ => "Equatorial Guinea", :GR => "Greece", :GS => "S. Georgia and S. Sandwich Isls.", :GT => "Guatemala", :GU => "Guam", :GW => "Guinea-Bissau", :GY => "Guyana", :HK => "Hong Kong", :HM => "Heard and McDonald Islands", :HN => "Honduras", :HR => "Croatia (Hrvatska)", :HT => "Haiti", :HU => "Hungary", :ID => "Indonesia", :IE => "Ireland", :IL => "Israel", :IM => "Isle of Man", :IN => "India", :IO => "British Indian Ocean Territory", :IQ => "Iraq", :IR => "Iran", :IS => "Iceland", :IT => "Italy", :JE => "Jersey", :JM => "Jamaica", :JO => "Jordan", :JP => "Japan", :KE => "Kenya", :KG => "Kyrgyzstan", :KH => "Cambodia", :KI => "Kiribati", :KM => "Comoros", :KN => "Saint Kitts and Nevis", :KP => "Korea (North)", :KR => "Korea (South)", :KW => "Kuwait", :KY => "Cayman Islands", :KZ => "Kazakhstan", :LA => "Laos", :LB => "Lebanon", :LC => "Saint Lucia", :LI => "Liechtenstein", :LK => "Sri Lanka", :LR => "Liberia", :LS => "Lesotho", :LT => "Lithuania", :LU => "Luxembourg", :LV => "Latvia", :LY => "Libya", :MA => "Morocco", :MC => "Monaco", :MD => "Moldova", :ME => "Montenegro", :MG => "Madagascar", :MH => "Marshall Islands", :MK => "F.Y.R.O.M. (Macedonia)", :ML => "Mali", :MM => "Myanmar", :MN => "Mongolia", :MO => "Macau", :MP => "Northern Mariana Islands", :MQ => "Martinique", :MR => "Mauritania", :MS => "Montserrat", :MT => "Malta", :MU => "Mauritius", :MV => "Maldives", :MW => "Malawi", :MX => "Mexico", :MY => "Malaysia", :MZ => "Mozambique", :NA => "Namibia", :NC => "New Caledonia", :NE => "Niger", :NF => "Norfolk Island", :NG => "Nigeria", :NI => "Nicaragua", :NL => "Netherlands", :NO => "Norway", :NP => "Nepal", :NR => "Nauru", :NT => "Neutral Zone", :NU => "Niue", :NZ => "New Zealand (Aotearoa)", :OM => "Oman", :PA => "Panama", :PE => "Peru", :PF => "French Polynesia", :PG => "Papua New Guinea", :PH => "Philippines", :PK => "Pakistan", :PL => "Poland", :PM => "St. Pierre and Miquelon", :PN => "Pitcairn", :PR => "Puerto Rico", :PS => "Palestinian Territory, Occupied", :PT => "Portugal", :PW => "Palau", :PY => "Paraguay", :QA => "Qatar", :RE => "Reunion", :RO => "Romania", :RS => "Serbia", :RU => "Russian Federation", :RW => "Rwanda", :SA => "Saudi Arabia", :SB => "Solomon Islands", :SC => "Seychelles", :SD => "Sudan", :SE => "Sweden", :SG => "Singapore", :SH => "St. Helena", :SI => "Slovenia", :SJ => "Svalbard & Jan Mayen Islands", :SK => "Slovak Republic", :SL => "Sierra Leone", :SM => "San Marino", :SN => "Senegal", :SO => "Somalia", :SR => "Suriname", :ST => "Sao Tome and Principe", :SU => "USSR (former)", :SV => "El Salvador", :SY => "Syria", :SZ => "Swaziland", :TC => "Turks and Caicos Islands", :TD => "Chad", :TF => "French Southern Territories", :TG => "Togo", :TH => "Thailand", :TJ => "Tajikistan", :TK => "Tokelau", :TM => "Turkmenistan", :TN => "Tunisia", :TO => "Tonga", :TP => "East Timor", :TR => "Turkey", :TT => "Trinidad and Tobago", :TV => "Tuvalu", :TW => "Taiwan", :TZ => "Tanzania", :UA => "Ukraine", :UG => "Uganda", :UK => "United Kingdom", :UM => "US Minor Outlying Islands", :US => "United States", :UY => "Uruguay", :UZ => "Uzbekistan", :VA => "Vatican City State (Holy See)", :VC => "Saint Vincent & the Grenadines", :VE => "Venezuela", :VG => "British Virgin Islands", :VI => "Virgin Islands (U.S.)", :VN => "Viet Nam", :VU => "Vanuatu", :WF => "Wallis and Futuna Islands", :WS => "Samoa", :YE => "Yemen", :YT => "Mayotte", :YU => "Yugoslavia (former)", :ZA => "South Africa", :ZM => "Zambia", :ZR => "Zaire", :ZW => "Zimbabwe" }
|
3
|
+
|
4
|
+
def self.[](code)
|
5
|
+
COUNTRY_CODES[code.to_s.upcase.to_sym]
|
6
|
+
end
|
7
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
class CountryCoderTest < Test::Unit::TestCase
|
4
|
+
should "Return 'United States' for :US" do
|
5
|
+
assert_equal "United States", CountryCoder[:US]
|
6
|
+
end
|
7
|
+
|
8
|
+
should "Return 'United States' for :us" do
|
9
|
+
assert_equal "United States", CountryCoder[:us]
|
10
|
+
end
|
11
|
+
|
12
|
+
should "Return 'United States' for \"US\"" do
|
13
|
+
assert_equal "United States", CountryCoder["US"]
|
14
|
+
end
|
15
|
+
|
16
|
+
should "Return 'United States' for \"us\"" do
|
17
|
+
assert_equal "United States", CountryCoder["us"]
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
data/test/test_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bcardarella-country_coder
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Brian Cardarella
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-08-26 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: thoughtbot-shoulda
|
17
|
+
type: :development
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: "0"
|
24
|
+
version:
|
25
|
+
description: "TODO: longer description of your gem"
|
26
|
+
email: bcardarella@gmail.com
|
27
|
+
executables: []
|
28
|
+
|
29
|
+
extensions: []
|
30
|
+
|
31
|
+
extra_rdoc_files:
|
32
|
+
- LICENSE
|
33
|
+
- README.rdoc
|
34
|
+
files:
|
35
|
+
- .document
|
36
|
+
- .gitignore
|
37
|
+
- LICENSE
|
38
|
+
- README.rdoc
|
39
|
+
- Rakefile
|
40
|
+
- VERSION
|
41
|
+
- country_coder.gemspec
|
42
|
+
- lib/country_coder.rb
|
43
|
+
- test/country_coder_test.rb
|
44
|
+
- test/test_helper.rb
|
45
|
+
has_rdoc: true
|
46
|
+
homepage: http://github.com/bcardarella/country_coder
|
47
|
+
licenses:
|
48
|
+
post_install_message:
|
49
|
+
rdoc_options:
|
50
|
+
- --charset=UTF-8
|
51
|
+
require_paths:
|
52
|
+
- lib
|
53
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
54
|
+
requirements:
|
55
|
+
- - ">="
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: "0"
|
58
|
+
version:
|
59
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - ">="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: "0"
|
64
|
+
version:
|
65
|
+
requirements: []
|
66
|
+
|
67
|
+
rubyforge_project:
|
68
|
+
rubygems_version: 1.3.5
|
69
|
+
signing_key:
|
70
|
+
specification_version: 3
|
71
|
+
summary: "TODO: one-line summary of your gem"
|
72
|
+
test_files:
|
73
|
+
- test/country_coder_test.rb
|
74
|
+
- test/test_helper.rb
|