This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Calvin Yu (author)
Sat May 17 16:18:29 -0700 2008
| name | age | message | |
|---|---|---|---|
| |
README | Sat May 17 16:18:29 -0700 2008 | [Calvin Yu] |
| |
Rakefile | Tue May 09 04:07:48 -0700 2006 | [mathie] |
| |
init.rb | Tue May 09 07:26:35 -0700 2006 | [mathie] |
| |
lib/ | Sat May 17 16:18:29 -0700 2008 | [Calvin Yu] |
| |
test/ | Tue May 09 04:07:48 -0700 2006 | [mathie] |
README
GoogleAnalytics
===============
This is a quick 'n' dirty module to easily enable Google Analytics support
in your application. By default it'll output the analytics code for every
single page automatically, if it's configured correctly. This is done by
adding:
Rubaidh::GoogleAnalytics.tracker_id = 'UA-12345-67'
to your `config/environment.rb`, inserting your own tracker id. This can be
discovered by looking at the value assigned to +_uacct+ in the Javascript
code.
If you want to disable the code insertion for particular pages, add the following to controllers that don't want it:
skip_after_filter :add_google_analytics_code
Simple. :-)
NOTE
This version of the plugin uses the new Google Analytics code (ga.js) by
default. To use the legacy tracking code add the following line to your
`config/environmet.rb`:
Rubaidh::GoogleAnalytics.legacy_mode = true




