garails 0.0.3 → 0.0.4
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.
- data/.gitignore +1 -0
- data/app/controllers/garails/google_analytics_controller.rb +1 -1
- data/lib/garails/version.rb +1 -1
- metadata +29 -9
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg/*
|
data/lib/garails/version.rb
CHANGED
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
|
-
-
|
|
10
|
-
version: 0.0.
|
|
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:
|
|
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
|