Class: Rack::GoogleAnalytics
- Inherits:
-
Struct
- Object
- Struct
- Rack::GoogleAnalytics
- Defined in:
- lib/rack/google_analytics.rb
Instance Attribute Summary collapse
-
#app ⇒ Object
Returns the value of attribute app.
-
#options ⇒ Object
Returns the value of attribute options.
Instance Method Summary collapse
Instance Attribute Details
#app ⇒ Object
Returns the value of attribute app
2 3 4 |
# File 'lib/rack/google_analytics.rb', line 2 def app @app end |
#options ⇒ Object
Returns the value of attribute options
2 3 4 |
# File 'lib/rack/google_analytics.rb', line 2 def @options end |
Instance Method Details
#call(env) ⇒ Object
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/rack/google_analytics.rb', line 4 def call(env) status, headers, response = app.call(env) if headers["Content-Type"] =~ /text\/html|application\/xhtml\+xml/ body = "" response.each { |part| body << part } index = body.rindex("</body>") if index body.insert(index, tracking_code([:web_property_id])) headers["Content-Length"] = body.length.to_s response = [body] end end [status, headers, response] end |