garails 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1 @@
1
+ pkg/*
@@ -1,7 +1,7 @@
1
1
  require 'gabbara'
2
2
  require 'digest'
3
3
 
4
- class Garails::GoogleAnalyticsController < ApplicationController
4
+ class Garails::GoogleAnalyticsController < ActionController::Base
5
5
  unloadable
6
6
  before_filter :extract_visitor_id
7
7
 
@@ -1,3 +1,3 @@
1
1
  module Garails
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: garails
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
5
4
  prerelease: false
6
5
  segments:
7
6
  - 0
8
7
  - 0
9
- - 3
10
- version: 0.0.3
8
+ - 4
9
+ version: 0.0.4
11
10
  platform: ruby
12
11
  authors:
13
12
  - Michael Reinsch
@@ -15,7 +14,7 @@ autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-12-27 00:00:00 +09:00
17
+ date: 2011-04-19 00:00:00 +09:00
19
18
  default_executable:
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
@@ -26,7 +25,6 @@ dependencies:
26
25
  requirements:
27
26
  - - ~>
28
27
  - !ruby/object:Gem::Version
29
- hash: 23
30
28
  segments:
31
29
  - 0
32
30
  - 0
@@ -43,6 +41,7 @@ extensions: []
43
41
  extra_rdoc_files: []
44
42
 
45
43
  files:
44
+ - .gitignore
46
45
  - Gemfile
47
46
  - Gemfile.lock
48
47
  - README.rdoc
@@ -96,7 +95,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
96
95
  requirements:
97
96
  - - ">="
98
97
  - !ruby/object:Gem::Version
99
- hash: 3
100
98
  segments:
101
99
  - 0
102
100
  version: "0"
@@ -105,7 +103,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
103
  requirements:
106
104
  - - ">="
107
105
  - !ruby/object:Gem::Version
108
- hash: 3
109
106
  segments:
110
107
  - 0
111
108
  version: "0"
@@ -116,5 +113,28 @@ rubygems_version: 1.3.7
116
113
  signing_key:
117
114
  specification_version: 3
118
115
  summary: Google Analytics for Rails
119
- test_files: []
120
-
116
+ test_files:
117
+ - test/controllers/google_analytics_controller_test.rb
118
+ - test/test_app/.gitignore
119
+ - test/test_app/app/controllers/application_controller.rb
120
+ - test/test_app/app/helpers/application_helper.rb
121
+ - test/test_app/app/views/layouts/application.html.erb
122
+ - test/test_app/config.ru
123
+ - test/test_app/config/application.rb
124
+ - test/test_app/config/boot.rb
125
+ - test/test_app/config/database.yml
126
+ - test/test_app/config/environment.rb
127
+ - test/test_app/config/environments/test.rb
128
+ - test/test_app/config/initializers/backtrace_silencers.rb
129
+ - test/test_app/config/initializers/inflections.rb
130
+ - test/test_app/config/initializers/mime_types.rb
131
+ - test/test_app/config/initializers/secret_token.rb
132
+ - test/test_app/config/initializers/session_store.rb
133
+ - test/test_app/config/routes.rb
134
+ - test/test_app/db/seeds.rb
135
+ - test/test_app/public/404.html
136
+ - test/test_app/public/422.html
137
+ - test/test_app/public/500.html
138
+ - test/test_app/public/favicon.ico
139
+ - test/test_app/script/rails
140
+ - test/test_helper.rb