public
Fork of cyu/google_analytics
Description: Rails GA plugin fork w/ using newer GA tracking code
Homepage:
Clone URL: git://github.com/ffmike/google_analytics.git
google_analytics / google_analytics.gemspec
100644 29 lines (26 sloc) 1.306 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
spec = Gem::Specification.new do |s|
  s.name = 'google_analytics'
  s.version = '1.0.20081104'
  s.date = "2008-11-04"
  s.author = 'Graeme Mathieson'
  s.email = 'mathie@rubaidh.com'
  s.has_rdoc = true
  s.homepage = 'http://github.com/rubaidh/google_analytics/tree/master'
  s.summary = "[Rails] This is a quick 'n' dirty module to easily enable" +
                  'Google Analytics support in your application.'
  s.description = 'By default this gem will output google analytics code for' +
                  "every page automatically, if it's configured correctly." +
                  "This is done by adding:\n" +
                  "Rubaidh::GoogleAnalytics.tracker_id = 'UA-12345-67'\n"
                  '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.'
  
  s.files = %w( README Rakefile rails/init.rb
test/google_analytics_test.rb
test/test_helper.rb
test/view_helpers_test.rb
lib/rubaidh/google_analytics.rb
lib/rubaidh/view_helpers.rb
task/google_analytics.rake)
  
  s.add_dependency 'actionpack'
end