rack-locale_chooser 1.2 → 1.3

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.
@@ -86,8 +86,8 @@ module Rack::LocaleChooser
86
86
 
87
87
  def set_locale
88
88
  I18n.locale = @env['rack.locale'] = locale.to_sym
89
- geo_record.nil? ? @env['rack.city'] = 'undefined' : geo_record.city
90
- geo_record.nil? ? @env['rack.country_code'] = 'undefined' : geo_record.country_code
89
+ @env['rack.city'] = geo_record.nil? ? 'undefined' : geo_record.city
90
+ @env['rack.country_code'] = geo_record.nil? ? 'undefined' : geo_record.country_code
91
91
  end
92
92
 
93
93
  def localized_url
@@ -1,5 +1,5 @@
1
1
  module Rack
2
2
  module LocaleChooser
3
- VERSION = "1.2"
3
+ VERSION = "1.3"
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: 11
4
+ hash: 9
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
- - 2
9
- version: "1.2"
8
+ - 3
9
+ version: "1.3"
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Jefferson Jean Martins Gir\xC3\xA3o"