garails 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,11 +5,12 @@
5
5
  <% unless Garails.ga_cookie_domain.blank? -%>
6
6
  _gaq.push(['_setDomainName', '<%= Garails.ga_cookie_domain %>']);
7
7
  <% end -%>
8
+ _gaq.push(['_trackPageview']);
8
9
  <% if extra_account %>
9
10
  _gaq.push(['b._setAccount', '<%= extra_account %>']);
11
+ _gaq.push(['b._trackPageview']);
10
12
  <% end %>
11
13
 
12
- _gaq.push(['_trackPageview']);
13
14
  (function() {
14
15
  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
15
16
  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
@@ -1,3 +1,3 @@
1
1
  module Garails
2
- VERSION = '0.1.1'
2
+ VERSION = '0.1.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: garails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,12 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-10-04 00:00:00.000000000 +09:00
13
- default_executable:
12
+ date: 2011-10-11 00:00:00.000000000Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: gabbara
17
- requirement: &14840800 !ruby/object:Gem::Requirement
16
+ requirement: &2153351880 !ruby/object:Gem::Requirement
18
17
  none: false
19
18
  requirements:
20
19
  - - ~>
@@ -22,7 +21,7 @@ dependencies:
22
21
  version: 0.0.5
23
22
  type: :runtime
24
23
  prerelease: false
25
- version_requirements: *14840800
24
+ version_requirements: *2153351880
26
25
  description: Google Analytics for Rails
27
26
  email: michael@mobalean.com
28
27
  executables: []
@@ -71,7 +70,6 @@ files:
71
70
  - test/test_app/public/favicon.ico
72
71
  - test/test_app/script/rails
73
72
  - test/test_helper.rb
74
- has_rdoc: true
75
73
  homepage: http://github.com/mreinsch/garails
76
74
  licenses: []
77
75
  post_install_message:
@@ -92,8 +90,33 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
90
  version: '0'
93
91
  requirements: []
94
92
  rubyforge_project:
95
- rubygems_version: 1.6.2
93
+ rubygems_version: 1.8.6
96
94
  signing_key:
97
95
  specification_version: 3
98
96
  summary: Google Analytics for Rails
99
- test_files: []
97
+ test_files:
98
+ - test/controllers/google_analytics_controller_test.rb
99
+ - test/test_app/.gitignore
100
+ - test/test_app/app/controllers/application_controller.rb
101
+ - test/test_app/app/helpers/application_helper.rb
102
+ - test/test_app/app/views/layouts/application.html.erb
103
+ - test/test_app/config.ru
104
+ - test/test_app/config/application.rb
105
+ - test/test_app/config/boot.rb
106
+ - test/test_app/config/database.yml
107
+ - test/test_app/config/environment.rb
108
+ - test/test_app/config/environments/test.rb
109
+ - test/test_app/config/initializers/backtrace_silencers.rb
110
+ - test/test_app/config/initializers/garails.rb
111
+ - test/test_app/config/initializers/inflections.rb
112
+ - test/test_app/config/initializers/mime_types.rb
113
+ - test/test_app/config/initializers/secret_token.rb
114
+ - test/test_app/config/initializers/session_store.rb
115
+ - test/test_app/config/routes.rb
116
+ - test/test_app/db/seeds.rb
117
+ - test/test_app/public/404.html
118
+ - test/test_app/public/422.html
119
+ - test/test_app/public/500.html
120
+ - test/test_app/public/favicon.ico
121
+ - test/test_app/script/rails
122
+ - test/test_helper.rb