ads-rails 0.0.6 → 0.0.8
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.
- checksums.yaml +4 -4
- data/MIT-LICENSE +1 -1
- data/README.rdoc +7 -3
- data/lib/ads/rails/action_view/base.rb +6 -6
- data/lib/ads/rails/version.rb +1 -1
- data/test/dummy/app/views/pages/index.html.erb +1 -1
- data/test/dummy/log/development.log +12 -0
- data/test/dummy/log/test.log +924 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/include_tag_test.rb +48 -3
- metadata +32 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0dbe6f8bd7868c383aa4aecfce12cc4ebbdd84f1
|
4
|
+
data.tar.gz: 86cdc4b15b30153d48065797bc465cdfce67c29c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1e72373314d0746492c515d759ef1dabc3310ccc22b22e92c1784acffc1d4aaef3f5239d5131ab5367ede6ac1defc0b7c7b3a6473761f673d7ea44dbef1a938b
|
7
|
+
data.tar.gz: 3dc039382aeda618be8dfe0b0f20c04a98c4109df09ef88950f13eccc30fa4b5d36e427a0144321c41117180494fa6713082759e30adf452bafe6ff2b7ab0dc5
|
data/MIT-LICENSE
CHANGED
data/README.rdoc
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
|
1
|
+
=== WARNING: From version 0.0.8 and above we changed the behavior of the renderer to only being use when the environment is not production.
|
2
|
+
|
3
|
+
---
|
4
|
+
|
5
|
+
{<img src="https://badge.fury.io/rb/ads-rails.png" alt="Gem Version" />}[http://badge.fury.io/rb/ads-rails] {<img src="https://codeclimate.com/github/museways/ads-rails.png" />}[https://codeclimate.com/github/museways/ads-rails] {<img src="https://travis-ci.org/museways/ads-rails.png?branch=master" alt="Build Status" />}[https://travis-ci.org/museways/ads-rails] {<img src="https://gemnasium.com/museways/ads-rails.png" alt="Dependency Status" />}[https://gemnasium.com/museways/ads-rails]
|
2
6
|
|
3
7
|
= Ads Rails
|
4
8
|
|
@@ -21,5 +25,5 @@ In your view add a line like this wherever you like:
|
|
21
25
|
|
22
26
|
= Configuration
|
23
27
|
|
24
|
-
If you
|
25
|
-
config.ads.renderer =
|
28
|
+
If you don't like the default color div in development, you can use a custom renderer:
|
29
|
+
config.ads.renderer = lamda { |options| tag(:img, src: "http://placehold.it/#{options[:width]}x#{options[:height]}&text=Google+AdSense") }
|
@@ -5,19 +5,19 @@ module Ads
|
|
5
5
|
|
6
6
|
def google_adsense_include_tag(*args)
|
7
7
|
options = args.extract_options!
|
8
|
-
if ::Rails.
|
9
|
-
|
10
|
-
elsif ::Rails.env.production?
|
11
|
-
script = <<-SCRIPT
|
8
|
+
if ::Rails.env.production?
|
9
|
+
script = <<-SCRIPT.strip_heredoc
|
12
10
|
google_ad_client = '#{options[:client]}';
|
13
|
-
google_ad_slot = '#{options[:slot]}';
|
11
|
+
google_ad_slot = '#{options[:slot]}';
|
14
12
|
google_ad_width = #{options[:width]};
|
15
13
|
google_ad_height = #{options[:height]};
|
16
14
|
SCRIPT
|
17
15
|
content_tag(:script, script.html_safe, type: 'text/javascript') +
|
18
16
|
content_tag(:script, nil, type: 'text/javascript', src: "#{request.protocol}pagead2.googlesyndication.com/pagead/show_ads.js")
|
17
|
+
elsif ::Rails.application.config.ads.renderer.is_a? Proc
|
18
|
+
instance_exec options, &::Rails.application.config.ads.renderer
|
19
19
|
else
|
20
|
-
content_tag
|
20
|
+
content_tag :div, nil, style: "width:#{options[:width]}px;height:#{options[:height]}px;background:#c8c8c8;"
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
data/lib/ads/rails/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
<%= google_adsense_include_tag client: 'client', slot: 'slot', width:
|
1
|
+
<%= google_adsense_include_tag client: 'client', slot: 'slot', width: 728, height: 90 %>
|
@@ -5,3 +5,15 @@
|
|
5
5
|
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6
6
|
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
7
7
|
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
8
|
+
|
9
|
+
|
10
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 13:57:24 -0200
|
11
|
+
Processing by PagesController#index as HTML
|
12
|
+
Rendered pages/index.html.erb within layouts/application (1.1ms)
|
13
|
+
Completed 200 OK in 26ms (Views: 26.1ms | ActiveRecord: 0.0ms)
|
14
|
+
|
15
|
+
|
16
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-03-01 13:57:24 -0200
|
17
|
+
|
18
|
+
|
19
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-03-01 13:57:24 -0200
|
data/test/dummy/log/test.log
CHANGED
@@ -33,3 +33,927 @@ Processing by PagesController#index as HTML
|
|
33
33
|
Rendered pages/index.html.erb within layouts/application (21.1ms)
|
34
34
|
Completed 200 OK in 66ms (Views: 65.3ms | ActiveRecord: 0.0ms)
|
35
35
|
[1m[35m (0.1ms)[0m rollback transaction
|
36
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
37
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
38
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
39
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
40
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
41
|
+
--------------------------------------------
|
42
|
+
IncludeTagTest: test_should_show_include_tag
|
43
|
+
--------------------------------------------
|
44
|
+
Started GET "/" for 127.0.0.1 at 2013-11-30 14:40:29 -0200
|
45
|
+
Processing by PagesController#index as HTML
|
46
|
+
Rendered pages/index.html.erb within layouts/application (1.6ms)
|
47
|
+
Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.0ms)
|
48
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
49
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
50
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
51
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
52
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
53
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
54
|
+
------------------------------------------------------------------
|
55
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production
|
56
|
+
------------------------------------------------------------------
|
57
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
58
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
59
|
+
---------------------------------------------------------------------------------------------
|
60
|
+
IncludeTagTest: test_should_show_gray_div_if_env_it's_not_production_and_no_renderer_it's_set
|
61
|
+
---------------------------------------------------------------------------------------------
|
62
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 13:56:41 -0200
|
63
|
+
Processing by PagesController#index as HTML
|
64
|
+
Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.0ms)
|
65
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
66
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
67
|
+
---------------------------------------------------------------------
|
68
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
69
|
+
---------------------------------------------------------------------
|
70
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
71
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
72
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
73
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
74
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
75
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
76
|
+
------------------------------------------------------------------
|
77
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production
|
78
|
+
------------------------------------------------------------------
|
79
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
80
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
81
|
+
---------------------------------------------------------------------------------------------
|
82
|
+
IncludeTagTest: test_should_show_gray_div_if_env_it's_not_production_and_no_renderer_it's_set
|
83
|
+
---------------------------------------------------------------------------------------------
|
84
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 13:58:04 -0200
|
85
|
+
Processing by PagesController#index as HTML
|
86
|
+
Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
87
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
88
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
89
|
+
---------------------------------------------------------------------
|
90
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
91
|
+
---------------------------------------------------------------------
|
92
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
93
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
94
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
95
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
96
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
97
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
98
|
+
------------------------------------------------------------------
|
99
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production
|
100
|
+
------------------------------------------------------------------
|
101
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:01:19 -0200
|
102
|
+
Processing by PagesController#index as HTML
|
103
|
+
Rendered pages/index.html.erb within layouts/application (1.1ms)
|
104
|
+
Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
105
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
106
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
107
|
+
---------------------------------------------------------------------------------------------
|
108
|
+
IncludeTagTest: test_should_show_gray_div_if_env_it's_not_production_and_no_renderer_it's_set
|
109
|
+
---------------------------------------------------------------------------------------------
|
110
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:01:19 -0200
|
111
|
+
Processing by PagesController#index as HTML
|
112
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
113
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
114
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
115
|
+
---------------------------------------------------------------------
|
116
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
117
|
+
---------------------------------------------------------------------
|
118
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
119
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
120
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
121
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
122
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
123
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
124
|
+
------------------------------------------------------------------
|
125
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production
|
126
|
+
------------------------------------------------------------------
|
127
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:01:33 -0200
|
128
|
+
Processing by PagesController#index as HTML
|
129
|
+
Rendered pages/index.html.erb within layouts/application (1.1ms)
|
130
|
+
Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
131
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
132
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
133
|
+
---------------------------------------------------------------------------------------------
|
134
|
+
IncludeTagTest: test_should_show_gray_div_if_env_it's_not_production_and_no_renderer_it's_set
|
135
|
+
---------------------------------------------------------------------------------------------
|
136
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:01:33 -0200
|
137
|
+
Processing by PagesController#index as HTML
|
138
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
139
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
140
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
141
|
+
---------------------------------------------------------------------
|
142
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
143
|
+
---------------------------------------------------------------------
|
144
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
145
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
146
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
147
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
148
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
149
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
150
|
+
------------------------------------------------------------------
|
151
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production
|
152
|
+
------------------------------------------------------------------
|
153
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:02:17 -0200
|
154
|
+
Processing by PagesController#index as HTML
|
155
|
+
Rendered pages/index.html.erb within layouts/application (1.4ms)
|
156
|
+
Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
|
157
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
158
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
159
|
+
---------------------------------------------------------------------------------------------
|
160
|
+
IncludeTagTest: test_should_show_gray_div_if_env_it's_not_production_and_no_renderer_it's_set
|
161
|
+
---------------------------------------------------------------------------------------------
|
162
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:02:17 -0200
|
163
|
+
Processing by PagesController#index as HTML
|
164
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
165
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
166
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
167
|
+
---------------------------------------------------------------------
|
168
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
169
|
+
---------------------------------------------------------------------
|
170
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
171
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
172
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
173
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
174
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
175
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
176
|
+
------------------------------------------------------------------
|
177
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production
|
178
|
+
------------------------------------------------------------------
|
179
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:03:34 -0200
|
180
|
+
Processing by PagesController#index as HTML
|
181
|
+
Rendered pages/index.html.erb within layouts/application (1.1ms)
|
182
|
+
Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
|
183
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
184
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
185
|
+
---------------------------------------------------------------------------------------------
|
186
|
+
IncludeTagTest: test_should_show_gray_div_if_env_it's_not_production_and_no_renderer_it's_set
|
187
|
+
---------------------------------------------------------------------------------------------
|
188
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:03:34 -0200
|
189
|
+
Processing by PagesController#index as HTML
|
190
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
191
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
192
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
193
|
+
---------------------------------------------------------------------
|
194
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
195
|
+
---------------------------------------------------------------------
|
196
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
197
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
198
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
199
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
200
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
201
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
202
|
+
------------------------------------------------------------------
|
203
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production
|
204
|
+
------------------------------------------------------------------
|
205
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:05:39 -0200
|
206
|
+
Processing by PagesController#index as HTML
|
207
|
+
Rendered pages/index.html.erb within layouts/application (1.3ms)
|
208
|
+
Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
|
209
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
211
|
+
---------------------------------------------------------------------------------------------
|
212
|
+
IncludeTagTest: test_should_show_gray_div_if_env_it's_not_production_and_no_renderer_it's_set
|
213
|
+
---------------------------------------------------------------------------------------------
|
214
|
+
|
215
|
+
|
216
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:05:39 -0200
|
217
|
+
Processing by PagesController#index as HTML
|
218
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
219
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
220
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
221
|
+
---------------------------------------------------------------------
|
222
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
223
|
+
---------------------------------------------------------------------
|
224
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
225
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
226
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
227
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
228
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
229
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
230
|
+
------------------------------------------------------------------
|
231
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production
|
232
|
+
------------------------------------------------------------------
|
233
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:07:24 -0200
|
234
|
+
Processing by PagesController#index as HTML
|
235
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
236
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
237
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
238
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
239
|
+
---------------------------------------------------------------------------------------------
|
240
|
+
IncludeTagTest: test_should_show_gray_div_if_env_it's_not_production_and_no_renderer_it's_set
|
241
|
+
---------------------------------------------------------------------------------------------
|
242
|
+
|
243
|
+
|
244
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:07:24 -0200
|
245
|
+
Processing by PagesController#index as HTML
|
246
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
247
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
248
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
249
|
+
---------------------------------------------------------------------
|
250
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
251
|
+
---------------------------------------------------------------------
|
252
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
253
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
254
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
255
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
256
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
257
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
258
|
+
-------------------------------------------------------------------------------------------
|
259
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
260
|
+
-------------------------------------------------------------------------------------------
|
261
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:15:13 -0200
|
262
|
+
Processing by PagesController#index as HTML
|
263
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
264
|
+
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
265
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:15:13 -0200
|
266
|
+
Processing by PagesController#index as HTML
|
267
|
+
Rendered pages/index.html.erb within layouts/application (0.1ms)
|
268
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
269
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
271
|
+
-------------------------------------------------------------------------------------------
|
272
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
273
|
+
-------------------------------------------------------------------------------------------
|
274
|
+
|
275
|
+
|
276
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:15:13 -0200
|
277
|
+
Processing by PagesController#index as HTML
|
278
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
279
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
280
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
281
|
+
---------------------------------------------------------------------
|
282
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
283
|
+
---------------------------------------------------------------------
|
284
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
285
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
286
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
287
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
288
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
289
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
290
|
+
-------------------------------------------------------------------------------------------
|
291
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
292
|
+
-------------------------------------------------------------------------------------------
|
293
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
294
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
295
|
+
-------------------------------------------------------------------------------------------
|
296
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
297
|
+
-------------------------------------------------------------------------------------------
|
298
|
+
|
299
|
+
|
300
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:16:14 -0200
|
301
|
+
Processing by PagesController#index as HTML
|
302
|
+
Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
303
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
304
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
305
|
+
---------------------------------------------------------------------
|
306
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
307
|
+
---------------------------------------------------------------------
|
308
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
309
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
310
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
311
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
312
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
314
|
+
-------------------------------------------------------------------------------------------
|
315
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
316
|
+
-------------------------------------------------------------------------------------------
|
317
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:16:49 -0200
|
318
|
+
Processing by PagesController#index as HTML
|
319
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
320
|
+
Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
|
321
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:16:49 -0200
|
322
|
+
Processing by PagesController#index as HTML
|
323
|
+
Rendered pages/index.html.erb within layouts/application (0.1ms)
|
324
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
325
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
326
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
327
|
+
-------------------------------------------------------------------------------------------
|
328
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
329
|
+
-------------------------------------------------------------------------------------------
|
330
|
+
|
331
|
+
|
332
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:16:49 -0200
|
333
|
+
Processing by PagesController#index as HTML
|
334
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
335
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
336
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
337
|
+
---------------------------------------------------------------------
|
338
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
339
|
+
---------------------------------------------------------------------
|
340
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
341
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
342
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
343
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
344
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
345
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
346
|
+
-------------------------------------------------------------------------------------------
|
347
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
348
|
+
-------------------------------------------------------------------------------------------
|
349
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:17:37 -0200
|
350
|
+
Processing by PagesController#index as HTML
|
351
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
352
|
+
Completed 200 OK in 13ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
353
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:17:37 -0200
|
354
|
+
Processing by PagesController#index as HTML
|
355
|
+
Rendered pages/index.html.erb within layouts/application (0.1ms)
|
356
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
357
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
358
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
359
|
+
-------------------------------------------------------------------------------------------
|
360
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
361
|
+
-------------------------------------------------------------------------------------------
|
362
|
+
|
363
|
+
|
364
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:17:37 -0200
|
365
|
+
Processing by PagesController#index as HTML
|
366
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
367
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
368
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
369
|
+
---------------------------------------------------------------------
|
370
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
371
|
+
---------------------------------------------------------------------
|
372
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
373
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
374
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
375
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
376
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
377
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
378
|
+
-------------------------------------------------------------------------------------------
|
379
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
380
|
+
-------------------------------------------------------------------------------------------
|
381
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:20:34 -0200
|
382
|
+
Processing by PagesController#index as HTML
|
383
|
+
Rendered pages/index.html.erb within layouts/application (1.3ms)
|
384
|
+
Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
385
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:20:34 -0200
|
386
|
+
Processing by PagesController#index as HTML
|
387
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
388
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
389
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
390
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
391
|
+
-------------------------------------------------------------------------------------------
|
392
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
393
|
+
-------------------------------------------------------------------------------------------
|
394
|
+
|
395
|
+
|
396
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:20:34 -0200
|
397
|
+
Processing by PagesController#index as HTML
|
398
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
399
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
400
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
401
|
+
---------------------------------------------------------------------
|
402
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
403
|
+
---------------------------------------------------------------------
|
404
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
405
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
406
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
407
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
408
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
409
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
410
|
+
-------------------------------------------------------------------------------------------
|
411
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
412
|
+
-------------------------------------------------------------------------------------------
|
413
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:32:19 -0200
|
414
|
+
Processing by PagesController#index as HTML
|
415
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
416
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
417
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:32:19 -0200
|
418
|
+
Processing by PagesController#index as HTML
|
419
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
420
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
421
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
422
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
423
|
+
-------------------------------------------------------------------------------------------
|
424
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
425
|
+
-------------------------------------------------------------------------------------------
|
426
|
+
|
427
|
+
|
428
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:32:19 -0200
|
429
|
+
Processing by PagesController#index as HTML
|
430
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
431
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
432
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
433
|
+
---------------------------------------------------------------------
|
434
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
435
|
+
---------------------------------------------------------------------
|
436
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:32:19 -0200
|
437
|
+
Processing by PagesController#index as HTML
|
438
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
439
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
440
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
441
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
442
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
443
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
444
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
445
|
+
-------------------------------------------------------------------------------------------
|
446
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
447
|
+
-------------------------------------------------------------------------------------------
|
448
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:32:46 -0200
|
449
|
+
Processing by PagesController#index as HTML
|
450
|
+
Rendered pages/index.html.erb within layouts/application (1.3ms)
|
451
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
452
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:32:46 -0200
|
453
|
+
Processing by PagesController#index as HTML
|
454
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
455
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
456
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
457
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
458
|
+
-------------------------------------------------------------------------------------------
|
459
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
460
|
+
-------------------------------------------------------------------------------------------
|
461
|
+
|
462
|
+
|
463
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:32:46 -0200
|
464
|
+
Processing by PagesController#index as HTML
|
465
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
466
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
467
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
468
|
+
---------------------------------------------------------------------
|
469
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
470
|
+
---------------------------------------------------------------------
|
471
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:32:46 -0200
|
472
|
+
Processing by PagesController#index as HTML
|
473
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
474
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
475
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
476
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
477
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
478
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
479
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
480
|
+
-------------------------------------------------------------------------------------------
|
481
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
482
|
+
-------------------------------------------------------------------------------------------
|
483
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:33:26 -0200
|
484
|
+
Processing by PagesController#index as HTML
|
485
|
+
Rendered pages/index.html.erb within layouts/application (1.3ms)
|
486
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
487
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:33:26 -0200
|
488
|
+
Processing by PagesController#index as HTML
|
489
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
490
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
491
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
492
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
493
|
+
-------------------------------------------------------------------------------------------
|
494
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
495
|
+
-------------------------------------------------------------------------------------------
|
496
|
+
|
497
|
+
|
498
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:33:26 -0200
|
499
|
+
Processing by PagesController#index as HTML
|
500
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
501
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
502
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
503
|
+
---------------------------------------------------------------------
|
504
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
505
|
+
---------------------------------------------------------------------
|
506
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:33:26 -0200
|
507
|
+
Processing by PagesController#index as HTML
|
508
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
509
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
510
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
511
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
512
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
513
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
514
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
515
|
+
-------------------------------------------------------------------------------------------
|
516
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
517
|
+
-------------------------------------------------------------------------------------------
|
518
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:33:57 -0200
|
519
|
+
Processing by PagesController#index as HTML
|
520
|
+
Rendered pages/index.html.erb within layouts/application (1.1ms)
|
521
|
+
Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
|
522
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:33:57 -0200
|
523
|
+
Processing by PagesController#index as HTML
|
524
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
525
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
526
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
527
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
528
|
+
-------------------------------------------------------------------------------------------
|
529
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
530
|
+
-------------------------------------------------------------------------------------------
|
531
|
+
|
532
|
+
|
533
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:33:57 -0200
|
534
|
+
Processing by PagesController#index as HTML
|
535
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
536
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
537
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
538
|
+
---------------------------------------------------------------------
|
539
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
540
|
+
---------------------------------------------------------------------
|
541
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:33:57 -0200
|
542
|
+
Processing by PagesController#index as HTML
|
543
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
544
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
545
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
546
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
547
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
548
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
549
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
550
|
+
-------------------------------------------------------------------------------------------
|
551
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
552
|
+
-------------------------------------------------------------------------------------------
|
553
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:34:12 -0200
|
554
|
+
Processing by PagesController#index as HTML
|
555
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
556
|
+
Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
557
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:34:12 -0200
|
558
|
+
Processing by PagesController#index as HTML
|
559
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
560
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
561
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
562
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
563
|
+
-------------------------------------------------------------------------------------------
|
564
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
565
|
+
-------------------------------------------------------------------------------------------
|
566
|
+
|
567
|
+
|
568
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:34:12 -0200
|
569
|
+
Processing by PagesController#index as HTML
|
570
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
571
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
572
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
573
|
+
---------------------------------------------------------------------
|
574
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
575
|
+
---------------------------------------------------------------------
|
576
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:34:12 -0200
|
577
|
+
Processing by PagesController#index as HTML
|
578
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
579
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
580
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
581
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
582
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
583
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
584
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
585
|
+
-------------------------------------------------------------------------------------------
|
586
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
587
|
+
-------------------------------------------------------------------------------------------
|
588
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:34:31 -0200
|
589
|
+
Processing by PagesController#index as HTML
|
590
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
591
|
+
Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
|
592
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:34:31 -0200
|
593
|
+
Processing by PagesController#index as HTML
|
594
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
595
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
596
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
597
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
598
|
+
-------------------------------------------------------------------------------------------
|
599
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
600
|
+
-------------------------------------------------------------------------------------------
|
601
|
+
|
602
|
+
|
603
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:34:31 -0200
|
604
|
+
Processing by PagesController#index as HTML
|
605
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
606
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
607
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
608
|
+
---------------------------------------------------------------------
|
609
|
+
IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
|
610
|
+
---------------------------------------------------------------------
|
611
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:34:31 -0200
|
612
|
+
Processing by PagesController#index as HTML
|
613
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
614
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
615
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
616
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
617
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
618
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
619
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
620
|
+
-------------------------------------------------------------------------------------------
|
621
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
622
|
+
-------------------------------------------------------------------------------------------
|
623
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:37:37 -0200
|
624
|
+
Processing by PagesController#index as HTML
|
625
|
+
Rendered pages/index.html.erb within layouts/application (1.3ms)
|
626
|
+
Completed 200 OK in 13ms (Views: 12.7ms | ActiveRecord: 0.0ms)
|
627
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:37:37 -0200
|
628
|
+
Processing by PagesController#index as HTML
|
629
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
630
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
631
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
632
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
633
|
+
-------------------------------------------------------------------------------------------
|
634
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
635
|
+
-------------------------------------------------------------------------------------------
|
636
|
+
|
637
|
+
|
638
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:37:37 -0200
|
639
|
+
Processing by PagesController#index as HTML
|
640
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
641
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
642
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
643
|
+
------------------------------------------------------------------------------
|
644
|
+
IncludeTagTest: test_should_show_renderer_output_if_there_is_a_lambda_renderer
|
645
|
+
------------------------------------------------------------------------------
|
646
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:37:37 -0200
|
647
|
+
Processing by PagesController#index as HTML
|
648
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
649
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:37:37 -0200
|
650
|
+
Processing by PagesController#index as HTML
|
651
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
652
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
653
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
654
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
655
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
656
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
657
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
658
|
+
-------------------------------------------------------------------------------------------
|
659
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
660
|
+
-------------------------------------------------------------------------------------------
|
661
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:42:50 -0200
|
662
|
+
Processing by PagesController#index as HTML
|
663
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
664
|
+
Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
665
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:42:50 -0200
|
666
|
+
Processing by PagesController#index as HTML
|
667
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
668
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
669
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
670
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
671
|
+
-------------------------------------------------------------------------------------------
|
672
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
673
|
+
-------------------------------------------------------------------------------------------
|
674
|
+
|
675
|
+
|
676
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:42:50 -0200
|
677
|
+
Processing by PagesController#index as HTML
|
678
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
679
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
681
|
+
------------------------------------------------------------------------------
|
682
|
+
IncludeTagTest: test_should_show_renderer_output_if_there_is_a_lambda_renderer
|
683
|
+
------------------------------------------------------------------------------
|
684
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:42:50 -0200
|
685
|
+
Processing by PagesController#index as HTML
|
686
|
+
Completed 500 Internal Server Error in 19ms
|
687
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
688
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
689
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
690
|
+
[1m[36m (0.0ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
691
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
692
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
693
|
+
-------------------------------------------------------------------------------------------
|
694
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
695
|
+
-------------------------------------------------------------------------------------------
|
696
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:43:17 -0200
|
697
|
+
Processing by PagesController#index as HTML
|
698
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
699
|
+
Completed 200 OK in 13ms (Views: 12.4ms | ActiveRecord: 0.0ms)
|
700
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:43:17 -0200
|
701
|
+
Processing by PagesController#index as HTML
|
702
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
703
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
704
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
706
|
+
-------------------------------------------------------------------------------------------
|
707
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
708
|
+
-------------------------------------------------------------------------------------------
|
709
|
+
|
710
|
+
|
711
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:43:17 -0200
|
712
|
+
Processing by PagesController#index as HTML
|
713
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
714
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
715
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
716
|
+
------------------------------------------------------------------------------
|
717
|
+
IncludeTagTest: test_should_show_renderer_output_if_there_is_a_lambda_renderer
|
718
|
+
------------------------------------------------------------------------------
|
719
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:43:17 -0200
|
720
|
+
Processing by PagesController#index as HTML
|
721
|
+
Completed 500 Internal Server Error in 2ms
|
722
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
723
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
724
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
725
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
726
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
727
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
728
|
+
-------------------------------------------------------------------------------------------
|
729
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
730
|
+
-------------------------------------------------------------------------------------------
|
731
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:43:28 -0200
|
732
|
+
Processing by PagesController#index as HTML
|
733
|
+
Rendered pages/index.html.erb within layouts/application (1.3ms)
|
734
|
+
Completed 200 OK in 13ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
735
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:43:28 -0200
|
736
|
+
Processing by PagesController#index as HTML
|
737
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
738
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
739
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
740
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
741
|
+
-------------------------------------------------------------------------------------------
|
742
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
743
|
+
-------------------------------------------------------------------------------------------
|
744
|
+
|
745
|
+
|
746
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:43:28 -0200
|
747
|
+
Processing by PagesController#index as HTML
|
748
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
749
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
750
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
751
|
+
------------------------------------------------------------------------------
|
752
|
+
IncludeTagTest: test_should_show_renderer_output_if_there_is_a_lambda_renderer
|
753
|
+
------------------------------------------------------------------------------
|
754
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:43:28 -0200
|
755
|
+
Processing by PagesController#index as HTML
|
756
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
757
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:43:28 -0200
|
758
|
+
Processing by PagesController#index as HTML
|
759
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
760
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
761
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
762
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
763
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
764
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
765
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
766
|
+
-------------------------------------------------------------------------------------------
|
767
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
768
|
+
-------------------------------------------------------------------------------------------
|
769
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:44:21 -0200
|
770
|
+
Processing by PagesController#index as HTML
|
771
|
+
Rendered pages/index.html.erb within layouts/application (1.3ms)
|
772
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
773
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:44:21 -0200
|
774
|
+
Processing by PagesController#index as HTML
|
775
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
776
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
777
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
778
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
779
|
+
-------------------------------------------------------------------------------------------
|
780
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
781
|
+
-------------------------------------------------------------------------------------------
|
782
|
+
|
783
|
+
|
784
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:44:21 -0200
|
785
|
+
Processing by PagesController#index as HTML
|
786
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
787
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
788
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
789
|
+
------------------------------------------------------------------------------
|
790
|
+
IncludeTagTest: test_should_show_renderer_output_if_there_is_a_lambda_renderer
|
791
|
+
------------------------------------------------------------------------------
|
792
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:44:21 -0200
|
793
|
+
Processing by PagesController#index as HTML
|
794
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
795
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:44:21 -0200
|
796
|
+
Processing by PagesController#index as HTML
|
797
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
798
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
799
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
800
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
801
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
802
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
803
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
804
|
+
-------------------------------------------------------------------------------------------
|
805
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
806
|
+
-------------------------------------------------------------------------------------------
|
807
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:48:44 -0200
|
808
|
+
Processing by PagesController#index as HTML
|
809
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
810
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
811
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:48:44 -0200
|
812
|
+
Processing by PagesController#index as HTML
|
813
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
814
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
815
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
816
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
817
|
+
-------------------------------------------------------------------------------------------
|
818
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
819
|
+
-------------------------------------------------------------------------------------------
|
820
|
+
|
821
|
+
|
822
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:48:44 -0200
|
823
|
+
Processing by PagesController#index as HTML
|
824
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
825
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
826
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
827
|
+
---------------------------------------------------------------------------------------------
|
828
|
+
IncludeTagTest: test_should_show_renderer_output_if_env_is_production_and_there_is_a_renderer
|
829
|
+
---------------------------------------------------------------------------------------------
|
830
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:48:44 -0200
|
831
|
+
Processing by PagesController#index as HTML
|
832
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
833
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
834
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
835
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
836
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
837
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
838
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
839
|
+
-------------------------------------------------------------------------------------------
|
840
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
841
|
+
-------------------------------------------------------------------------------------------
|
842
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:49:42 -0200
|
843
|
+
Processing by PagesController#index as HTML
|
844
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
845
|
+
Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
846
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:49:42 -0200
|
847
|
+
Processing by PagesController#index as HTML
|
848
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
849
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
850
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
851
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
852
|
+
-------------------------------------------------------------------------------------------
|
853
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
854
|
+
-------------------------------------------------------------------------------------------
|
855
|
+
|
856
|
+
|
857
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:49:42 -0200
|
858
|
+
Processing by PagesController#index as HTML
|
859
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
860
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
861
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
862
|
+
-------------------------------------------------------------------------------------------------
|
863
|
+
IncludeTagTest: test_should_show_renderer_output_if_env_is_not_production_and_there_is_a_renderer
|
864
|
+
-------------------------------------------------------------------------------------------------
|
865
|
+
|
866
|
+
|
867
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:49:42 -0200
|
868
|
+
Processing by PagesController#index as HTML
|
869
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
870
|
+
|
871
|
+
|
872
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:49:42 -0200
|
873
|
+
Processing by PagesController#index as HTML
|
874
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
875
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
876
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
877
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
878
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
879
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
880
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
881
|
+
-------------------------------------------------------------------------------------------
|
882
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
883
|
+
-------------------------------------------------------------------------------------------
|
884
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:50:47 -0200
|
885
|
+
Processing by PagesController#index as HTML
|
886
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
887
|
+
Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
|
888
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:50:47 -0200
|
889
|
+
Processing by PagesController#index as HTML
|
890
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
891
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
892
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
893
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
894
|
+
-------------------------------------------------------------------------------------------
|
895
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
896
|
+
-------------------------------------------------------------------------------------------
|
897
|
+
|
898
|
+
|
899
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:50:47 -0200
|
900
|
+
Processing by PagesController#index as HTML
|
901
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
902
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
903
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
904
|
+
-------------------------------------------------------------------------------------------------
|
905
|
+
IncludeTagTest: test_should_show_renderer_output_if_env_is_not_production_and_there_is_a_renderer
|
906
|
+
-------------------------------------------------------------------------------------------------
|
907
|
+
|
908
|
+
|
909
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:50:47 -0200
|
910
|
+
Processing by PagesController#index as HTML
|
911
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
912
|
+
|
913
|
+
|
914
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 14:50:47 -0200
|
915
|
+
Processing by PagesController#index as HTML
|
916
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
917
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
918
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
919
|
+
[1m[35m (0.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
920
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
921
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('0')
|
922
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
923
|
+
-------------------------------------------------------------------------------------------
|
924
|
+
IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
|
925
|
+
-------------------------------------------------------------------------------------------
|
926
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 15:03:35 -0200
|
927
|
+
Processing by PagesController#index as HTML
|
928
|
+
Rendered pages/index.html.erb within layouts/application (1.2ms)
|
929
|
+
Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.0ms)
|
930
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 15:03:35 -0200
|
931
|
+
Processing by PagesController#index as HTML
|
932
|
+
Rendered pages/index.html.erb within layouts/application (0.2ms)
|
933
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
934
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
935
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
936
|
+
-------------------------------------------------------------------------------------------
|
937
|
+
IncludeTagTest: test_should_show_gray_div_if_env_is_not_production_and_there_is_no_renderer
|
938
|
+
-------------------------------------------------------------------------------------------
|
939
|
+
|
940
|
+
|
941
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 15:03:35 -0200
|
942
|
+
Processing by PagesController#index as HTML
|
943
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
944
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
945
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
946
|
+
-------------------------------------------------------------------------------------------------
|
947
|
+
IncludeTagTest: test_should_show_renderer_output_if_env_is_not_production_and_there_is_a_renderer
|
948
|
+
-------------------------------------------------------------------------------------------------
|
949
|
+
|
950
|
+
|
951
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 15:03:35 -0200
|
952
|
+
Processing by PagesController#index as HTML
|
953
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
954
|
+
|
955
|
+
|
956
|
+
Started GET "/" for 127.0.0.1 at 2014-03-01 15:03:35 -0200
|
957
|
+
Processing by PagesController#index as HTML
|
958
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
959
|
+
[1m[35m (0.0ms)[0m rollback transaction
|