flash_analytics 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +32 -0
- data/lib/flash_analytics/action_view_extensions.rb +27 -0
- data/lib/flash_analytics/configuration.rb +15 -0
- data/lib/flash_analytics/flash_hash_extensions.rb +29 -0
- data/lib/flash_analytics/version.rb +3 -0
- data/lib/flash_analytics.rb +9 -0
- data/lib/generators/flash_analytics/flash_analytics.rb +9 -0
- data/lib/generators/flash_analytics/install_generator.rb +7 -0
- data/lib/tasks/flash_analytics_tasks.rake +4 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/controllers/application_controller.rb +5 -0
- data/test/dummy/app/controllers/dummies_controller.rb +15 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/analytics/_test_analytics_one.html.erb +1 -0
- data/test/dummy/app/views/analytics/_test_analytics_two.html.erb +1 -0
- data/test/dummy/app/views/dummies/render_now.html.erb +2 -0
- data/test/dummy/app/views/dummies/result.html.erb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +78 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/assets.rb +8 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +63 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +463 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/flash_analytics_test.rb +50 -0
- data/test/test_helper.rb +15 -0
- metadata +154 -0
@@ -0,0 +1,63 @@
|
|
1
|
+
Rails.application.routes.draw do
|
2
|
+
resources :dummies do
|
3
|
+
collection do
|
4
|
+
get :result
|
5
|
+
get :redirect
|
6
|
+
get :render_now
|
7
|
+
end
|
8
|
+
end
|
9
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
10
|
+
# See how all your routes lay out with "rake routes".
|
11
|
+
|
12
|
+
# You can have the root of your site routed with "root"
|
13
|
+
# root 'welcome#index'
|
14
|
+
|
15
|
+
# Example of regular route:
|
16
|
+
# get 'products/:id' => 'catalog#view'
|
17
|
+
|
18
|
+
# Example of named route that can be invoked with purchase_url(id: product.id)
|
19
|
+
# get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
|
20
|
+
|
21
|
+
# Example resource route (maps HTTP verbs to controller actions automatically):
|
22
|
+
# resources :products
|
23
|
+
|
24
|
+
# Example resource route with options:
|
25
|
+
# resources :products do
|
26
|
+
# member do
|
27
|
+
# get 'short'
|
28
|
+
# post 'toggle'
|
29
|
+
# end
|
30
|
+
#
|
31
|
+
# collection do
|
32
|
+
# get 'sold'
|
33
|
+
# end
|
34
|
+
# end
|
35
|
+
|
36
|
+
# Example resource route with sub-resources:
|
37
|
+
# resources :products do
|
38
|
+
# resources :comments, :sales
|
39
|
+
# resource :seller
|
40
|
+
# end
|
41
|
+
|
42
|
+
# Example resource route with more complex sub-resources:
|
43
|
+
# resources :products do
|
44
|
+
# resources :comments
|
45
|
+
# resources :sales do
|
46
|
+
# get 'recent', on: :collection
|
47
|
+
# end
|
48
|
+
# end
|
49
|
+
|
50
|
+
# Example resource route with concerns:
|
51
|
+
# concern :toggleable do
|
52
|
+
# post 'toggle'
|
53
|
+
# end
|
54
|
+
# resources :posts, concerns: :toggleable
|
55
|
+
# resources :photos, concerns: :toggleable
|
56
|
+
|
57
|
+
# Example resource route within a namespace:
|
58
|
+
# namespace :admin do
|
59
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
60
|
+
# # (app/controllers/admin/products_controller.rb)
|
61
|
+
# resources :products
|
62
|
+
# end
|
63
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key is used for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
|
6
|
+
# Make sure the secret is at least 30 characters and all random,
|
7
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
8
|
+
# You can use `rake secret` to generate a secure secret key.
|
9
|
+
|
10
|
+
# Make sure the secrets in this file are kept private
|
11
|
+
# if you're sharing your code publicly.
|
12
|
+
|
13
|
+
development:
|
14
|
+
secret_key_base: 58ed63f10068e83b130babf26cd2bdc5b6ab996767380de68c1fee4a11408f3c5af2d5db8c8993cc9c60d5977b8a2591a0754741e9935628126d2973748f265c
|
15
|
+
|
16
|
+
test:
|
17
|
+
secret_key_base: 0c173b71aee9e42bae9dcb078f1966a70e3024c3153f9656adc4b54cc45d516600b3aed78818c69abad8431c1518f32cc53b7a8169caacd741252be6a7956e19
|
18
|
+
|
19
|
+
# Do not keep production secrets in the repository,
|
20
|
+
# instead read values from the environment.
|
21
|
+
production:
|
22
|
+
secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
|
File without changes
|
File without changes
|
@@ -0,0 +1,463 @@
|
|
1
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
2
|
+
-------------------------------------------
|
3
|
+
DummiesControllerTest: test_should_get_test
|
4
|
+
-------------------------------------------
|
5
|
+
Processing by DummiesController#test as HTML
|
6
|
+
Rendering dummies/test.html.erb
|
7
|
+
Rendered analytics/_test_analytics_one.html.erb (0.7ms)
|
8
|
+
Rendered analytics/_test_analytics_two.html.erb (0.5ms)
|
9
|
+
Rendered dummies/test.html.erb (11.9ms)
|
10
|
+
Completed 200 OK in 31ms (Views: 27.8ms | ActiveRecord: 0.0ms)
|
11
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
12
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
13
|
+
------------------------------
|
14
|
+
FlashAnalyticsTest: test_truth
|
15
|
+
------------------------------
|
16
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
17
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
18
|
+
----------------------------------------------------------
|
19
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
20
|
+
----------------------------------------------------------
|
21
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
22
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
23
|
+
----------------------------------------------------------
|
24
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
25
|
+
----------------------------------------------------------
|
26
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
27
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
28
|
+
-------------------------------------------
|
29
|
+
DummiesControllerTest: test_should_get_test
|
30
|
+
-------------------------------------------
|
31
|
+
Processing by DummiesController#test as HTML
|
32
|
+
Rendering dummies/test.html.erb
|
33
|
+
Rendered analytics/_test_analytics_one.html.erb (0.4ms)
|
34
|
+
Rendered analytics/_test_analytics_two.html.erb (0.6ms)
|
35
|
+
Rendered dummies/test.html.erb (12.9ms)
|
36
|
+
Completed 200 OK in 32ms (Views: 28.7ms | ActiveRecord: 0.0ms)
|
37
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
38
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
39
|
+
----------------------------------------------------------
|
40
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
41
|
+
----------------------------------------------------------
|
42
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
43
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
44
|
+
----------------------------------------------------------
|
45
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
46
|
+
----------------------------------------------------------
|
47
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
48
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
49
|
+
------------------------------
|
50
|
+
FlashAnalyticsTest: test_truth
|
51
|
+
------------------------------
|
52
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
53
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
54
|
+
----------------------------------------------------------
|
55
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
56
|
+
----------------------------------------------------------
|
57
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
58
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
59
|
+
----------------------------------------------------------
|
60
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
61
|
+
----------------------------------------------------------
|
62
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
63
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
64
|
+
------------------------------
|
65
|
+
FlashAnalyticsTest: test_truth
|
66
|
+
------------------------------
|
67
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
68
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
69
|
+
-------------------------------------------
|
70
|
+
DummiesControllerTest: test_should_get_test
|
71
|
+
-------------------------------------------
|
72
|
+
Processing by DummiesController#test as HTML
|
73
|
+
Rendering dummies/test.html.erb
|
74
|
+
Rendered analytics/_test_analytics_one.html.erb (0.5ms)
|
75
|
+
Rendered analytics/_test_analytics_two.html.erb (0.5ms)
|
76
|
+
Rendered dummies/test.html.erb (11.9ms)
|
77
|
+
Completed 200 OK in 31ms (Views: 27.0ms | ActiveRecord: 0.0ms)
|
78
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
79
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
80
|
+
------------------------------
|
81
|
+
FlashAnalyticsTest: test_truth
|
82
|
+
------------------------------
|
83
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
84
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
85
|
+
-------------------------------------------
|
86
|
+
DummiesControllerTest: test_should_get_test
|
87
|
+
-------------------------------------------
|
88
|
+
Processing by DummiesController#test as HTML
|
89
|
+
Rendering dummies/test.html.erb
|
90
|
+
Rendered analytics/_test_analytics_one.html.erb (0.6ms)
|
91
|
+
Rendered dummies/test.html.erb (8.1ms)
|
92
|
+
Completed 200 OK in 27ms (Views: 22.1ms | ActiveRecord: 0.0ms)
|
93
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
94
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
95
|
+
----------------------------------------------------------
|
96
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
97
|
+
----------------------------------------------------------
|
98
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
99
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
100
|
+
----------------------------------------------------------
|
101
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
102
|
+
----------------------------------------------------------
|
103
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
104
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
105
|
+
------------------------------
|
106
|
+
FlashAnalyticsTest: test_truth
|
107
|
+
------------------------------
|
108
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
109
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
110
|
+
-------------------------------------------
|
111
|
+
DummiesControllerTest: test_should_get_test
|
112
|
+
-------------------------------------------
|
113
|
+
Processing by DummiesController#test as HTML
|
114
|
+
Rendering dummies/test.html.erb
|
115
|
+
Rendered analytics/_test_analytics_one.html.erb (0.7ms)
|
116
|
+
Rendered analytics/_test_analytics_two.html.erb (0.5ms)
|
117
|
+
Rendered dummies/test.html.erb (11.6ms)
|
118
|
+
Completed 200 OK in 30ms (Views: 25.8ms | ActiveRecord: 0.0ms)
|
119
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
120
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
121
|
+
----------------------------------------------------------
|
122
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
123
|
+
----------------------------------------------------------
|
124
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
125
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
126
|
+
----------------------------------------------------------
|
127
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
128
|
+
----------------------------------------------------------
|
129
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
130
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
131
|
+
----------------------------------------------------------
|
132
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
133
|
+
----------------------------------------------------------
|
134
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
135
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
136
|
+
----------------------------------------------------------
|
137
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
138
|
+
----------------------------------------------------------
|
139
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
140
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
141
|
+
------------------------------
|
142
|
+
FlashAnalyticsTest: test_truth
|
143
|
+
------------------------------
|
144
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
145
|
+
[1m[35m (0.2ms)[0m [1m[36mbegin transaction[0m
|
146
|
+
-------------------------------------------
|
147
|
+
DummiesControllerTest: test_should_get_test
|
148
|
+
-------------------------------------------
|
149
|
+
Processing by DummiesController#test as HTML
|
150
|
+
Rendering dummies/test.html.erb
|
151
|
+
Rendered analytics/_test_analytics_one.html.erb (1.0ms)
|
152
|
+
Rendered analytics/_test_analytics_two.html.erb (0.8ms)
|
153
|
+
Rendered dummies/test.html.erb (13.1ms)
|
154
|
+
Completed 200 OK in 28ms (Views: 24.0ms | ActiveRecord: 0.0ms)
|
155
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
156
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
157
|
+
-------------------------------------------
|
158
|
+
DummiesControllerTest: test_should_get_test
|
159
|
+
-------------------------------------------
|
160
|
+
Processing by DummiesController#test as HTML
|
161
|
+
Rendering dummies/test.html.erb
|
162
|
+
Rendered analytics/_test_analytics_one.html.erb (0.4ms)
|
163
|
+
Rendered analytics/_test_analytics_two.html.erb (0.4ms)
|
164
|
+
Rendered dummies/test.html.erb (4.9ms)
|
165
|
+
Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
166
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
167
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
168
|
+
----------------------------------------------------------
|
169
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
170
|
+
----------------------------------------------------------
|
171
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
172
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
173
|
+
----------------------------------------------------------
|
174
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
175
|
+
----------------------------------------------------------
|
176
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
177
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
178
|
+
------------------------------
|
179
|
+
FlashAnalyticsTest: test_truth
|
180
|
+
------------------------------
|
181
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
182
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
183
|
+
-------------------------------------------
|
184
|
+
DummiesControllerTest: test_should_get_test
|
185
|
+
-------------------------------------------
|
186
|
+
Processing by DummiesController#test as HTML
|
187
|
+
Rendering dummies/test.html.erb
|
188
|
+
Rendered analytics/_test_analytics_one.html.erb (0.5ms)
|
189
|
+
Rendered analytics/_test_analytics_two.html.erb (0.6ms)
|
190
|
+
Rendered dummies/test.html.erb (12.2ms)
|
191
|
+
Completed 200 OK in 29ms (Views: 25.4ms | ActiveRecord: 0.0ms)
|
192
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
193
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
194
|
+
----------------------------------------------------------
|
195
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
196
|
+
----------------------------------------------------------
|
197
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
198
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
199
|
+
----------------------------------------------------------
|
200
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
201
|
+
----------------------------------------------------------
|
202
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
203
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
204
|
+
------------------------------
|
205
|
+
FlashAnalyticsTest: test_truth
|
206
|
+
------------------------------
|
207
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
208
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
209
|
+
-------------------------------------------
|
210
|
+
DummiesControllerTest: test_should_get_test
|
211
|
+
-------------------------------------------
|
212
|
+
Processing by DummiesController#test as HTML
|
213
|
+
Rendering dummies/test.html.erb
|
214
|
+
Rendered analytics/_test_analytics_one.html.erb (0.5ms)
|
215
|
+
Rendered analytics/_test_analytics_two.html.erb (0.5ms)
|
216
|
+
Rendered dummies/test.html.erb (11.5ms)
|
217
|
+
Completed 200 OK in 30ms (Views: 26.5ms | ActiveRecord: 0.0ms)
|
218
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
219
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
220
|
+
------------------------------
|
221
|
+
FlashAnalyticsTest: test_truth
|
222
|
+
------------------------------
|
223
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
224
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
225
|
+
----------------------------------------------------------
|
226
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
227
|
+
----------------------------------------------------------
|
228
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
229
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
230
|
+
----------------------------------------------------------
|
231
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
232
|
+
----------------------------------------------------------
|
233
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
234
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
235
|
+
-------------------------------------------
|
236
|
+
DummiesControllerTest: test_should_get_test
|
237
|
+
-------------------------------------------
|
238
|
+
Processing by DummiesController#test as HTML
|
239
|
+
Rendering dummies/test.html.erb
|
240
|
+
Rendered analytics/_test_analytics_one.html.erb (1.1ms)
|
241
|
+
Rendered analytics/_test_analytics_two.html.erb (0.6ms)
|
242
|
+
Rendered dummies/test.html.erb (13.2ms)
|
243
|
+
Completed 200 OK in 31ms (Views: 27.7ms | ActiveRecord: 0.0ms)
|
244
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
245
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
246
|
+
----------------------------------------------------------
|
247
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
248
|
+
----------------------------------------------------------
|
249
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
250
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
251
|
+
----------------------------------------------------------
|
252
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
253
|
+
----------------------------------------------------------
|
254
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
255
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
256
|
+
------------------------------
|
257
|
+
FlashAnalyticsTest: test_truth
|
258
|
+
------------------------------
|
259
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
260
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
261
|
+
-------------------------------------------
|
262
|
+
DummiesControllerTest: test_should_get_test
|
263
|
+
-------------------------------------------
|
264
|
+
Processing by DummiesController#test as HTML
|
265
|
+
Rendering dummies/test.html.erb
|
266
|
+
Rendered analytics/_test_analytics_one.html.erb (0.5ms)
|
267
|
+
Rendered analytics/_test_analytics_two.html.erb (0.6ms)
|
268
|
+
Rendered dummies/test.html.erb (13.7ms)
|
269
|
+
Completed 200 OK in 32ms (Views: 27.9ms | ActiveRecord: 0.0ms)
|
270
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
271
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
272
|
+
------------------------------
|
273
|
+
FlashAnalyticsTest: test_truth
|
274
|
+
------------------------------
|
275
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
276
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
277
|
+
-------------------------------------------
|
278
|
+
DummiesControllerTest: test_should_get_test
|
279
|
+
-------------------------------------------
|
280
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
281
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
282
|
+
------------------------------
|
283
|
+
FlashAnalyticsTest: test_truth
|
284
|
+
------------------------------
|
285
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
286
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
287
|
+
----------------------------------------------------------
|
288
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
289
|
+
----------------------------------------------------------
|
290
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
291
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
292
|
+
----------------------------------------------------------
|
293
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
294
|
+
----------------------------------------------------------
|
295
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
296
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
297
|
+
----------------------------------------------------------
|
298
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
299
|
+
----------------------------------------------------------
|
300
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
301
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
302
|
+
----------------------------------------------------------
|
303
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
304
|
+
----------------------------------------------------------
|
305
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
306
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
307
|
+
-------------------------------------------
|
308
|
+
DummiesControllerTest: test_should_get_test
|
309
|
+
-------------------------------------------
|
310
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
311
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
312
|
+
------------------------------
|
313
|
+
FlashAnalyticsTest: test_truth
|
314
|
+
------------------------------
|
315
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
316
|
+
[1m[35m (0.3ms)[0m [1m[36mbegin transaction[0m
|
317
|
+
-------------------------------------------
|
318
|
+
DummiesControllerTest: test_should_get_test
|
319
|
+
-------------------------------------------
|
320
|
+
Started GET "/dummies/test" for 127.0.0.1 at 2017-10-08 15:35:05 +0800
|
321
|
+
Processing by DummiesController#test as HTML
|
322
|
+
Rendering dummies/test.html.erb
|
323
|
+
Rendered analytics/_test_analytics_one.html.erb (0.5ms)
|
324
|
+
Rendered analytics/_test_analytics_two.html.erb (0.6ms)
|
325
|
+
Rendered dummies/test.html.erb (13.1ms)
|
326
|
+
Completed 200 OK in 40ms (Views: 28.9ms | ActiveRecord: 0.0ms)
|
327
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
328
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
329
|
+
------------------------------
|
330
|
+
FlashAnalyticsTest: test_truth
|
331
|
+
------------------------------
|
332
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
333
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
334
|
+
----------------------------------------------------------
|
335
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
336
|
+
----------------------------------------------------------
|
337
|
+
[1m[35m (0.2ms)[0m [1m[31mrollback transaction[0m
|
338
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
339
|
+
----------------------------------------------------------
|
340
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
341
|
+
----------------------------------------------------------
|
342
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
343
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
344
|
+
------------------------------
|
345
|
+
FlashAnalyticsTest: test_truth
|
346
|
+
------------------------------
|
347
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
348
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
349
|
+
-------------------------------------------
|
350
|
+
DummiesControllerTest: test_should_get_test
|
351
|
+
-------------------------------------------
|
352
|
+
Started GET "/dummies/redirect" for 127.0.0.1 at 2017-10-08 15:40:55 +0800
|
353
|
+
Processing by DummiesController#redirect as HTML
|
354
|
+
Redirected to
|
355
|
+
Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
|
356
|
+
[1m[35m (0.3ms)[0m [1m[31mrollback transaction[0m
|
357
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
358
|
+
----------------------------------------------------------
|
359
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
360
|
+
----------------------------------------------------------
|
361
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
362
|
+
[1m[35m (0.0ms)[0m [1m[36mbegin transaction[0m
|
363
|
+
----------------------------------------------------------
|
364
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
365
|
+
----------------------------------------------------------
|
366
|
+
[1m[35m (0.0ms)[0m [1m[31mrollback transaction[0m
|
367
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
368
|
+
------------------------------
|
369
|
+
FlashAnalyticsTest: test_truth
|
370
|
+
------------------------------
|
371
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
372
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
373
|
+
----------------------------------------------------------
|
374
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
375
|
+
----------------------------------------------------------
|
376
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
377
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
378
|
+
----------------------------------------------------------
|
379
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
380
|
+
----------------------------------------------------------
|
381
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
382
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
383
|
+
-------------------------------------------
|
384
|
+
DummiesControllerTest: test_should_get_test
|
385
|
+
-------------------------------------------
|
386
|
+
Started GET "/dummies/redirect" for 127.0.0.1 at 2017-10-08 15:41:30 +0800
|
387
|
+
Processing by DummiesController#redirect as HTML
|
388
|
+
Redirected to http://www.example.com/dummies/result
|
389
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
390
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
391
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
392
|
+
----------------------------------------------------------
|
393
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
394
|
+
----------------------------------------------------------
|
395
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
396
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
397
|
+
----------------------------------------------------------
|
398
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
399
|
+
----------------------------------------------------------
|
400
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
401
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
402
|
+
-------------------------------------------
|
403
|
+
DummiesControllerTest: test_should_get_test
|
404
|
+
-------------------------------------------
|
405
|
+
Started GET "/dummies/redirect" for 127.0.0.1 at 2017-10-08 15:43:03 +0800
|
406
|
+
Processing by DummiesController#redirect as HTML
|
407
|
+
Redirected to http://www.example.com/dummies/result
|
408
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.0ms)
|
409
|
+
Started GET "/dummies/result" for 127.0.0.1 at 2017-10-08 15:43:03 +0800
|
410
|
+
Processing by DummiesController#result as HTML
|
411
|
+
Rendering dummies/result.html.erb
|
412
|
+
Rendered analytics/_test_analytics_one.html.erb (0.6ms)
|
413
|
+
Rendered analytics/_test_analytics_two.html.erb (0.7ms)
|
414
|
+
Rendered dummies/result.html.erb (14.9ms)
|
415
|
+
Completed 200 OK in 34ms (Views: 29.8ms | ActiveRecord: 0.0ms)
|
416
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
417
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
418
|
+
------------------------------
|
419
|
+
FlashAnalyticsTest: test_truth
|
420
|
+
------------------------------
|
421
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
422
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
423
|
+
----------------------------------------------------------
|
424
|
+
FlashHashTest: test_flash_analytics_are_excluded_from_each
|
425
|
+
----------------------------------------------------------
|
426
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
427
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
428
|
+
----------------------------------------------------------
|
429
|
+
FlashHashTest: test_partial_is_successfully_added_to_flash
|
430
|
+
----------------------------------------------------------
|
431
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
432
|
+
[1m[35m (0.5ms)[0m [1m[36mbegin transaction[0m
|
433
|
+
------------------------------------------------------------------------------------------
|
434
|
+
DummiesControllerTest: test_add_analytics_partial_now_should_render_in_the_current_request
|
435
|
+
------------------------------------------------------------------------------------------
|
436
|
+
Started GET "/dummies/render_now" for 127.0.0.1 at 2017-10-08 15:49:52 +0800
|
437
|
+
Processing by DummiesController#render_now as HTML
|
438
|
+
Rendering dummies/render_now.html.erb
|
439
|
+
Rendered analytics/_test_analytics_one.html.erb (0.5ms)
|
440
|
+
Rendered dummies/render_now.html.erb (7.8ms)
|
441
|
+
Completed 200 OK in 38ms (Views: 24.6ms | ActiveRecord: 0.0ms)
|
442
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
443
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
444
|
+
------------------------------------------------------------------------------
|
445
|
+
DummiesControllerTest: test_add_analytics_partial_should_render_after_redirect
|
446
|
+
------------------------------------------------------------------------------
|
447
|
+
Started GET "/dummies/redirect" for 127.0.0.1 at 2017-10-08 15:49:52 +0800
|
448
|
+
Processing by DummiesController#redirect as HTML
|
449
|
+
Redirected to http://www.example.com/dummies/result
|
450
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
|
451
|
+
Started GET "/dummies/result" for 127.0.0.1 at 2017-10-08 15:49:52 +0800
|
452
|
+
Processing by DummiesController#result as HTML
|
453
|
+
Rendering dummies/result.html.erb
|
454
|
+
Rendered analytics/_test_analytics_one.html.erb (0.1ms)
|
455
|
+
Rendered analytics/_test_analytics_two.html.erb (0.9ms)
|
456
|
+
Rendered dummies/result.html.erb (8.1ms)
|
457
|
+
Completed 200 OK in 12ms (Views: 8.9ms | ActiveRecord: 0.0ms)
|
458
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
459
|
+
[1m[35m (0.1ms)[0m [1m[36mbegin transaction[0m
|
460
|
+
------------------------------
|
461
|
+
FlashAnalyticsTest: test_truth
|
462
|
+
------------------------------
|
463
|
+
[1m[35m (0.1ms)[0m [1m[31mrollback transaction[0m
|
@@ -0,0 +1,67 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>The page you were looking for doesn't exist (404)</title>
|
5
|
+
<meta name="viewport" content="width=device-width,initial-scale=1">
|
6
|
+
<style>
|
7
|
+
body {
|
8
|
+
background-color: #EFEFEF;
|
9
|
+
color: #2E2F30;
|
10
|
+
text-align: center;
|
11
|
+
font-family: arial, sans-serif;
|
12
|
+
margin: 0;
|
13
|
+
}
|
14
|
+
|
15
|
+
div.dialog {
|
16
|
+
width: 95%;
|
17
|
+
max-width: 33em;
|
18
|
+
margin: 4em auto 0;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.dialog > div {
|
22
|
+
border: 1px solid #CCC;
|
23
|
+
border-right-color: #999;
|
24
|
+
border-left-color: #999;
|
25
|
+
border-bottom-color: #BBB;
|
26
|
+
border-top: #B00100 solid 4px;
|
27
|
+
border-top-left-radius: 9px;
|
28
|
+
border-top-right-radius: 9px;
|
29
|
+
background-color: white;
|
30
|
+
padding: 7px 12% 0;
|
31
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
32
|
+
}
|
33
|
+
|
34
|
+
h1 {
|
35
|
+
font-size: 100%;
|
36
|
+
color: #730E15;
|
37
|
+
line-height: 1.5em;
|
38
|
+
}
|
39
|
+
|
40
|
+
div.dialog > p {
|
41
|
+
margin: 0 0 1em;
|
42
|
+
padding: 1em;
|
43
|
+
background-color: #F7F7F7;
|
44
|
+
border: 1px solid #CCC;
|
45
|
+
border-right-color: #999;
|
46
|
+
border-left-color: #999;
|
47
|
+
border-bottom-color: #999;
|
48
|
+
border-bottom-left-radius: 4px;
|
49
|
+
border-bottom-right-radius: 4px;
|
50
|
+
border-top-color: #DADADA;
|
51
|
+
color: #666;
|
52
|
+
box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
|
53
|
+
}
|
54
|
+
</style>
|
55
|
+
</head>
|
56
|
+
|
57
|
+
<body>
|
58
|
+
<!-- This file lives in public/404.html -->
|
59
|
+
<div class="dialog">
|
60
|
+
<div>
|
61
|
+
<h1>The page you were looking for doesn't exist.</h1>
|
62
|
+
<p>You may have mistyped the address or the page may have moved.</p>
|
63
|
+
</div>
|
64
|
+
<p>If you are the application owner check the logs for more information.</p>
|
65
|
+
</div>
|
66
|
+
</body>
|
67
|
+
</html>
|