ads-rails 0.0.6 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6d0f1ea9b9cf2d98de998c96c7bc067ede2a5eb
4
- data.tar.gz: bd3590f80b3df8bc83dea55648e4ad5a385214ed
3
+ metadata.gz: 0dbe6f8bd7868c383aa4aecfce12cc4ebbdd84f1
4
+ data.tar.gz: 86cdc4b15b30153d48065797bc465cdfce67c29c
5
5
  SHA512:
6
- metadata.gz: 51c79f5d902a01fe0e7beed9338e9ea7a2c351f3068c425f1218f9917858023059941dbb458420138556a098f942bd420fb7927d833260e29f7218350a772b32
7
- data.tar.gz: a136d30c1b8cf4db5c8f1cd90f61a39163a685ea9f7f092b9bbfed58f96c689ddc4b942342ee9b50490f8dac53fa7ccf1e8d4b10166fbb750f78c11e79d60ca1
6
+ metadata.gz: 1e72373314d0746492c515d759ef1dabc3310ccc22b22e92c1784acffc1d4aaef3f5239d5131ab5367ede6ac1defc0b7c7b3a6473761f673d7ea44dbef1a938b
7
+ data.tar.gz: 3dc039382aeda618be8dfe0b0f20c04a98c4109df09ef88950f13eccc30fa4b5d36e427a0144321c41117180494fa6713082759e30adf452bafe6ff2b7ab0dc5
data/MIT-LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright 2013 Mattways
1
+ Copyright 2013 Museways
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.rdoc CHANGED
@@ -1,4 +1,8 @@
1
- {<img src="https://codeclimate.com/github/mattways/ads-rails.png" />}[https://codeclimate.com/github/mattways/ads-rails] {<img src="https://travis-ci.org/mattways/ads-rails.png?branch=master" alt="Build Status" />}[https://travis-ci.org/mattways/ads-rails] {<img src="https://gemnasium.com/mattways/ads-rails.png" alt="Dependency Status" />}[https://gemnasium.com/mattways/ads-rails]
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 want to renderer different the placeholder, put something like this in your application.rb:
25
- config.ads.renderer = proc { |options| tag(:img, src: "http://placehold.it/#{options[:width]}x#{options[:height]}&text=Google+AdSense") }
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.application.config.ads.renderer.is_a? Proc
9
- instance_exec(options, &::Rails.application.config.ads.renderer)
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(:div, nil, style: "width:#{options[:width]}px;height:#{options[:height]}px;background:#c8c8c8;")
20
+ content_tag :div, nil, style: "width:#{options[:width]}px;height:#{options[:height]}px;background:#c8c8c8;"
21
21
  end
22
22
  end
23
23
 
@@ -1,7 +1,7 @@
1
1
  module Ads
2
2
  module Rails
3
3
 
4
- VERSION = '0.0.6'
4
+ VERSION = '0.0.8'
5
5
 
6
6
  end
7
7
  end
@@ -1 +1 @@
1
- <%= google_adsense_include_tag client: 'client', slot: 'slot', width: 'width', height: 'height' %>
1
+ <%= google_adsense_include_tag client: 'client', slot: 'slot', width: 728, height: 90 %>
@@ -5,3 +5,15 @@
5
5
   (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
6
   (0.0ms) SELECT version FROM "schema_migrations"
7
7
   (0.1ms) 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
@@ -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
   (0.1ms) rollback transaction
36
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
37
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
38
+  (0.1ms) SELECT version FROM "schema_migrations"
39
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
40
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
49
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
50
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
51
+  (0.1ms) SELECT version FROM "schema_migrations"
52
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
53
+  (0.1ms) begin transaction
54
+ ------------------------------------------------------------------
55
+ IncludeTagTest: test_should_show_adsense_code_if_env_is_production
56
+ ------------------------------------------------------------------
57
+  (0.0ms) rollback transaction
58
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
66
+  (0.0ms) begin transaction
67
+ ---------------------------------------------------------------------
68
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
69
+ ---------------------------------------------------------------------
70
+  (0.0ms) rollback transaction
71
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
72
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
73
+  (0.1ms) SELECT version FROM "schema_migrations"
74
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
75
+  (0.1ms) begin transaction
76
+ ------------------------------------------------------------------
77
+ IncludeTagTest: test_should_show_adsense_code_if_env_is_production
78
+ ------------------------------------------------------------------
79
+  (0.0ms) rollback transaction
80
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
88
+  (0.0ms) begin transaction
89
+ ---------------------------------------------------------------------
90
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
91
+ ---------------------------------------------------------------------
92
+  (0.0ms) rollback transaction
93
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
94
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
95
+  (0.1ms) SELECT version FROM "schema_migrations"
96
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
97
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
106
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
114
+  (0.1ms) begin transaction
115
+ ---------------------------------------------------------------------
116
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
117
+ ---------------------------------------------------------------------
118
+  (0.0ms) rollback transaction
119
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
120
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
121
+  (0.1ms) SELECT version FROM "schema_migrations"
122
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
123
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
132
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
140
+  (0.0ms) begin transaction
141
+ ---------------------------------------------------------------------
142
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
143
+ ---------------------------------------------------------------------
144
+  (0.0ms) rollback transaction
145
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
146
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
147
+  (0.0ms) SELECT version FROM "schema_migrations"
148
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
149
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
158
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
166
+  (0.0ms) begin transaction
167
+ ---------------------------------------------------------------------
168
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
169
+ ---------------------------------------------------------------------
170
+  (0.0ms) rollback transaction
171
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
172
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
173
+  (0.1ms) SELECT version FROM "schema_migrations"
174
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
175
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
184
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
192
+  (0.1ms) begin transaction
193
+ ---------------------------------------------------------------------
194
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
195
+ ---------------------------------------------------------------------
196
+  (0.0ms) rollback transaction
197
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
198
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
199
+  (0.1ms) SELECT version FROM "schema_migrations"
200
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
201
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
210
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
220
+  (0.0ms) begin transaction
221
+ ---------------------------------------------------------------------
222
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
223
+ ---------------------------------------------------------------------
224
+  (0.0ms) rollback transaction
225
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
226
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
227
+  (0.1ms) SELECT version FROM "schema_migrations"
228
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
229
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
238
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
248
+  (0.0ms) begin transaction
249
+ ---------------------------------------------------------------------
250
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
251
+ ---------------------------------------------------------------------
252
+  (0.0ms) rollback transaction
253
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
254
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
255
+  (0.1ms) SELECT version FROM "schema_migrations"
256
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
257
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
270
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
280
+  (0.1ms) begin transaction
281
+ ---------------------------------------------------------------------
282
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
283
+ ---------------------------------------------------------------------
284
+  (0.0ms) rollback transaction
285
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
286
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
287
+  (0.1ms) SELECT version FROM "schema_migrations"
288
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
289
+  (0.1ms) begin transaction
290
+ -------------------------------------------------------------------------------------------
291
+ IncludeTagTest: test_should_show_adsense_code_if_env_is_production_and_there_is_no_renderer
292
+ -------------------------------------------------------------------------------------------
293
+  (0.1ms) rollback transaction
294
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
304
+  (0.1ms) begin transaction
305
+ ---------------------------------------------------------------------
306
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
307
+ ---------------------------------------------------------------------
308
+  (0.0ms) rollback transaction
309
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
310
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
311
+  (0.1ms) SELECT version FROM "schema_migrations"
312
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
313
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
326
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
336
+  (0.1ms) begin transaction
337
+ ---------------------------------------------------------------------
338
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
339
+ ---------------------------------------------------------------------
340
+  (0.0ms) rollback transaction
341
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
342
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
343
+  (0.1ms) SELECT version FROM "schema_migrations"
344
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
345
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
358
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
368
+  (0.0ms) begin transaction
369
+ ---------------------------------------------------------------------
370
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
371
+ ---------------------------------------------------------------------
372
+  (0.0ms) rollback transaction
373
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
374
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
375
+  (0.1ms) SELECT version FROM "schema_migrations"
376
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
377
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
390
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
400
+  (0.0ms) begin transaction
401
+ ---------------------------------------------------------------------
402
+ IncludeTagTest: test_should_show_renderer_output_if_renderer_it's_set
403
+ ---------------------------------------------------------------------
404
+  (0.0ms) rollback transaction
405
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
406
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
407
+  (0.0ms) SELECT version FROM "schema_migrations"
408
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
409
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
422
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
432
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
440
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
441
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
442
+  (0.1ms) SELECT version FROM "schema_migrations"
443
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
444
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
457
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
467
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
475
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
476
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
477
+  (0.1ms) SELECT version FROM "schema_migrations"
478
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
479
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
492
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
502
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
510
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
511
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
512
+  (0.0ms) SELECT version FROM "schema_migrations"
513
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
514
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
527
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
537
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
545
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
546
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
547
+  (0.1ms) SELECT version FROM "schema_migrations"
548
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
549
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
562
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
572
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
580
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
581
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
582
+  (0.1ms) SELECT version FROM "schema_migrations"
583
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
584
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
597
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
607
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
615
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
616
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
617
+  (0.1ms) SELECT version FROM "schema_migrations"
618
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
619
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
632
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
642
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
653
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
654
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
655
+  (0.1ms) SELECT version FROM "schema_migrations"
656
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
657
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
670
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
680
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
688
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
689
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
690
+  (0.0ms) SELECT version FROM "schema_migrations"
691
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
692
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
705
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
715
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
723
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
724
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
725
+  (0.1ms) SELECT version FROM "schema_migrations"
726
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
727
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
740
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
750
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
761
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
762
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
763
+  (0.1ms) SELECT version FROM "schema_migrations"
764
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
765
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
778
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
788
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
799
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
800
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
801
+  (0.1ms) SELECT version FROM "schema_migrations"
802
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
803
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
816
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
826
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
834
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
835
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
836
+  (0.1ms) SELECT version FROM "schema_migrations"
837
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
838
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
851
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
861
+  (0.1ms) begin transaction
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
+  (0.0ms) rollback transaction
876
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
877
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
878
+  (0.1ms) SELECT version FROM "schema_migrations"
879
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
880
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
893
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
903
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
918
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
919
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
920
+  (0.1ms) SELECT version FROM "schema_migrations"
921
+  (0.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
922
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
935
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
945
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction