rack-locale_chooser 1.4 → 1.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -86,8 +86,10 @@ module Rack::LocaleChooser
86
86
 
87
87
  def set_locale
88
88
  I18n.locale = @env['rack.locale'] = locale.to_sym
89
- @env['rack.city'] = geo_record ? geo_record.city : 'undefined'
90
- @env['rack.country_code'] = geo_record ? geo_record.country_code : 'undefined'
89
+ if geo_record then
90
+ @env['rack.city'] = geo_record.city
91
+ @env['rack.country_code'] = geo_record.country_code
92
+ end
91
93
  end
92
94
 
93
95
  def localized_url
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  module LocaleChooser
3
- VERSION = "1.4"
3
+ VERSION = "1.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack-locale_chooser
3
3
  version: !ruby/object:Gem::Version
4
- hash: 7
4
+ hash: 5
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
- - 4
9
- version: "1.4"
8
+ - 5
9
+ version: "1.5"
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Jefferson Jean Martins Gir\xC3\xA3o"