asm / google-analytics-rails

Rails helpers to manage google analytics tracking

Repository from Github https://github.comasm/google-analytics-railsRepository from Github https://github.comasm/google-analytics-rails

Fast Google Analytics setup for Rails.

Installation

Add the following to your Gemfile:

gem 'google-analytics-rails'

Then run:

bundle install

Documentation

http://rubydoc.info/github/bgarret/google-analytics-rails

Example configurations

Production only

config/environments/production.rb:

# replace this with your tracker code
GA.tracker = "UA-xxxxxx-x"

app/views/layout/application.html.erb, in the <head> tag :

	<%= analytics_init if Rails.env.production? %>

Different accounts for development and production

config/environments/production.rb:

# replace this with your production tracker code
GAR.tracker = "UA-xxxxxx-x"

config/environments/development.rb:

# replace this with your development tracker code
GAR.tracker = "UA-xxxxxx-x"

app/views/layout/application.html.erb, in the <head> tag :

	<%= analytics_init :local => Rails.env.development? %>

License

google-analytics-rails is released under the MIT license:

About

Rails helpers to manage google analytics tracking


Languages

Language:Ruby 100.0%