sundawg_country_codes 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -109,8 +109,10 @@ To include this gem in your Rails project, add the following to your config/envi
109
109
  config.gem 'sundawg_country_codes', :lib => 'country_iso_translater'
110
110
 
111
111
  == History
112
- v0.0.4 - Added ISO 639 Language translater, cleaned up documents.
113
- v0.0.3 - Added USA State translater and cleaned up unit tests.
114
- v0.0.2b - Completed all currency information, unicode HTML utility, and bug fixes. Gem version re-published as 0.0.2.
115
- v0.0.2 - Added ISO 4217 currency information.
116
- v0.0.1 - Allows basic ISO 3166 translation.
112
+
113
+ * 0.0.5 - Fix for how NOrway is treated - Thanks Y8
114
+ * 0.0.4 - Added ISO 639 Language translater, cleaned up documents.
115
+ * 0.0.3 - Added USA State translater and cleaned up unit tests.
116
+ * 0.0.2b - Completed all currency information, unicode HTML utility, and bug fixes. Gem version re-published as 0.0.2.
117
+ * 0.0.2 - Added ISO 4217 currency information.
118
+ * 0.0.1 - Allows basic ISO 3166 translation.
data/Rakefile CHANGED
@@ -3,7 +3,7 @@ require 'rubygems'
3
3
  require 'rake'
4
4
  require 'echoe'
5
5
 
6
- Echoe.new('sundawg_country_codes', '0.0.4') do |p|
6
+ Echoe.new('sundawg_country_codes', '0.0.5') do |p|
7
7
  p.description = "Manage ISO 3166 Country Names and Codes, ISO 639 Languages, and ISO 4217 Currencies."
8
8
  p.url = "http://github.com/SunDawg/country_codes"
9
9
  p.author = "Christopher Sun"
data/lib/countries.yml CHANGED
@@ -7,8 +7,8 @@ US:
7
7
  symbol: $
8
8
  name: Dollars
9
9
  unicode_hex: 0x24
10
- NO:
11
- alpha2: NO
10
+ "NO":
11
+ alpha2: "NO"
12
12
  name: Norway
13
13
  alpha3: NOR
14
14
  curreny_iso4217: &nok
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{sundawg_country_codes}
5
- s.version = "0.0.4"
5
+ s.version = "0.0.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Christopher Sun"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sundawg_country_codes
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 4
10
- version: 0.0.4
9
+ - 5
10
+ version: 0.0.5
11
11
  platform: ruby
12
12
  authors:
13
13
  - Christopher Sun