flowmor_analytics 0.0.1

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.
Files changed (122) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/app/assets/javascripts/flowmor_analytics/clicky_analytics.js.erb +13 -0
  5. data/app/assets/javascripts/flowmor_analytics/google_analytics.js.erb +11 -0
  6. data/app/assets/javascripts/flowmor_analytics.js.erb +2 -0
  7. data/bin/rails +12 -0
  8. data/config/routes.rb +2 -0
  9. data/lib/flowmor_analytics/config.rb +18 -0
  10. data/lib/flowmor_analytics/engine.rb +4 -0
  11. data/lib/flowmor_analytics/railtie.rb +21 -0
  12. data/lib/flowmor_analytics/version.rb +3 -0
  13. data/lib/flowmor_analytics.rb +7 -0
  14. data/lib/generators/flowmor_analytics/install_generator.rb +13 -0
  15. data/lib/generators/flowmor_analytics/templates/config/analytics.yml +41 -0
  16. data/lib/tasks/flowmor_analytics_tasks.rake +4 -0
  17. data/test/dummy/README.rdoc +28 -0
  18. data/test/dummy/Rakefile +6 -0
  19. data/test/dummy/app/assets/javascripts/application.js +14 -0
  20. data/test/dummy/app/assets/javascripts/static.js +2 -0
  21. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  22. data/test/dummy/app/assets/stylesheets/static.css +4 -0
  23. data/test/dummy/app/controllers/application_controller.rb +5 -0
  24. data/test/dummy/app/controllers/static_controller.rb +2 -0
  25. data/test/dummy/app/helpers/application_helper.rb +2 -0
  26. data/test/dummy/app/helpers/static_helper.rb +2 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/test/dummy/app/views/static/index.html.erb +3 -0
  29. data/test/dummy/bin/bundle +3 -0
  30. data/test/dummy/bin/rails +4 -0
  31. data/test/dummy/bin/rake +4 -0
  32. data/test/dummy/config/analytics.yml +20 -0
  33. data/test/dummy/config/application.rb +24 -0
  34. data/test/dummy/config/boot.rb +5 -0
  35. data/test/dummy/config/database.yml +25 -0
  36. data/test/dummy/config/environment.rb +5 -0
  37. data/test/dummy/config/environments/development.rb +37 -0
  38. data/test/dummy/config/environments/production.rb +82 -0
  39. data/test/dummy/config/environments/test.rb +39 -0
  40. data/test/dummy/config/initializers/assets.rb +8 -0
  41. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  42. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  43. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  44. data/test/dummy/config/initializers/inflections.rb +16 -0
  45. data/test/dummy/config/initializers/mime_types.rb +4 -0
  46. data/test/dummy/config/initializers/session_store.rb +3 -0
  47. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  48. data/test/dummy/config/locales/en.yml +23 -0
  49. data/test/dummy/config/routes.rb +3 -0
  50. data/test/dummy/config/secrets.yml +22 -0
  51. data/test/dummy/config.ru +4 -0
  52. data/test/dummy/db/development.sqlite3 +0 -0
  53. data/test/dummy/db/test.sqlite3 +0 -0
  54. data/test/dummy/log/development.log +559 -0
  55. data/test/dummy/log/test.log +747 -0
  56. data/test/dummy/public/404.html +67 -0
  57. data/test/dummy/public/422.html +67 -0
  58. data/test/dummy/public/500.html +66 -0
  59. data/test/dummy/public/favicon.ico +0 -0
  60. data/test/dummy/test/controllers/static_controller_test.rb +10 -0
  61. data/test/dummy/test/javascripts_test.rb +10 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/0acf6e0fcfb87a29982c83363a760ea2 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/1a15704eaa1c14a6d2846e0459d39620 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/2cdcb1089fe8a96b07fa1beb4356a3f2 +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/2ef169e1ab9b9980404c3f7bd7b16cd1 +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/367d5b1082a05f657fdcbd0d931b2106 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/3bf3fee418f5d59cf1ffc9714a24adb1 +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/3dd2162fc075eb90be4f9a4b9b72c507 +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/4d18ce44cd3685dbdc234c5472a1daf1 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/514d78348a3455227ab8e55350c3a5a1 +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/637535bc75eebbdd88420b8e0e44d762 +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/69f0719ed02418a5c17b6aec35bb6676 +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/849d0901265a8754d4b814e87f81a0ec +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/86d6122086e841be22a0d11f2f5a36f5 +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/88c194c8ea1c2522e4ffea2489397d33 +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/8aefced0e6c8fb60872182f48754b920 +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/8ba2ce2c70baffd95c2d9daa5f40f18c +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/95c9828c8be1757c1ca64fff801d8305 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/96fd7f7738bd89f82c3fe2f00327f788 +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/a36ecdd9085412034342bcac68445be1 +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/af6c9ec9ad00087923cc7bb1ae2b10b5 +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/b42307b0386530d4bd213f297d82477c +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/b8ee79f719185653fcd021e27cacbc9c +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/ba2e0e4c3e95ac831d774f005a70b5e4 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/c1a3b329f54c41592a0854a40f8425e0 +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/cc42117866c4ce5ebdea0982739a8665 +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/deeb8a0b86807fc12c0f907700258799 +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/efbfd84424b5a4f22bd23b73db9591a2 +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  95. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  96. data/test/dummy/tmp/cache/assets/test/sprockets/1a15704eaa1c14a6d2846e0459d39620 +0 -0
  97. data/test/dummy/tmp/cache/assets/test/sprockets/2cdcb1089fe8a96b07fa1beb4356a3f2 +0 -0
  98. data/test/dummy/tmp/cache/assets/test/sprockets/2ef169e1ab9b9980404c3f7bd7b16cd1 +0 -0
  99. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  100. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  101. data/test/dummy/tmp/cache/assets/test/sprockets/3bf3fee418f5d59cf1ffc9714a24adb1 +0 -0
  102. data/test/dummy/tmp/cache/assets/test/sprockets/3dd2162fc075eb90be4f9a4b9b72c507 +0 -0
  103. data/test/dummy/tmp/cache/assets/test/sprockets/637535bc75eebbdd88420b8e0e44d762 +0 -0
  104. data/test/dummy/tmp/cache/assets/test/sprockets/69f0719ed02418a5c17b6aec35bb6676 +0 -0
  105. data/test/dummy/tmp/cache/assets/test/sprockets/8ba2ce2c70baffd95c2d9daa5f40f18c +0 -0
  106. data/test/dummy/tmp/cache/assets/test/sprockets/95c9828c8be1757c1ca64fff801d8305 +0 -0
  107. data/test/dummy/tmp/cache/assets/test/sprockets/96fd7f7738bd89f82c3fe2f00327f788 +0 -0
  108. data/test/dummy/tmp/cache/assets/test/sprockets/af6c9ec9ad00087923cc7bb1ae2b10b5 +0 -0
  109. data/test/dummy/tmp/cache/assets/test/sprockets/b42307b0386530d4bd213f297d82477c +0 -0
  110. data/test/dummy/tmp/cache/assets/test/sprockets/b8ee79f719185653fcd021e27cacbc9c +0 -0
  111. data/test/dummy/tmp/cache/assets/test/sprockets/ba2e0e4c3e95ac831d774f005a70b5e4 +0 -0
  112. data/test/dummy/tmp/cache/assets/test/sprockets/c1a3b329f54c41592a0854a40f8425e0 +0 -0
  113. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  114. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  115. data/test/dummy/tmp/cache/assets/test/sprockets/efbfd84424b5a4f22bd23b73db9591a2 +0 -0
  116. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  117. data/test/dummy/tmp/generators/config/analytics.yml +41 -0
  118. data/test/flowmor_analytics_test.rb +4 -0
  119. data/test/integration/navigation_test.rb +10 -0
  120. data/test/lib/generators/install_generator_test.rb +14 -0
  121. data/test/test_helper.rb +15 -0
  122. metadata +300 -0
