rack-locale_chooser 1.3 → 1.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
- @env['rack.city'] = geo_record.nil? ? 'undefined' : geo_record.city
90
- @env['rack.country_code'] = geo_record.nil? ? 'undefined' : geo_record.country_code
89
+ @env['rack.city'] = geo_record ? geo_record.city : 'undefined'
90
+ @env['rack.country_code'] = geo_record ? geo_record.country_code : 'undefined'
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.3"
3
+ VERSION = "1.4"
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: 9
4
+ hash: 7
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
- - 3
9
- version: "1.3"
8
+ - 4
9
+ version: "1.4"
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Jefferson Jean Martins Gir\xC3\xA3o"
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-11-17 00:00:00 -03:00
17
+ date: 2010-11-24 00:00:00 -03:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency