Class: Rack::TimeZone
- Inherits:
-
Object
- Object
- Rack::TimeZone
- Defined in:
- lib/rack/contrib/time_zone.rb
Constant Summary collapse
- Javascript =
" function setTimezoneCookie() {\n var offset = (new Date()).getTimezoneOffset()\n var date = new Date();\n date.setTime(date.getTime()+3600000);\n document.cookie = \"utc_offset=\"+offset+\"; expires=\"+date.toGMTString();+\"; path=/\";\n }\n"
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ TimeZone
constructor
A new instance of TimeZone.
Constructor Details
#initialize(app) ⇒ TimeZone
Returns a new instance of TimeZone.
12 13 14 |
# File 'lib/rack/contrib/time_zone.rb', line 12 def initialize(app) @app = app end |
Instance Method Details
#call(env) ⇒ Object
16 17 18 19 20 21 22 23 |
# File 'lib/rack/contrib/time_zone.rb', line 16 def call(env) request = Rack::Request.new(env) if utc_offset = request.["utc_offset"] env["rack.timezone.utc_offset"] = -(utc_offset.to_i * 60) end @app.call(env) end |