@@ -0,0 +1,747 @@
1
+  (0.1ms) begin transaction
2
+ --------------------------------
3
+ FlowmorAnalyticsTest: test_truth
4
+ --------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ --------------------------------
8
+ FlowmorAnalyticsTest: test_truth
9
+ --------------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ -------------------------------------------
13
+ StaticControllerTest: test_should_get_index
14
+ -------------------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.0ms) begin transaction
17
+ --------------------------------
18
+ FlowmorAnalyticsTest: test_truth
19
+ --------------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ --------------------------------
23
+ FlowmorAnalyticsTest: test_truth
24
+ --------------------------------
25
+  (0.0ms) rollback transaction
26
+  (0.0ms) begin transaction
27
+ -------------------------------------------
28
+ StaticControllerTest: test_should_get_index
29
+ -------------------------------------------
30
+  (0.1ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ --------------------------------
33
+ FlowmorAnalyticsTest: test_truth
34
+ --------------------------------
35
+  (0.0ms) rollback transaction
36
+  (0.1ms) begin transaction
37
+ -------------------------------------------
38
+ StaticControllerTest: test_should_get_index
39
+ -------------------------------------------
40
+ Processing by StaticController#index as HTML
41
+ Rendered static/index.html.erb within layouts/application (1.5ms)
42
+ Completed 500 Internal Server Error in 28ms
43
+  (0.1ms) rollback transaction
44
+  (0.1ms) begin transaction
45
+ --------------------------------
46
+ FlowmorAnalyticsTest: test_truth
47
+ --------------------------------
48
+  (0.0ms) rollback transaction
49
+  (0.0ms) begin transaction
50
+ -------------------------------------------
51
+ StaticControllerTest: test_should_get_index
52
+ -------------------------------------------
53
+ Processing by StaticController#index as HTML
54
+ Rendered static/index.html.erb within layouts/application (1.2ms)
55
+ Completed 500 Internal Server Error in 21ms
56
+  (0.1ms) rollback transaction
57
+  (0.1ms) begin transaction
58
+ --------------------------------
59
+ FlowmorAnalyticsTest: test_truth
60
+ --------------------------------
61
+  (0.0ms) rollback transaction
62
+  (0.0ms) begin transaction
63
+ -------------------------------------------
64
+ StaticControllerTest: test_should_get_index
65
+ -------------------------------------------
66
+ Processing by StaticController#index as HTML
67
+ Rendered static/index.html.erb within layouts/application (1.2ms)
68
+ Completed 500 Internal Server Error in 22ms
69
+  (0.1ms) rollback transaction
70
+  (0.1ms) begin transaction
71
+ --------------------------------
72
+ FlowmorAnalyticsTest: test_truth
73
+ --------------------------------
74
+  (0.1ms) rollback transaction
75
+  (0.1ms) begin transaction
76
+ -------------------------------------------
77
+ StaticControllerTest: test_should_get_index
78
+ -------------------------------------------
79
+ Processing by StaticController#index as HTML
80
+ Rendered static/index.html.erb within layouts/application (1.2ms)
81
+ Completed 500 Internal Server Error in 21ms
82
+  (0.1ms) rollback transaction
83
+  (0.1ms) begin transaction
84
+ -------------------------------------------
85
+ StaticControllerTest: test_should_get_index
86
+ -------------------------------------------
87
+ Processing by StaticController#index as HTML
88
+ Rendered static/index.html.erb within layouts/application (1.2ms)
89
+ Completed 500 Internal Server Error in 24ms
90
+  (0.1ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ --------------------------------
93
+ FlowmorAnalyticsTest: test_truth
94
+ --------------------------------
95
+  (0.0ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ --------------------------------
98
+ FlowmorAnalyticsTest: test_truth
99
+ --------------------------------
100
+  (0.0ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ --------------------------------
103
+ FlowmorAnalyticsTest: test_truth
104
+ --------------------------------
105
+  (0.1ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ --------------------------------
108
+ FlowmorAnalyticsTest: test_truth
109
+ --------------------------------
110
+  (0.0ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ --------------------------------
113
+ FlowmorAnalyticsTest: test_truth
114
+ --------------------------------
115
+  (0.0ms) rollback transaction
116
+  (0.1ms) begin transaction
117
+ -------------------------------------------
118
+ StaticControllerTest: test_should_get_index
119
+ -------------------------------------------
120
+ Processing by StaticController#index as HTML
121
+ Rendered static/index.html.erb within layouts/application (1.5ms)
122
+ Completed 200 OK in 25ms (Views: 24.9ms | ActiveRecord: 0.0ms)
123
+  (0.1ms) rollback transaction
124
+  (0.1ms) begin transaction
125
+ --------------------------------
126
+ FlowmorAnalyticsTest: test_truth
127
+ --------------------------------
128
+  (0.1ms) rollback transaction
129
+  (0.1ms) begin transaction
130
+ --------------------------------
131
+ FlowmorAnalyticsTest: test_truth
132
+ --------------------------------
133
+  (0.0ms) rollback transaction
134
+  (0.0ms) begin transaction
135
+ -------------------------------------------
136
+ StaticControllerTest: test_should_get_index
137
+ -------------------------------------------
138
+ Processing by StaticController#index as HTML
139
+ Rendered static/index.html.erb within layouts/application (1.9ms)
140
+ Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms)
141
+  (0.1ms) rollback transaction
142
+  (0.1ms) begin transaction
143
+ --------------------------------
144
+ FlowmorAnalyticsTest: test_truth
145
+ --------------------------------
146
+  (0.0ms) rollback transaction
147
+  (0.0ms) begin transaction
148
+ -------------------------------------------
149
+ StaticControllerTest: test_should_get_index
150
+ -------------------------------------------
151
+ Processing by StaticController#index as HTML
152
+ Rendered static/index.html.erb within layouts/application (1.6ms)
153
+ Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms)
154
+  (0.1ms) rollback transaction
155
+  (0.1ms) begin transaction
156
+ --------------------------------
157
+ FlowmorAnalyticsTest: test_truth
158
+ --------------------------------
159
+  (0.0ms) rollback transaction
160
+  (0.0ms) begin transaction
161
+ -------------------------------------------
162
+ StaticControllerTest: test_should_get_index
163
+ -------------------------------------------
164
+ Processing by StaticController#index as HTML
165
+ Rendered static/index.html.erb within layouts/application (1.2ms)
166
+ Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.0ms)
167
+  (0.1ms) rollback transaction
168
+  (0.1ms) begin transaction
169
+ --------------------------------
170
+ FlowmorAnalyticsTest: test_truth
171
+ --------------------------------
172
+  (0.0ms) rollback transaction
173
+  (0.0ms) begin transaction
174
+ -------------------------------------------
175
+ StaticControllerTest: test_should_get_index
176
+ -------------------------------------------
177
+ Processing by StaticController#index as HTML
178
+ Rendered static/index.html.erb within layouts/application (1.2ms)
179
+ Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
180
+  (0.1ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ -------------------------------------------
183
+ StaticControllerTest: test_should_get_index
184
+ -------------------------------------------
185
+ Processing by StaticController#index as HTML
186
+ Rendered static/index.html.erb within layouts/application (1.3ms)
187
+ Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
188
+  (0.1ms) rollback transaction
189
+  (0.0ms) begin transaction
190
+ --------------------------------
191
+ FlowmorAnalyticsTest: test_truth
192
+ --------------------------------
193
+  (0.0ms) rollback transaction
194
+  (0.1ms) begin transaction
195
+ -------------------------------------------
196
+ StaticControllerTest: test_should_get_index
197
+ -------------------------------------------
198
+ Processing by StaticController#index as HTML
199
+ Rendered static/index.html.erb within layouts/application (1.6ms)
200
+ Completed 200 OK in 21ms (Views: 21.2ms | ActiveRecord: 0.0ms)
201
+  (0.1ms) rollback transaction
202
+  (0.1ms) begin transaction
203
+ --------------------------------
204
+ FlowmorAnalyticsTest: test_truth
205
+ --------------------------------
206
+  (0.0ms) rollback transaction
207
+  (0.1ms) begin transaction
208
+ -------------------------------------------
209
+ StaticControllerTest: test_should_get_index
210
+ -------------------------------------------
211
+ Processing by StaticController#index as HTML
212
+ Rendered static/index.html.erb within layouts/application (1.4ms)
213
+ Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
214
+  (0.2ms) rollback transaction
215
+  (0.1ms) begin transaction
216
+ --------------------------------
217
+ FlowmorAnalyticsTest: test_truth
218
+ --------------------------------
219
+  (0.0ms) rollback transaction
220
+  (0.1ms) begin transaction
221
+ --------------------------------
222
+ FlowmorAnalyticsTest: test_truth
223
+ --------------------------------
224
+  (0.1ms) rollback transaction
225
+  (0.1ms) begin transaction
226
+ -------------------------------------------
227
+ StaticControllerTest: test_should_get_index
228
+ -------------------------------------------
229
+ Processing by StaticController#index as HTML
230
+ Rendered static/index.html.erb within layouts/application (1.5ms)
231
+ Completed 200 OK in 21ms (Views: 21.2ms | ActiveRecord: 0.0ms)
232
+  (0.2ms) rollback transaction
233
+  (0.1ms) begin transaction
234
+ --------------------------------
235
+ FlowmorAnalyticsTest: test_truth
236
+ --------------------------------
237
+  (0.0ms) rollback transaction
238
+  (0.1ms) begin transaction
239
+ -------------------------------------------
240
+ StaticControllerTest: test_should_get_index
241
+ -------------------------------------------
242
+ Processing by StaticController#index as HTML
243
+ Rendered static/index.html.erb within layouts/application (1.3ms)
244
+ Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
245
+  (0.1ms) rollback transaction
246
+  (0.1ms) begin transaction
247
+ -------------------------------------------
248
+ StaticControllerTest: test_should_get_index
249
+ -------------------------------------------
250
+ Processing by StaticController#index as HTML
251
+ Rendered static/index.html.erb within layouts/application (1.3ms)
252
+ Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
253
+  (0.1ms) rollback transaction
254
+  (0.0ms) begin transaction
255
+ --------------------------------
256
+ FlowmorAnalyticsTest: test_truth
257
+ --------------------------------
258
+  (0.0ms) rollback transaction
259
+  (0.0ms) begin transaction
260
+ -----------------------
261
+ JavascriptsTest: test_/
262
+ -----------------------
263
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:53:34 -0400
264
+ Processing by StaticController#index as HTML
265
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
266
+  (0.1ms) rollback transaction
267
+  (0.1ms) begin transaction
268
+ -------------------------------------------
269
+ StaticControllerTest: test_should_get_index
270
+ -------------------------------------------
271
+ Processing by StaticController#index as HTML
272
+ Rendered static/index.html.erb within layouts/application (1.6ms)
273
+ Completed 200 OK in 22ms (Views: 21.5ms | ActiveRecord: 0.0ms)
274
+  (0.1ms) rollback transaction
275
+  (0.0ms) begin transaction
276
+ -----------------------
277
+ JavascriptsTest: test_/
278
+ -----------------------
279
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:54:06 -0400
280
+ Processing by StaticController#index as HTML
281
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
282
+  (0.1ms) rollback transaction
283
+  (0.0ms) begin transaction
284
+ --------------------------------
285
+ FlowmorAnalyticsTest: test_truth
286
+ --------------------------------
287
+  (0.0ms) rollback transaction
288
+  (0.1ms) begin transaction
289
+ -----------------------
290
+ JavascriptsTest: test_/
291
+ -----------------------
292
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:55:02 -0400
293
+ Processing by StaticController#index as HTML
294
+ Rendered static/index.html.erb within layouts/application (1.4ms)
295
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
296
+  (0.1ms) rollback transaction
297
+  (0.0ms) begin transaction
298
+ -------------------------------------------
299
+ StaticControllerTest: test_should_get_index
300
+ -------------------------------------------
301
+ Processing by StaticController#index as HTML
302
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
303
+  (0.1ms) rollback transaction
304
+  (0.1ms) begin transaction
305
+ -------------------------------------------
306
+ StaticControllerTest: test_should_get_index
307
+ -------------------------------------------
308
+ Processing by StaticController#index as HTML
309
+ Rendered static/index.html.erb within layouts/application (1.2ms)
310
+ Completed 200 OK in 18ms (Views: 17.6ms | ActiveRecord: 0.0ms)
311
+  (0.1ms) rollback transaction
312
+  (0.1ms) begin transaction
313
+ -----------------------
314
+ JavascriptsTest: test_/
315
+ -----------------------
316
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:55:28 -0400
317
+ Processing by StaticController#index as HTML
318
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
319
+  (0.4ms) rollback transaction
320
+  (0.1ms) begin transaction
321
+ -------------------------------------------
322
+ StaticControllerTest: test_should_get_index
323
+ -------------------------------------------
324
+ Processing by StaticController#index as HTML
325
+ Rendered static/index.html.erb within layouts/application (1.5ms)
326
+ Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.0ms)
327
+  (0.1ms) rollback transaction
328
+  (0.0ms) begin transaction
329
+ -----------------------
330
+ JavascriptsTest: test_/
331
+ -----------------------
332
+ Started GET "/assets/javascripts/application.js" for 127.0.0.1 at 2014-08-12 12:56:19 -0400
333
+  (0.1ms) rollback transaction
334
+  (0.1ms) begin transaction
335
+ -----------------------
336
+ JavascriptsTest: test_/
337
+ -----------------------
338
+ Started GET "/javascripts/application.js" for 127.0.0.1 at 2014-08-12 12:56:36 -0400
339
+  (0.1ms) rollback transaction
340
+  (0.0ms) begin transaction
341
+ -------------------------------------------
342
+ StaticControllerTest: test_should_get_index
343
+ -------------------------------------------
344
+ Processing by StaticController#index as HTML
345
+ Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
346
+  (0.1ms) rollback transaction
347
+  (0.1ms) begin transaction
348
+ -------------------------------------------
349
+ StaticControllerTest: test_should_get_index
350
+ -------------------------------------------
351
+ Processing by StaticController#index as HTML
352
+ Rendered static/index.html.erb within layouts/application (1.6ms)
353
+ Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
354
+  (0.1ms) rollback transaction
355
+  (0.1ms) begin transaction
356
+ -----------------------
357
+ JavascriptsTest: test_/
358
+ -----------------------
359
+ Started GET "/javascripts/flowmor_analytics.js" for 127.0.0.1 at 2014-08-12 12:57:00 -0400
360
+  (0.1ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ -------------------------------------------
363
+ StaticControllerTest: test_should_get_index
364
+ -------------------------------------------
365
+ Processing by StaticController#index as HTML
366
+ Rendered static/index.html.erb within layouts/application (1.8ms)
367
+ Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.0ms)
368
+  (0.1ms) rollback transaction
369
+  (0.0ms) begin transaction
370
+ -----------------------
371
+ JavascriptsTest: test_/
372
+ -----------------------
373
+ Started GET "/assets/javascripts/flowmor_analytics.js" for 127.0.0.1 at 2014-08-12 12:57:18 -0400
374
+  (0.1ms) rollback transaction
375
+  (0.1ms) begin transaction
376
+ -------------------------------------------
377
+ StaticControllerTest: test_should_get_index
378
+ -------------------------------------------
379
+ Processing by StaticController#index as HTML
380
+ Rendered static/index.html.erb within layouts/application (1.6ms)
381
+ Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms)
382
+  (0.1ms) rollback transaction
383
+  (0.1ms) begin transaction
384
+ -----------------------
385
+ JavascriptsTest: test_/
386
+ -----------------------
387
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:58:08 -0400
388
+ Processing by StaticController#index as HTML
389
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
390
+  (0.1ms) rollback transaction
391
+  (0.1ms) begin transaction
392
+ -------------------------------------------
393
+ StaticControllerTest: test_should_get_index
394
+ -------------------------------------------
395
+ Processing by StaticController#index as HTML
396
+ Rendered static/index.html.erb within layouts/application (1.3ms)
397
+ Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
398
+  (0.1ms) rollback transaction
399
+  (0.0ms) begin transaction
400
+ -----------------------
401
+ JavascriptsTest: test_/
402
+ -----------------------
403
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:58:27 -0400
404
+ Processing by StaticController#index as HTML
405
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
406
+  (0.2ms) rollback transaction
407
+  (0.1ms) begin transaction
408
+ -------------------------------------------
409
+ StaticControllerTest: test_should_get_index
410
+ -------------------------------------------
411
+ Processing by StaticController#index as HTML
412
+ Rendered static/index.html.erb within layouts/application (1.2ms)
413
+ Completed 200 OK in 17ms (Views: 17.1ms | ActiveRecord: 0.0ms)
414
+  (0.1ms) rollback transaction
415
+  (0.0ms) begin transaction
416
+ -----------------------
417
+ JavascriptsTest: test_/
418
+ -----------------------
419
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:58:46 -0400
420
+ Processing by StaticController#index as HTML
421
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
422
+  (0.1ms) rollback transaction
423
+  (0.1ms) begin transaction
424
+ -----------------------
425
+ JavascriptsTest: test_/
426
+ -----------------------
427
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:59:15 -0400
428
+ Processing by StaticController#index as HTML
429
+ Rendered static/index.html.erb within layouts/application (1.4ms)
430
+ Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
431
+  (0.1ms) rollback transaction
432
+  (0.0ms) begin transaction
433
+ -------------------------------------------
434
+ StaticControllerTest: test_should_get_index
435
+ -------------------------------------------
436
+ Processing by StaticController#index as HTML
437
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
438
+  (0.1ms) rollback transaction
439
+  (0.1ms) begin transaction
440
+ -------------------------------------------
441
+ StaticControllerTest: test_should_get_index
442
+ -------------------------------------------
443
+ Processing by StaticController#index as HTML
444
+ Rendered static/index.html.erb within layouts/application (1.5ms)
445
+ Completed 200 OK in 21ms (Views: 20.7ms | ActiveRecord: 0.0ms)
446
+  (0.1ms) rollback transaction
447
+  (0.0ms) begin transaction
448
+ -----------------------
449
+ JavascriptsTest: test_/
450
+ -----------------------
451
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:59:31 -0400
452
+ Processing by StaticController#index as HTML
453
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
454
+  (0.1ms) rollback transaction
455
+  (0.1ms) begin transaction
456
+ -----------------------
457
+ JavascriptsTest: test_/
458
+ -----------------------
459
+ Started GET "/" for 127.0.0.1 at 2014-08-12 12:59:45 -0400
460
+ Processing by StaticController#index as HTML
461
+ Rendered static/index.html.erb within layouts/application (1.6ms)
462
+ Completed 200 OK in 21ms (Views: 20.3ms | ActiveRecord: 0.0ms)
463
+  (0.1ms) rollback transaction
464
+  (0.0ms) begin transaction
465
+ -------------------------------------------
466
+ StaticControllerTest: test_should_get_index
467
+ -------------------------------------------
468
+ Processing by StaticController#index as HTML
469
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
470
+  (0.1ms) rollback transaction
471
+  (0.1ms) begin transaction
472
+ -----------------------
473
+ JavascriptsTest: test_/
474
+ -----------------------
475
+ Started GET "/" for 127.0.0.1 at 2014-08-12 13:00:16 -0400
476
+ Processing by StaticController#index as HTML
477
+ Rendered static/index.html.erb within layouts/application (1.5ms)
478
+ Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms)
479
+  (0.1ms) rollback transaction
480
+  (0.0ms) begin transaction
481
+ -------------------------------------------
482
+ StaticControllerTest: test_should_get_index
483
+ -------------------------------------------
484
+ Processing by StaticController#index as HTML
485
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
486
+  (0.1ms) rollback transaction
487
+  (0.1ms) begin transaction
488
+ -----------------------
489
+ JavascriptsTest: test_/
490
+ -----------------------
491
+ Started GET "/" for 127.0.0.1 at 2014-08-12 13:00:30 -0400
492
+ Processing by StaticController#index as HTML
493
+ Rendered static/index.html.erb within layouts/application (1.7ms)
494
+ Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms)
495
+  (0.2ms) rollback transaction
496
+  (0.2ms) begin transaction
497
+ -------------------------------------------
498
+ StaticControllerTest: test_should_get_index
499
+ -------------------------------------------
500
+ Processing by StaticController#index as HTML
501
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
502
+  (0.1ms) rollback transaction
503
+  (0.1ms) begin transaction
504
+ -----------------------
505
+ JavascriptsTest: test_/
506
+ -----------------------
507
+ Started GET "/" for 127.0.0.1 at 2014-08-12 13:01:38 -0400
508
+ Processing by StaticController#index as HTML
509
+ Rendered static/index.html.erb within layouts/application (1.7ms)
510
+ Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.0ms)
511
+  (0.1ms) rollback transaction
512
+  (0.0ms) begin transaction
513
+ -------------------------------------------
514
+ StaticControllerTest: test_should_get_index
515
+ -------------------------------------------
516
+ Processing by StaticController#index as HTML
517
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
518
+  (0.1ms) rollback transaction
519
+  (0.1ms) begin transaction
520
+ -------------------------------------------
521
+ StaticControllerTest: test_should_get_index
522
+ -------------------------------------------
523
+ Processing by StaticController#index as HTML
524
+ Rendered static/index.html.erb within layouts/application (1.2ms)
525
+ Completed 200 OK in 17ms (Views: 17.1ms | ActiveRecord: 0.0ms)
526
+  (0.1ms) rollback transaction
527
+  (0.0ms) begin transaction
528
+ -----------------------
529
+ JavascriptsTest: test_/
530
+ -----------------------
531
+ Started GET "/" for 127.0.0.1 at 2014-08-12 13:02:02 -0400
532
+ Processing by StaticController#index as HTML
533
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
534
+  (0.1ms) rollback transaction
535
+  (0.1ms) begin transaction
536
+ -----------------------
537
+ JavascriptsTest: test_/
538
+ -----------------------
539
+ Started GET "/" for 127.0.0.1 at 2014-08-12 13:06:17 -0400
540
+ Processing by StaticController#index as HTML
541
+ Rendered static/index.html.erb within layouts/application (1.2ms)
542
+ Completed 200 OK in 18ms (Views: 17.4ms | ActiveRecord: 0.0ms)
543
+  (0.1ms) rollback transaction
544
+  (0.0ms) begin transaction
545
+ -------------------------------------------
546
+ StaticControllerTest: test_should_get_index
547
+ -------------------------------------------
548
+ Processing by StaticController#index as HTML
549
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
550
+  (0.1ms) rollback transaction
551
+  (0.1ms) begin transaction
552
+ -------------------------------------------
553
+ StaticControllerTest: test_should_get_index
554
+ -------------------------------------------
555
+ Processing by StaticController#index as HTML
556
+ Rendered static/index.html.erb within layouts/application (1.3ms)
557
+ Completed 200 OK in 34ms (Views: 33.3ms | ActiveRecord: 0.0ms)
558
+  (0.1ms) rollback transaction
559
+  (0.0ms) begin transaction
560
+ -----------------------
561
+ JavascriptsTest: test_/
562
+ -----------------------
563
+ Started GET "/" for 127.0.0.1 at 2014-08-12 13:09:39 -0400
564
+ Processing by StaticController#index as HTML
565
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
566
+  (0.1ms) rollback transaction
567
+  (0.1ms) begin transaction
568
+ -------------------------------------------
569
+ StaticControllerTest: test_should_get_index
570
+ -------------------------------------------
571
+ Processing by StaticController#index as HTML
572
+ Rendered static/index.html.erb within layouts/application (1.6ms)
573
+ Completed 500 Internal Server Error in 27ms
574
+  (0.1ms) rollback transaction
575
+  (0.0ms) begin transaction
576
+ -----------------------
577
+ JavascriptsTest: test_/
578
+ -----------------------
579
+ Started GET "/" for 127.0.0.1 at 2014-08-13 19:12:52 -0400
580
+ Processing by StaticController#index as HTML
581
+ Completed 500 Internal Server Error in 10ms
582
+  (0.1ms) rollback transaction
583
+  (0.1ms) begin transaction
584
+ -----------------------
585
+ JavascriptsTest: test_/
586
+ -----------------------
587
+ Started GET "/" for 127.0.0.1 at 2014-08-13 19:14:18 -0400
588
+ Processing by StaticController#index as HTML
589
+ Rendered static/index.html.erb within layouts/application (1.2ms)
590
+ Completed 500 Internal Server Error in 24ms
591
+  (0.1ms) rollback transaction
592
+  (0.0ms) begin transaction
593
+ -------------------------------------------
594
+ StaticControllerTest: test_should_get_index
595
+ -------------------------------------------
596
+ Processing by StaticController#index as HTML
597
+ Completed 500 Internal Server Error in 9ms
598
+  (0.1ms) rollback transaction
599
+  (0.1ms) begin transaction
600
+ -----------------------
601
+ JavascriptsTest: test_/
602
+ -----------------------
603
+ Started GET "/" for 127.0.0.1 at 2014-08-13 19:14:32 -0400
604
+ Processing by StaticController#index as HTML
605
+ Rendered static/index.html.erb within layouts/application (1.2ms)
606
+ Completed 500 Internal Server Error in 23ms
607
+  (0.1ms) rollback transaction
608
+  (0.0ms) begin transaction
609
+ -------------------------------------------
610
+ StaticControllerTest: test_should_get_index
611
+ -------------------------------------------
612
+ Processing by StaticController#index as HTML
613
+ Completed 500 Internal Server Error in 9ms
614
+  (0.1ms) rollback transaction
615
+  (0.1ms) begin transaction
616
+ -----------------------
617
+ JavascriptsTest: test_/
618
+ -----------------------
619
+ Started GET "/" for 127.0.0.1 at 2014-08-13 20:13:57 -0400
620
+ Processing by StaticController#index as HTML
621
+ Rendered static/index.html.erb within layouts/application (1.6ms)
622
+ Completed 500 Internal Server Error in 27ms
623
+  (0.1ms) rollback transaction
624
+  (0.0ms) begin transaction
625
+ -------------------------------------------
626
+ StaticControllerTest: test_should_get_index
627
+ -------------------------------------------
628
+ Processing by StaticController#index as HTML
629
+ Completed 500 Internal Server Error in 9ms
630
+  (0.1ms) rollback transaction
631
+  (0.1ms) begin transaction
632
+ -----------------------
633
+ JavascriptsTest: test_/
634
+ -----------------------
635
+ Started GET "/" for 127.0.0.1 at 2014-08-13 20:15:27 -0400
636
+ Processing by StaticController#index as HTML
637
+ Rendered static/index.html.erb within layouts/application (1.2ms)
638
+ Completed 500 Internal Server Error in 29ms
639
+  (0.1ms) rollback transaction
640
+  (0.1ms) begin transaction
641
+ -------------------------------------------
642
+ StaticControllerTest: test_should_get_index
643
+ -------------------------------------------
644
+ Processing by StaticController#index as HTML
645
+ Completed 500 Internal Server Error in 14ms
646
+  (0.1ms) rollback transaction
647
+  (0.1ms) begin transaction
648
+ -------------------------------------------
649
+ StaticControllerTest: test_should_get_index
650
+ -------------------------------------------
651
+ Processing by StaticController#index as HTML
652
+ Rendered static/index.html.erb within layouts/application (1.2ms)
653
+ Completed 500 Internal Server Error in 28ms
654
+  (0.1ms) rollback transaction
655
+  (0.0ms) begin transaction
656
+ -----------------------
657
+ JavascriptsTest: test_/
658
+ -----------------------
659
+ Started GET "/" for 127.0.0.1 at 2014-08-13 20:16:01 -0400
660
+ Processing by StaticController#index as HTML
661
+ Completed 500 Internal Server Error in 14ms
662
+  (0.1ms) rollback transaction
663
+  (0.1ms) begin transaction
664
+ -----------------------
665
+ JavascriptsTest: test_/
666
+ -----------------------
667
+ Started GET "/" for 127.0.0.1 at 2014-08-13 20:34:29 -0400
668
+ Processing by StaticController#index as HTML
669
+ Rendered static/index.html.erb within layouts/application (1.3ms)
670
+ Completed 200 OK in 31ms (Views: 30.7ms | ActiveRecord: 0.0ms)
671
+  (0.1ms) rollback transaction
672
+  (0.0ms) begin transaction
673
+ -------------------------------------------
674
+ StaticControllerTest: test_should_get_index
675
+ -------------------------------------------
676
+ Processing by StaticController#index as HTML
677
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
678
+  (0.1ms) rollback transaction
679
+  (0.1ms) begin transaction
680
+ -----------------------
681
+ JavascriptsTest: test_/
682
+ -----------------------
683
+ Started GET "/" for 127.0.0.1 at 2014-08-13 20:54:58 -0400
684
+ Processing by StaticController#index as HTML
685
+ Rendered static/index.html.erb within layouts/application (1.2ms)
686
+ Completed 500 Internal Server Error in 25ms
687
+  (0.1ms) rollback transaction
688
+  (0.0ms) begin transaction
689
+ -------------------------------------------
690
+ StaticControllerTest: test_should_get_index
691
+ -------------------------------------------
692
+ Processing by StaticController#index as HTML
693
+ Completed 500 Internal Server Error in 8ms
694
+  (0.1ms) rollback transaction
695
+  (0.1ms) begin transaction
696
+ -------------------------------------------
697
+ StaticControllerTest: test_should_get_index
698
+ -------------------------------------------
699
+ Processing by StaticController#index as HTML
700
+ Rendered static/index.html.erb within layouts/application (1.2ms)
701
+ Completed 200 OK in 30ms (Views: 30.2ms | ActiveRecord: 0.0ms)
702
+  (0.1ms) rollback transaction
703
+  (0.0ms) begin transaction
704
+ -----------------------
705
+ JavascriptsTest: test_/
706
+ -----------------------
707
+ Started GET "/" for 127.0.0.1 at 2014-08-13 20:58:53 -0400
708
+ Processing by StaticController#index as HTML
709
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
710
+  (0.1ms) rollback transaction
711
+  (0.1ms) begin transaction
712
+ -----------------------
713
+ JavascriptsTest: test_/
714
+ -----------------------
715
+ Started GET "/" for 127.0.0.1 at 2014-08-14 07:08:34 -0400
716
+ Processing by StaticController#index as HTML
717
+ Rendered static/index.html.erb within layouts/application (1.5ms)
718
+ Completed 200 OK in 36ms (Views: 35.6ms | ActiveRecord: 0.0ms)
719
+  (0.1ms) rollback transaction
720
+  (0.0ms) begin transaction
721
+ -------------------------------------------
722
+ StaticControllerTest: test_should_get_index
723
+ -------------------------------------------
724
+ Processing by StaticController#index as HTML
725
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
726
+  (0.1ms) rollback transaction
727
+  (0.1ms) begin transaction
728
+ --------------------------------------------------------
729
+ InstallGeneratorTest: test_generator_runs_without_errors
730
+ --------------------------------------------------------
731
+  (0.1ms) rollback transaction
732
+  (0.0ms) begin transaction
733
+ -----------------------
734
+ JavascriptsTest: test_/
735
+ -----------------------
736
+ Started GET "/" for 127.0.0.1 at 2014-08-14 07:08:55 -0400
737
+ Processing by StaticController#index as HTML
738
+ Rendered static/index.html.erb within layouts/application (1.2ms)
739
+ Completed 200 OK in 19ms (Views: 19.1ms | ActiveRecord: 0.0ms)
740
+  (0.1ms) rollback transaction
741
+  (0.0ms) begin transaction
742
+ -------------------------------------------
743
+ StaticControllerTest: test_should_get_index
744
+ -------------------------------------------
745
+ Processing by StaticController#index as HTML
746
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
747
+  (0.1ms) rollback transaction