Question about Google Analytics Tracking (w/ Rails)

前端 未结 5 1510
深忆病人
深忆病人 2021-02-10 21:17

I\'ve got google analytics setup on a rails project, and I\'ve got \"A single domain (default)\" selected for the tracking options.

I\'ve copied and pasted the js code i

5条回答
  •  太阳男子
    2021-02-10 22:04

    Also, using a Google Analytics gem will automatically set some of these features for you. Here is a great way to do it:

    Google Analytics and Rails in 5 EASY Steps:

    If you are in Rails 3, I just found a great solution for doing Google Analytics in Rails apps.

    (1) In your Gemfile:

    group :production do
      gem 'rack-google_analytics', :require => "rack/google_analytics"
    end
    

    (2) Bundle Install

    (3) In your config/application.rb (put this in the class definition section - careful not to drop it in a module. I put mine right under "class Application"):

    if Rails.env == "production"
      config.middleware.use("Rack::GoogleAnalytics", :web_property_id => "UA-0000000-1")
    end
    

    (4) Initiate your Google Analytics account

    (5) Copy and paste that funky web_property_id from Google's supplied code into the code from (3), replacing 'UA-000000-1'

    That's it!

    I originally found this solution here: David Bock Article

提交回复
热议问题