rails_web_cache 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.
Files changed (85) hide show
  1. checksums.yaml +7 -0
  2. data/.coveralls.yml +2 -0
  3. data/.gitignore +21 -0
  4. data/.rspec +3 -0
  5. data/.rubocop.yml +11 -0
  6. data/Gemfile +15 -0
  7. data/Gemfile.lock +178 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +43 -0
  10. data/Rakefile +28 -0
  11. data/app/assets/config/rails_web_cache_manifest.js +2 -0
  12. data/app/assets/images/rails_web_cache/.keep +0 -0
  13. data/app/assets/javascripts/rails_web_cache/application.js +17 -0
  14. data/app/assets/javascripts/rails_web_cache/bootstrap.js +6 -0
  15. data/app/assets/javascripts/rails_web_cache/jquery.js +2 -0
  16. data/app/assets/javascripts/rails_web_cache/keys.js +22 -0
  17. data/app/assets/javascripts/rails_web_cache/popper.js +5 -0
  18. data/app/assets/stylesheets/rails_web_cache/application.css +14 -0
  19. data/app/assets/stylesheets/rails_web_cache/bootstrap.css +7 -0
  20. data/app/controllers/rails_web_cache/application_controller.rb +7 -0
  21. data/app/controllers/rails_web_cache/keys_controller.rb +84 -0
  22. data/app/helpers/rails_web_cache/keys_helper.rb +18 -0
  23. data/app/views/layouts/rails_web_cache/application.html.erb +16 -0
  24. data/app/views/rails_web_cache/keys/index.html.erb +95 -0
  25. data/app/views/rails_web_cache/keys/show.html.erb +26 -0
  26. data/app/views/rails_web_cache/shared/_header.html.erb +17 -0
  27. data/bin/rails +20 -0
  28. data/config/routes.rb +11 -0
  29. data/lib/rails_web_cache/base.rb +44 -0
  30. data/lib/rails_web_cache/engine.rb +21 -0
  31. data/lib/rails_web_cache/entry.rb +19 -0
  32. data/lib/rails_web_cache/file_store.rb +9 -0
  33. data/lib/rails_web_cache/memory_store.rb +9 -0
  34. data/lib/rails_web_cache/redis_cache_store.rb +23 -0
  35. data/lib/rails_web_cache/version.rb +5 -0
  36. data/lib/rails_web_cache.rb +46 -0
  37. data/rails_web_cache.gemspec +39 -0
  38. data/spec/controllers/keys_controller_spec.rb +41 -0
  39. data/spec/dummy/Rakefile +6 -0
  40. data/spec/dummy/app/assets/config/manifest.js +3 -0
  41. data/spec/dummy/app/assets/javascripts/application.js +14 -0
  42. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  43. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  44. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  45. data/spec/dummy/bin/bundle +5 -0
  46. data/spec/dummy/bin/rails +6 -0
  47. data/spec/dummy/bin/rake +6 -0
  48. data/spec/dummy/bin/setup +38 -0
  49. data/spec/dummy/bin/update +33 -0
  50. data/spec/dummy/bin/yarn +13 -0
  51. data/spec/dummy/config/application.rb +23 -0
  52. data/spec/dummy/config/boot.rb +7 -0
  53. data/spec/dummy/config/environment.rb +7 -0
  54. data/spec/dummy/config/environments/development.rb +47 -0
  55. data/spec/dummy/config/environments/production.rb +74 -0
  56. data/spec/dummy/config/environments/test.rb +40 -0
  57. data/spec/dummy/config/initializers/application_controller_renderer.rb +10 -0
  58. data/spec/dummy/config/initializers/assets.rb +14 -0
  59. data/spec/dummy/config/initializers/backtrace_silencers.rb +8 -0
  60. data/spec/dummy/config/initializers/content_security_policy.rb +26 -0
  61. data/spec/dummy/config/initializers/cookies_serializer.rb +7 -0
  62. data/spec/dummy/config/initializers/filter_parameter_logging.rb +6 -0
  63. data/spec/dummy/config/initializers/inflections.rb +18 -0
  64. data/spec/dummy/config/initializers/mime_types.rb +6 -0
  65. data/spec/dummy/config/initializers/wrap_parameters.rb +11 -0
  66. data/spec/dummy/config/locales/en.yml +33 -0
  67. data/spec/dummy/config/puma.rb +39 -0
  68. data/spec/dummy/config/routes.rb +5 -0
  69. data/spec/dummy/config/spring.rb +8 -0
  70. data/spec/dummy/config.ru +7 -0
  71. data/spec/dummy/log/development.log +630 -0
  72. data/spec/dummy/log/test.log +1791 -0
  73. data/spec/dummy/public/404.html +67 -0
  74. data/spec/dummy/public/422.html +67 -0
  75. data/spec/dummy/public/500.html +66 -0
  76. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  77. data/spec/dummy/public/apple-touch-icon.png +0 -0
  78. data/spec/dummy/public/favicon.ico +0 -0
  79. data/spec/dummy/tmp/development_secret.txt +1 -0
  80. data/spec/helpers/keys_helper_spec.rb +28 -0
  81. data/spec/rails_helper.rb +50 -0
  82. data/spec/rails_web_cache_spec.rb +37 -0
  83. data/spec/routing/keys_controller_spec.rb +31 -0
  84. data/spec/spec_helper.rb +101 -0
  85. metadata +237 -0
@@ -0,0 +1,1791 @@
1
+ Processing by RailsWebCache::KeysController#show as HTML
2
+ Parameters: {"key"=>"RailsWebCache"}
3
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
4
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 2.8ms | Allocations: 890)
5
+ Completed 500 Internal Server Error in 11ms (Allocations: 3941)
6
+ Processing by RailsWebCache::KeysController#show as HTML
7
+ Parameters: {"key"=>"RailsWebCache"}
8
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
9
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 1.2ms | Allocations: 890)
10
+ Completed 500 Internal Server Error in 5ms (Allocations: 3941)
11
+ Processing by RailsWebCache::KeysController#show as HTML
12
+ Parameters: {"key"=>"RailsWebCache"}
13
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
14
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 1.5ms | Allocations: 890)
15
+ Completed 500 Internal Server Error in 6ms (Allocations: 3941)
16
+ Processing by RailsWebCache::KeysController#show as HTML
17
+ Parameters: {"key"=>"RailsWebCache"}
18
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
19
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 1.2ms | Allocations: 890)
20
+ Completed 500 Internal Server Error in 6ms (Allocations: 3941)
21
+ Processing by RailsWebCache::KeysController#show as HTML
22
+ Parameters: {"key"=>""}
23
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
24
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 1.2ms | Allocations: 890)
25
+ Completed 500 Internal Server Error in 5ms (Allocations: 3934)
26
+ Processing by RailsWebCache::KeysController#show as HTML
27
+ Parameters: {"key"=>""}
28
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
29
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 1.3ms | Allocations: 890)
30
+ Completed 500 Internal Server Error in 8ms (Allocations: 3934)
31
+ Processing by RailsWebCache::KeysController#show as HTML
32
+ Parameters: {"key"=>""}
33
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
34
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 1.4ms | Allocations: 890)
35
+ Completed 500 Internal Server Error in 6ms (Allocations: 3934)
36
+ Processing by RailsWebCache::KeysController#index as HTML
37
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
38
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 1.3ms | Allocations: 890)
39
+ Completed 500 Internal Server Error in 6ms (Allocations: 3950)
40
+ Processing by RailsWebCache::KeysController#index as HTML
41
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
42
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 1.4ms | Allocations: 890)
43
+ Completed 500 Internal Server Error in 6ms (Allocations: 3966)
44
+ Processing by RailsWebCache::KeysController#index as HTML
45
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
46
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
47
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
48
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
49
+ Completed 200 OK in 5ms (Views: 3.1ms | Allocations: 2747)
50
+ Processing by RailsWebCache::KeysController#index as HTML
51
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
52
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
53
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
54
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
55
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
56
+ Processing by RailsWebCache::KeysController#index as HTML
57
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
58
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 1.2ms | Allocations: 890)
59
+ Completed 500 Internal Server Error in 7ms (Allocations: 3966)
60
+ Processing by RailsWebCache::KeysController#index as HTML
61
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
62
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
63
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
64
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
65
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
66
+ Processing by RailsWebCache::KeysController#show as HTML
67
+ Parameters: {"key"=>"RailsWebCache"}
68
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
69
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
70
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
71
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
72
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2723)
73
+ Processing by RailsWebCache::KeysController#index as HTML
74
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
75
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
76
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
77
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
78
+ Completed 200 OK in 5ms (Views: 3.5ms | Allocations: 2732)
79
+ Processing by RailsWebCache::KeysController#show as HTML
80
+ Parameters: {"key"=>"RailsWebCache"}
81
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
82
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
83
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
84
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
85
+ Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 674)
86
+ Processing by RailsWebCache::KeysController#index as HTML
87
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
88
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
89
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.6ms | Allocations: 267)
90
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
91
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2731)
92
+ Processing by RailsWebCache::KeysController#show as HTML
93
+ Parameters: {"key"=>"RailsWebCache"}
94
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
95
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
96
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
97
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
98
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 672)
99
+ Processing by RailsWebCache::KeysController#index as HTML
100
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
101
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
102
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
103
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
104
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2732)
105
+ Processing by RailsWebCache::KeysController#show as HTML
106
+ Parameters: {"key"=>"RailsWebCache"}
107
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
108
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
109
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
110
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
111
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 674)
112
+ Processing by RailsWebCache::KeysController#index as HTML
113
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
114
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
115
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
116
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
117
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2731)
118
+ Processing by RailsWebCache::KeysController#show as HTML
119
+ Parameters: {"key"=>"RailsWebCache"}
120
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
121
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
122
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
123
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
124
+ Completed 200 OK in 2ms (Views: 1.2ms | Allocations: 674)
125
+ Processing by RailsWebCache::KeysController#show as HTML
126
+ Parameters: {"key"=>"RailsWebCache"}
127
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
128
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
129
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
130
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
131
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 441)
132
+ Processing by RailsWebCache::KeysController#index as HTML
133
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
134
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
135
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
136
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
137
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2732)
138
+ Processing by RailsWebCache::KeysController#show as HTML
139
+ Parameters: {"key"=>"RailsWebCache"}
140
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
141
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
142
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
143
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
144
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 674)
145
+ Processing by RailsWebCache::KeysController#destroy as HTML
146
+ Parameters: {"key"=>"RailsWebCache"}
147
+ Redirected to http://test.host/rails_web_cache/
148
+ Completed 302 Found in 0ms (Allocations: 200)
149
+ Processing by RailsWebCache::KeysController#index as HTML
150
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
151
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
152
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
153
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
154
+ Completed 200 OK in 5ms (Views: 3.6ms | Allocations: 2732)
155
+ Processing by RailsWebCache::KeysController#show as HTML
156
+ Parameters: {"key"=>"RailsWebCache"}
157
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
158
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
159
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
160
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
161
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 674)
162
+ Processing by RailsWebCache::KeysController#destroy as HTML
163
+ Parameters: {"key"=>"RailsWebCache"}
164
+ Redirected to http://test.host/rails_web_cache/
165
+ Completed 302 Found in 0ms (Allocations: 200)
166
+ Processing by RailsWebCache::KeysController#index as HTML
167
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
168
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
169
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.7ms | Allocations: 267)
170
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
171
+ Completed 200 OK in 6ms (Views: 4.5ms | Allocations: 2732)
172
+ Processing by RailsWebCache::KeysController#show as HTML
173
+ Parameters: {"key"=>"RailsWebCache"}
174
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
175
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
176
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
177
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
178
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 674)
179
+ Processing by RailsWebCache::KeysController#destroy as HTML
180
+ Parameters: {"key"=>"RailsWebCache"}
181
+ Redirected to http://test.host/rails_web_cache/
182
+ Completed 302 Found in 0ms (Allocations: 200)
183
+ Processing by RailsWebCache::KeysController#index as HTML
184
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
185
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
186
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
187
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
188
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2732)
189
+ Processing by RailsWebCache::KeysController#show as HTML
190
+ Parameters: {"key"=>"RailsWebCache"}
191
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
192
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
193
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
194
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
195
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 674)
196
+ Processing by RailsWebCache::KeysController#destroy as HTML
197
+ Parameters: {"key"=>"RailsWebCache"}
198
+ Redirected to http://test.host/rails_web_cache/
199
+ Completed 302 Found in 0ms (Allocations: 200)
200
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
201
+ Parameters: {"keys"=>["RailsWebCache"]}
202
+ Redirected to http://test.host/rails_web_cache/
203
+ Completed 302 Found in 0ms (Allocations: 165)
204
+ Processing by RailsWebCache::KeysController#index as HTML
205
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
206
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
207
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
208
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
209
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2732)
210
+ Processing by RailsWebCache::KeysController#show as HTML
211
+ Parameters: {"key"=>"RailsWebCache"}
212
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
213
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
214
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
215
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
216
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 674)
217
+ Processing by RailsWebCache::KeysController#destroy as HTML
218
+ Parameters: {"key"=>"RailsWebCache"}
219
+ Redirected to http://test.host/rails_web_cache/
220
+ Completed 302 Found in 0ms (Allocations: 200)
221
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
222
+ Parameters: {"keys"=>["RailsWebCache"]}
223
+ Redirected to http://test.host/rails_web_cache/
224
+ Completed 302 Found in 0ms (Allocations: 165)
225
+ Processing by RailsWebCache::KeysController#index as HTML
226
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
227
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
228
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
229
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
230
+ Completed 200 OK in 5ms (Views: 3.3ms | Allocations: 2731)
231
+ Processing by RailsWebCache::KeysController#index as HTML
232
+ Parameters: {"query"=>"Search"}
233
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
234
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
235
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
236
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
237
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 448)
238
+ Processing by RailsWebCache::KeysController#show as HTML
239
+ Parameters: {"key"=>"RailsWebCache"}
240
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
241
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
242
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
243
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
244
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 674)
245
+ Processing by RailsWebCache::KeysController#destroy as HTML
246
+ Parameters: {"key"=>"RailsWebCache"}
247
+ Redirected to http://test.host/rails_web_cache/
248
+ Completed 302 Found in 0ms (Allocations: 200)
249
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
250
+ Parameters: {"keys"=>["RailsWebCache"]}
251
+ Redirected to http://test.host/rails_web_cache/
252
+ Completed 302 Found in 0ms (Allocations: 165)
253
+ Processing by RailsWebCache::KeysController#index as HTML
254
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
255
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
256
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
257
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
258
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2732)
259
+ Processing by RailsWebCache::KeysController#index as HTML
260
+ Parameters: {"query"=>"Search"}
261
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
262
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
263
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
264
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
265
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 448)
266
+ Processing by RailsWebCache::KeysController#show as HTML
267
+ Parameters: {"key"=>"RailsWebCache"}
268
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
269
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
270
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
271
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
272
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 674)
273
+ Processing by RailsWebCache::KeysController#destroy as HTML
274
+ Parameters: {"key"=>"RailsWebCache"}
275
+ Redirected to http://test.host/rails_web_cache/
276
+ Completed 302 Found in 0ms (Allocations: 200)
277
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
278
+ Parameters: {"keys"=>["RailsWebCache"]}
279
+ Redirected to http://test.host/rails_web_cache/
280
+ Completed 302 Found in 0ms (Allocations: 165)
281
+ Processing by RailsWebCache::KeysController#index as HTML
282
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
283
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
284
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
285
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
286
+ Completed 200 OK in 6ms (Views: 4.3ms | Allocations: 2748)
287
+ Processing by RailsWebCache::KeysController#index as HTML
288
+ Parameters: {"query"=>"Search"}
289
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
290
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
291
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
292
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
293
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
294
+ Processing by RailsWebCache::KeysController#index as HTML
295
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
296
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
297
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
298
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
299
+ Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 461)
300
+ Processing by RailsWebCache::KeysController#show as HTML
301
+ Parameters: {"key"=>"RailsWebCache"}
302
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
303
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
304
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
305
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
306
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
307
+ Processing by RailsWebCache::KeysController#destroy as HTML
308
+ Parameters: {"key"=>"RailsWebCache"}
309
+ Redirected to http://test.host/rails_web_cache/
310
+ Completed 302 Found in 0ms (Allocations: 200)
311
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
312
+ Parameters: {"keys"=>["RailsWebCache"]}
313
+ Redirected to http://test.host/rails_web_cache/
314
+ Completed 302 Found in 0ms (Allocations: 165)
315
+ Processing by RailsWebCache::KeysController#index as HTML
316
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
317
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
318
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.8ms | Allocations: 267)
319
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
320
+ Completed 200 OK in 6ms (Views: 4.0ms | Allocations: 2748)
321
+ Processing by RailsWebCache::KeysController#index as HTML
322
+ Parameters: {"query"=>"Search"}
323
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
324
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
325
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 55)
326
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
327
+ Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 450)
328
+ Processing by RailsWebCache::KeysController#index as HTML
329
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
330
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
331
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
332
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
333
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 461)
334
+ Processing by RailsWebCache::KeysController#show as HTML
335
+ Parameters: {"key"=>"RailsWebCache"}
336
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
337
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
338
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
339
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
340
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
341
+ Processing by RailsWebCache::KeysController#destroy as HTML
342
+ Parameters: {"key"=>"RailsWebCache"}
343
+ Redirected to http://test.host/rails_web_cache/
344
+ Completed 302 Found in 1ms (Allocations: 200)
345
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
346
+ Parameters: {"keys"=>["RailsWebCache"]}
347
+ Redirected to http://test.host/rails_web_cache/
348
+ Completed 302 Found in 0ms (Allocations: 165)
349
+ Processing by RailsWebCache::KeysController#index as HTML
350
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
351
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
352
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
353
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
354
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
355
+ Processing by RailsWebCache::KeysController#index as HTML
356
+ Parameters: {"query"=>"Search"}
357
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
358
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
359
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
360
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
361
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
362
+ Processing by RailsWebCache::KeysController#index as HTML
363
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
364
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
365
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
366
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
367
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 461)
368
+ Processing by RailsWebCache::KeysController#show as HTML
369
+ Parameters: {"key"=>"RailsWebCache"}
370
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
371
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
372
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
373
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
374
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
375
+ Processing by RailsWebCache::KeysController#destroy as HTML
376
+ Parameters: {"key"=>"RailsWebCache"}
377
+ Redirected to http://test.host/rails_web_cache/
378
+ Completed 302 Found in 1ms (Allocations: 200)
379
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
380
+ Parameters: {"keys"=>["RailsWebCache"]}
381
+ Redirected to http://test.host/rails_web_cache/
382
+ Completed 302 Found in 0ms (Allocations: 165)
383
+ Processing by RailsWebCache::KeysController#index as HTML
384
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
385
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
386
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
387
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
388
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
389
+ Processing by RailsWebCache::KeysController#index as HTML
390
+ Parameters: {"query"=>"Search"}
391
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
392
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
393
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
394
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
395
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
396
+ Processing by RailsWebCache::KeysController#show as HTML
397
+ Parameters: {"key"=>"RailsWebCache"}
398
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
399
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
400
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
401
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
402
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 671)
403
+ Processing by RailsWebCache::KeysController#destroy as HTML
404
+ Parameters: {"key"=>"RailsWebCache"}
405
+ Redirected to http://test.host/rails_web_cache/
406
+ Completed 302 Found in 0ms (Allocations: 200)
407
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
408
+ Parameters: {"keys"=>["RailsWebCache"]}
409
+ Redirected to http://test.host/rails_web_cache/
410
+ Completed 302 Found in 0ms (Allocations: 165)
411
+ Processing by RailsWebCache::KeysController#index as HTML
412
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
413
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
414
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
415
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
416
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2748)
417
+ Processing by RailsWebCache::KeysController#index as HTML
418
+ Parameters: {"query"=>"Search"}
419
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
420
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
421
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
422
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
423
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
424
+ Processing by RailsWebCache::KeysController#show as HTML
425
+ Parameters: {"key"=>"RailsWebCache"}
426
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
427
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
428
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
429
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
430
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 671)
431
+ Processing by RailsWebCache::KeysController#destroy as HTML
432
+ Parameters: {"key"=>"RailsWebCache"}
433
+ Redirected to http://test.host/rails_web_cache/
434
+ Completed 302 Found in 0ms (Allocations: 200)
435
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
436
+ Parameters: {"keys"=>["RailsWebCache"]}
437
+ Redirected to http://test.host/rails_web_cache/
438
+ Completed 302 Found in 0ms (Allocations: 165)
439
+ Processing by RailsWebCache::KeysController#index as HTML
440
+ Parameters: {"query"=>"Search"}
441
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
442
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
443
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
444
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
445
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2731)
446
+ Processing by RailsWebCache::KeysController#show as HTML
447
+ Parameters: {"key"=>"RailsWebCache"}
448
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
449
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
450
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
451
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
452
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 672)
453
+ Processing by RailsWebCache::KeysController#destroy as HTML
454
+ Parameters: {"key"=>"RailsWebCache"}
455
+ Redirected to http://test.host/rails_web_cache/
456
+ Completed 302 Found in 0ms (Allocations: 200)
457
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
458
+ Parameters: {"keys"=>["RailsWebCache"]}
459
+ Redirected to http://test.host/rails_web_cache/
460
+ Completed 302 Found in 0ms (Allocations: 165)
461
+ Processing by RailsWebCache::KeysController#index as HTML
462
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
463
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
464
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.7ms | Allocations: 267)
465
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
466
+ Completed 200 OK in 6ms (Views: 4.1ms | Allocations: 2748)
467
+ Processing by RailsWebCache::KeysController#index as HTML
468
+ Parameters: {"query"=>"Search"}
469
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
470
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
471
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
472
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
473
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
474
+ Processing by RailsWebCache::KeysController#show as HTML
475
+ Parameters: {"key"=>"RailsWebCache"}
476
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
477
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
478
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
479
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
480
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
481
+ Processing by RailsWebCache::KeysController#destroy as HTML
482
+ Parameters: {"key"=>"RailsWebCache"}
483
+ Redirected to http://test.host/rails_web_cache/
484
+ Completed 302 Found in 0ms (Allocations: 200)
485
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
486
+ Parameters: {"keys"=>["RailsWebCache"]}
487
+ Redirected to http://test.host/rails_web_cache/
488
+ Completed 302 Found in 0ms (Allocations: 165)
489
+ Processing by RailsWebCache::KeysController#show as HTML
490
+ Parameters: {"key"=>"RailsWebCache"}
491
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
492
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
493
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
494
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
495
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2723)
496
+ Processing by RailsWebCache::KeysController#destroy as HTML
497
+ Parameters: {"key"=>"RailsWebCache"}
498
+ Redirected to http://test.host/rails_web_cache/
499
+ Completed 302 Found in 0ms (Allocations: 200)
500
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
501
+ Parameters: {"keys"=>["RailsWebCache"]}
502
+ Redirected to http://test.host/rails_web_cache/
503
+ Completed 302 Found in 0ms (Allocations: 165)
504
+ Processing by RailsWebCache::KeysController#index as HTML
505
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
506
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
507
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
508
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
509
+ Completed 200 OK in 5ms (Views: 3.3ms | Allocations: 2748)
510
+ Processing by RailsWebCache::KeysController#index as HTML
511
+ Parameters: {"query"=>"Search"}
512
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
513
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
514
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
515
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
516
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
517
+ Processing by RailsWebCache::KeysController#show as HTML
518
+ Parameters: {"key"=>"RailsWebCache"}
519
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
520
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
521
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
522
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
523
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 671)
524
+ Processing by RailsWebCache::KeysController#destroy as HTML
525
+ Parameters: {"key"=>"RailsWebCache"}
526
+ Redirected to http://test.host/rails_web_cache/
527
+ Completed 302 Found in 0ms (Allocations: 200)
528
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
529
+ Parameters: {"keys"=>["RailsWebCache"]}
530
+ Redirected to http://test.host/rails_web_cache/
531
+ Completed 302 Found in 0ms (Allocations: 165)
532
+ Processing by RailsWebCache::KeysController#index as HTML
533
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
534
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
535
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
536
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
537
+ Completed 200 OK in 7ms (Views: 5.2ms | Allocations: 2748)
538
+ Processing by RailsWebCache::KeysController#index as HTML
539
+ Parameters: {"query"=>"Search"}
540
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
541
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
542
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
543
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
544
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
545
+ Processing by RailsWebCache::KeysController#show as HTML
546
+ Parameters: {"key"=>"RailsWebCache"}
547
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
548
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
549
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
550
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
551
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
552
+ Processing by RailsWebCache::KeysController#destroy as HTML
553
+ Parameters: {"key"=>"RailsWebCache"}
554
+ Redirected to http://test.host/rails_web_cache/
555
+ Completed 302 Found in 0ms (Allocations: 200)
556
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
557
+ Parameters: {"keys"=>["RailsWebCache"]}
558
+ Redirected to http://test.host/rails_web_cache/
559
+ Completed 302 Found in 0ms (Allocations: 165)
560
+ Processing by RailsWebCache::KeysController#index as HTML
561
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
562
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
563
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
564
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
565
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2747)
566
+ Processing by RailsWebCache::KeysController#index as HTML
567
+ Parameters: {"query"=>"Search"}
568
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
569
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
570
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
571
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
572
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
573
+ Processing by RailsWebCache::KeysController#show as HTML
574
+ Parameters: {"key"=>"RailsWebCache"}
575
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
576
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
577
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
578
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
579
+ Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 671)
580
+ Processing by RailsWebCache::KeysController#destroy as HTML
581
+ Parameters: {"key"=>"RailsWebCache"}
582
+ Redirected to http://test.host/rails_web_cache/
583
+ Completed 302 Found in 0ms (Allocations: 200)
584
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
585
+ Parameters: {"keys"=>["RailsWebCache"]}
586
+ Redirected to http://test.host/rails_web_cache/
587
+ Completed 302 Found in 0ms (Allocations: 165)
588
+ Processing by RailsWebCache::KeysController#index as HTML
589
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
590
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
591
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.6ms | Allocations: 267)
592
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
593
+ Completed 200 OK in 6ms (Views: 4.6ms | Allocations: 2748)
594
+ Processing by RailsWebCache::KeysController#index as HTML
595
+ Parameters: {"query"=>"Search"}
596
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
597
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
598
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 55)
599
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
600
+ Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 450)
601
+ Processing by RailsWebCache::KeysController#show as HTML
602
+ Parameters: {"key"=>"RailsWebCache"}
603
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
604
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
605
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
606
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
607
+ Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 671)
608
+ Processing by RailsWebCache::KeysController#destroy as HTML
609
+ Parameters: {"key"=>"RailsWebCache"}
610
+ Redirected to http://test.host/rails_web_cache/
611
+ Completed 302 Found in 1ms (Allocations: 200)
612
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
613
+ Parameters: {"keys"=>["RailsWebCache"]}
614
+ Redirected to http://test.host/rails_web_cache/
615
+ Completed 302 Found in 0ms (Allocations: 165)
616
+ Processing by RailsWebCache::KeysController#index as HTML
617
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
618
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
619
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
620
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
621
+ Completed 200 OK in 5ms (Views: 3.2ms | Allocations: 2748)
622
+ Processing by RailsWebCache::KeysController#index as HTML
623
+ Parameters: {"query"=>"Search"}
624
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
625
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
626
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
627
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
628
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
629
+ Processing by RailsWebCache::KeysController#show as HTML
630
+ Parameters: {"key"=>"RailsWebCache"}
631
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
632
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
633
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
634
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
635
+ Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 671)
636
+ Processing by RailsWebCache::KeysController#destroy as HTML
637
+ Parameters: {"key"=>"RailsWebCache"}
638
+ Redirected to http://test.host/rails_web_cache/
639
+ Completed 302 Found in 1ms (Allocations: 200)
640
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
641
+ Parameters: {"keys"=>["RailsWebCache"]}
642
+ Redirected to http://test.host/rails_web_cache/
643
+ Completed 302 Found in 0ms (Allocations: 165)
644
+ Processing by RailsWebCache::KeysController#index as HTML
645
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
646
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
647
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
648
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
649
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2748)
650
+ Processing by RailsWebCache::KeysController#index as HTML
651
+ Parameters: {"query"=>"Search"}
652
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
653
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
654
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
655
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
656
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
657
+ Processing by RailsWebCache::KeysController#show as HTML
658
+ Parameters: {"key"=>"RailsWebCache"}
659
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
660
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
661
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
662
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
663
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
664
+ Processing by RailsWebCache::KeysController#destroy as HTML
665
+ Parameters: {"key"=>"RailsWebCache"}
666
+ Redirected to http://test.host/rails_web_cache/
667
+ Completed 302 Found in 0ms (Allocations: 200)
668
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
669
+ Parameters: {"keys"=>["RailsWebCache"]}
670
+ Redirected to http://test.host/rails_web_cache/
671
+ Completed 302 Found in 0ms (Allocations: 165)
672
+ Processing by RailsWebCache::KeysController#index as HTML
673
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
674
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
675
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
676
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
677
+ Completed 200 OK in 5ms (Views: 3.2ms | Allocations: 2748)
678
+ Processing by RailsWebCache::KeysController#index as HTML
679
+ Parameters: {"query"=>"Search"}
680
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
681
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
682
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
683
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
684
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 450)
685
+ Processing by RailsWebCache::KeysController#show as HTML
686
+ Parameters: {"key"=>"RailsWebCache"}
687
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
688
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
689
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
690
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
691
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
692
+ Processing by RailsWebCache::KeysController#destroy as HTML
693
+ Parameters: {"key"=>"RailsWebCache"}
694
+ Redirected to http://test.host/rails_web_cache/
695
+ Completed 302 Found in 0ms (Allocations: 200)
696
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
697
+ Parameters: {"keys"=>["RailsWebCache"]}
698
+ Redirected to http://test.host/rails_web_cache/
699
+ Completed 302 Found in 0ms (Allocations: 165)
700
+ Processing by RailsWebCache::KeysController#index as HTML
701
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
702
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
703
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
704
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
705
+ Completed 200 OK in 4ms (Views: 2.7ms | Allocations: 2747)
706
+ Processing by RailsWebCache::KeysController#index as HTML
707
+ Parameters: {"query"=>"Search"}
708
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
709
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
710
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
711
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
712
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
713
+ Processing by RailsWebCache::KeysController#show as HTML
714
+ Parameters: {"key"=>"RailsWebCache"}
715
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
716
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
717
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
718
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
719
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
720
+ Processing by RailsWebCache::KeysController#destroy as HTML
721
+ Parameters: {"key"=>"RailsWebCache"}
722
+ Redirected to http://test.host/rails_web_cache/
723
+ Completed 302 Found in 0ms (Allocations: 200)
724
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
725
+ Parameters: {"keys"=>["RailsWebCache"]}
726
+ Redirected to http://test.host/rails_web_cache/
727
+ Completed 302 Found in 0ms (Allocations: 165)
728
+ Processing by RailsWebCache::KeysController#index as HTML
729
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
730
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
731
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.6ms | Allocations: 267)
732
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
733
+ Completed 200 OK in 6ms (Views: 4.3ms | Allocations: 2748)
734
+ Processing by RailsWebCache::KeysController#index as HTML
735
+ Parameters: {"query"=>"Search"}
736
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
737
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
738
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
739
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
740
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
741
+ Processing by RailsWebCache::KeysController#show as HTML
742
+ Parameters: {"key"=>"RailsWebCache"}
743
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
744
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
745
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
746
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
747
+ Completed 200 OK in 7ms (Views: 0.7ms | Allocations: 671)
748
+ Processing by RailsWebCache::KeysController#destroy as HTML
749
+ Parameters: {"key"=>"RailsWebCache"}
750
+ Redirected to http://test.host/rails_web_cache/
751
+ Completed 302 Found in 1ms (Allocations: 200)
752
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
753
+ Parameters: {"keys"=>["RailsWebCache"]}
754
+ Redirected to http://test.host/rails_web_cache/
755
+ Completed 302 Found in 1ms (Allocations: 165)
756
+ Processing by RailsWebCache::KeysController#index as HTML
757
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
758
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
759
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
760
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
761
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2748)
762
+ Processing by RailsWebCache::KeysController#index as HTML
763
+ Parameters: {"query"=>"Search"}
764
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
765
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
766
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
767
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
768
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
769
+ Processing by RailsWebCache::KeysController#show as HTML
770
+ Parameters: {"key"=>"RailsWebCache"}
771
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
772
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
773
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
774
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
775
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
776
+ Processing by RailsWebCache::KeysController#destroy as HTML
777
+ Parameters: {"key"=>"RailsWebCache"}
778
+ Redirected to http://test.host/rails_web_cache/
779
+ Completed 302 Found in 0ms (Allocations: 200)
780
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
781
+ Parameters: {"keys"=>["RailsWebCache"]}
782
+ Redirected to http://test.host/rails_web_cache/
783
+ Completed 302 Found in 0ms (Allocations: 165)
784
+ Processing by RailsWebCache::KeysController#index as HTML
785
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
786
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
787
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
788
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
789
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2748)
790
+ Processing by RailsWebCache::KeysController#index as HTML
791
+ Parameters: {"query"=>"Search"}
792
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
793
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
794
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
795
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
796
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
797
+ Processing by RailsWebCache::KeysController#show as HTML
798
+ Parameters: {"key"=>"RailsWebCache"}
799
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
800
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
801
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
802
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
803
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
804
+ Processing by RailsWebCache::KeysController#destroy as HTML
805
+ Parameters: {"key"=>"RailsWebCache"}
806
+ Redirected to http://test.host/rails_web_cache/
807
+ Completed 302 Found in 0ms (Allocations: 200)
808
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
809
+ Parameters: {"keys"=>["RailsWebCache"]}
810
+ Redirected to http://test.host/rails_web_cache/
811
+ Completed 302 Found in 0ms (Allocations: 165)
812
+ Processing by RailsWebCache::KeysController#index as HTML
813
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
814
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
815
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
816
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
817
+ Completed 200 OK in 5ms (Views: 3.5ms | Allocations: 2748)
818
+ Processing by RailsWebCache::KeysController#index as HTML
819
+ Parameters: {"query"=>"Search"}
820
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
821
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
822
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
823
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
824
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
825
+ Processing by RailsWebCache::KeysController#show as HTML
826
+ Parameters: {"key"=>"RailsWebCache"}
827
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
828
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
829
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
830
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
831
+ Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 671)
832
+ Processing by RailsWebCache::KeysController#destroy as HTML
833
+ Parameters: {"key"=>"RailsWebCache"}
834
+ Redirected to http://test.host/rails_web_cache/
835
+ Completed 302 Found in 0ms (Allocations: 200)
836
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
837
+ Parameters: {"keys"=>["RailsWebCache"]}
838
+ Redirected to http://test.host/rails_web_cache/
839
+ Completed 302 Found in 0ms (Allocations: 165)
840
+ Processing by RailsWebCache::KeysController#index as HTML
841
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
842
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
843
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
844
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
845
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2748)
846
+ Processing by RailsWebCache::KeysController#index as HTML
847
+ Parameters: {"query"=>"Search"}
848
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
849
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
850
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 55)
851
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
852
+ Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 450)
853
+ Processing by RailsWebCache::KeysController#show as HTML
854
+ Parameters: {"key"=>"RailsWebCache"}
855
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
856
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
857
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
858
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
859
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
860
+ Processing by RailsWebCache::KeysController#destroy as HTML
861
+ Parameters: {"key"=>"RailsWebCache"}
862
+ Redirected to http://test.host/rails_web_cache/
863
+ Completed 302 Found in 0ms (Allocations: 200)
864
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
865
+ Parameters: {"keys"=>["RailsWebCache"]}
866
+ Redirected to http://test.host/rails_web_cache/
867
+ Completed 302 Found in 1ms (Allocations: 165)
868
+ Processing by RailsWebCache::KeysController#index as HTML
869
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
870
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
871
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
872
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
873
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
874
+ Processing by RailsWebCache::KeysController#index as HTML
875
+ Parameters: {"query"=>"Search"}
876
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
877
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
878
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
879
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
880
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
881
+ Processing by RailsWebCache::KeysController#show as HTML
882
+ Parameters: {"key"=>"RailsWebCache"}
883
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
884
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
885
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
886
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
887
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
888
+ Processing by RailsWebCache::KeysController#destroy as HTML
889
+ Parameters: {"key"=>"RailsWebCache"}
890
+ Redirected to http://test.host/rails_web_cache/
891
+ Completed 302 Found in 0ms (Allocations: 200)
892
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
893
+ Parameters: {"keys"=>["RailsWebCache"]}
894
+ Redirected to http://test.host/rails_web_cache/
895
+ Completed 302 Found in 0ms (Allocations: 165)
896
+ Processing by RailsWebCache::KeysController#index as HTML
897
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
898
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
899
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
900
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
901
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
902
+ Processing by RailsWebCache::KeysController#index as HTML
903
+ Parameters: {"query"=>"Search"}
904
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
905
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
906
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
907
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
908
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
909
+ Processing by RailsWebCache::KeysController#show as HTML
910
+ Parameters: {"key"=>"RailsWebCache"}
911
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
912
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
913
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
914
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
915
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
916
+ Processing by RailsWebCache::KeysController#destroy as HTML
917
+ Parameters: {"key"=>"RailsWebCache"}
918
+ Redirected to http://test.host/rails_web_cache/
919
+ Completed 302 Found in 0ms (Allocations: 200)
920
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
921
+ Parameters: {"keys"=>["RailsWebCache"]}
922
+ Redirected to http://test.host/rails_web_cache/
923
+ Completed 302 Found in 0ms (Allocations: 165)
924
+ Processing by RailsWebCache::KeysController#index as HTML
925
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
926
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
927
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
928
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
929
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
930
+ Processing by RailsWebCache::KeysController#index as HTML
931
+ Parameters: {"query"=>"Search"}
932
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
933
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
934
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
935
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
936
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
937
+ Processing by RailsWebCache::KeysController#show as HTML
938
+ Parameters: {"key"=>"RailsWebCache"}
939
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
940
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
941
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
942
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
943
+ Completed 200 OK in 2ms (Views: 1.0ms | Allocations: 671)
944
+ Processing by RailsWebCache::KeysController#destroy as HTML
945
+ Parameters: {"key"=>"RailsWebCache"}
946
+ Redirected to http://test.host/rails_web_cache/
947
+ Completed 302 Found in 5ms (Allocations: 200)
948
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
949
+ Parameters: {"keys"=>["RailsWebCache"]}
950
+ Redirected to http://test.host/rails_web_cache/
951
+ Completed 302 Found in 2ms (Allocations: 165)
952
+ Processing by RailsWebCache::KeysController#index as HTML
953
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
954
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
955
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.6ms | Allocations: 267)
956
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
957
+ Completed 200 OK in 6ms (Views: 4.0ms | Allocations: 2748)
958
+ Processing by RailsWebCache::KeysController#index as HTML
959
+ Parameters: {"query"=>"Search"}
960
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
961
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
962
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
963
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
964
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
965
+ Processing by RailsWebCache::KeysController#show as HTML
966
+ Parameters: {"key"=>"RailsWebCache"}
967
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
968
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
969
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
970
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
971
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
972
+ Processing by RailsWebCache::KeysController#destroy as HTML
973
+ Parameters: {"key"=>"RailsWebCache"}
974
+ Redirected to http://test.host/rails_web_cache/
975
+ Completed 302 Found in 1ms (Allocations: 200)
976
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
977
+ Parameters: {"keys"=>["RailsWebCache"]}
978
+ Redirected to http://test.host/rails_web_cache/
979
+ Completed 302 Found in 0ms (Allocations: 165)
980
+ Processing by RailsWebCache::KeysController#index as HTML
981
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
982
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
983
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
984
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
985
+ Completed 200 OK in 5ms (Views: 3.3ms | Allocations: 2748)
986
+ Processing by RailsWebCache::KeysController#index as HTML
987
+ Parameters: {"query"=>"Search"}
988
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
989
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
990
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
991
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
992
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
993
+ Processing by RailsWebCache::KeysController#show as HTML
994
+ Parameters: {"key"=>"RailsWebCache"}
995
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
996
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
997
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
998
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
999
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1000
+ Processing by RailsWebCache::KeysController#destroy as HTML
1001
+ Parameters: {"key"=>"RailsWebCache"}
1002
+ Redirected to http://test.host/rails_web_cache/
1003
+ Completed 302 Found in 0ms (Allocations: 200)
1004
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1005
+ Parameters: {"keys"=>["RailsWebCache"]}
1006
+ Redirected to http://test.host/rails_web_cache/
1007
+ Completed 302 Found in 0ms (Allocations: 165)
1008
+ Processing by RailsWebCache::KeysController#index as HTML
1009
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1010
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1011
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 1.1ms | Allocations: 267)
1012
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1013
+ Completed 200 OK in 6ms (Views: 3.7ms | Allocations: 2748)
1014
+ Processing by RailsWebCache::KeysController#index as HTML
1015
+ Parameters: {"query"=>"Search"}
1016
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1017
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1018
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 55)
1019
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1020
+ Completed 200 OK in 1ms (Views: 0.9ms | Allocations: 450)
1021
+ Processing by RailsWebCache::KeysController#show as HTML
1022
+ Parameters: {"key"=>"RailsWebCache"}
1023
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1024
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1025
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1026
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1027
+ Completed 200 OK in 2ms (Views: 0.6ms | Allocations: 671)
1028
+ Processing by RailsWebCache::KeysController#destroy as HTML
1029
+ Parameters: {"key"=>"RailsWebCache"}
1030
+ Redirected to http://test.host/rails_web_cache/
1031
+ Completed 302 Found in 0ms (Allocations: 200)
1032
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1033
+ Parameters: {"keys"=>["RailsWebCache"]}
1034
+ Redirected to http://test.host/rails_web_cache/
1035
+ Completed 302 Found in 0ms (Allocations: 165)
1036
+ Processing by RailsWebCache::KeysController#index as HTML
1037
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1038
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1039
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
1040
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1041
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2748)
1042
+ Processing by RailsWebCache::KeysController#index as HTML
1043
+ Parameters: {"query"=>"Search"}
1044
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1045
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1046
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1047
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1048
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1049
+ Processing by RailsWebCache::KeysController#show as HTML
1050
+ Parameters: {"key"=>"RailsWebCache"}
1051
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1052
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1053
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1054
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1055
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1056
+ Processing by RailsWebCache::KeysController#destroy as HTML
1057
+ Parameters: {"key"=>"RailsWebCache"}
1058
+ Redirected to http://test.host/rails_web_cache/
1059
+ Completed 302 Found in 0ms (Allocations: 200)
1060
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1061
+ Parameters: {"keys"=>["RailsWebCache"]}
1062
+ Redirected to http://test.host/rails_web_cache/
1063
+ Completed 302 Found in 0ms (Allocations: 165)
1064
+ Processing by RailsWebCache::KeysController#index as HTML
1065
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1066
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1067
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1068
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1069
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 2748)
1070
+ Processing by RailsWebCache::KeysController#index as HTML
1071
+ Parameters: {"query"=>"Search"}
1072
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1073
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1074
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1075
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1076
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1077
+ Processing by RailsWebCache::KeysController#show as HTML
1078
+ Parameters: {"key"=>"RailsWebCache"}
1079
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1080
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1081
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1082
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1083
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1084
+ Processing by RailsWebCache::KeysController#destroy as HTML
1085
+ Parameters: {"key"=>"RailsWebCache"}
1086
+ Redirected to http://test.host/rails_web_cache/
1087
+ Completed 302 Found in 0ms (Allocations: 200)
1088
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1089
+ Parameters: {"keys"=>["RailsWebCache"]}
1090
+ Redirected to http://test.host/rails_web_cache/
1091
+ Completed 302 Found in 0ms (Allocations: 165)
1092
+ Processing by RailsWebCache::KeysController#index as HTML
1093
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1094
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1095
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 1.2ms | Allocations: 267)
1096
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1097
+ Completed 200 OK in 6ms (Views: 4.8ms | Allocations: 2748)
1098
+ Processing by RailsWebCache::KeysController#index as HTML
1099
+ Parameters: {"query"=>"Search"}
1100
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1101
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1102
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1103
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1104
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
1105
+ Processing by RailsWebCache::KeysController#show as HTML
1106
+ Parameters: {"key"=>"RailsWebCache"}
1107
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1108
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1109
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1110
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1111
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1112
+ Processing by RailsWebCache::KeysController#destroy as HTML
1113
+ Parameters: {"key"=>"RailsWebCache"}
1114
+ Redirected to http://test.host/rails_web_cache/
1115
+ Completed 302 Found in 0ms (Allocations: 200)
1116
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1117
+ Parameters: {"keys"=>["RailsWebCache"]}
1118
+ Redirected to http://test.host/rails_web_cache/
1119
+ Completed 302 Found in 0ms (Allocations: 165)
1120
+ Processing by RailsWebCache::KeysController#index as HTML
1121
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1122
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1123
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
1124
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1125
+ Completed 200 OK in 5ms (Views: 3.5ms | Allocations: 2748)
1126
+ Processing by RailsWebCache::KeysController#index as HTML
1127
+ Parameters: {"query"=>"Search"}
1128
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1129
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1130
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1131
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1132
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1133
+ Processing by RailsWebCache::KeysController#show as HTML
1134
+ Parameters: {"key"=>"RailsWebCache"}
1135
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1136
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1137
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1138
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1139
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1140
+ Processing by RailsWebCache::KeysController#destroy as HTML
1141
+ Parameters: {"key"=>"RailsWebCache"}
1142
+ Redirected to http://test.host/rails_web_cache/
1143
+ Completed 302 Found in 0ms (Allocations: 200)
1144
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1145
+ Parameters: {"keys"=>["RailsWebCache"]}
1146
+ Redirected to http://test.host/rails_web_cache/
1147
+ Completed 302 Found in 0ms (Allocations: 165)
1148
+ Processing by RailsWebCache::KeysController#index as HTML
1149
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1150
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1151
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1152
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1153
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
1154
+ Processing by RailsWebCache::KeysController#index as HTML
1155
+ Parameters: {"query"=>"Search"}
1156
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1157
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1158
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1159
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1160
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1161
+ Processing by RailsWebCache::KeysController#show as HTML
1162
+ Parameters: {"key"=>"RailsWebCache"}
1163
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1164
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1165
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.3ms | Allocations: 57)
1166
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1167
+ Completed 200 OK in 2ms (Views: 1.0ms | Allocations: 671)
1168
+ Processing by RailsWebCache::KeysController#destroy as HTML
1169
+ Parameters: {"key"=>"RailsWebCache"}
1170
+ Redirected to http://test.host/rails_web_cache/
1171
+ Completed 302 Found in 0ms (Allocations: 200)
1172
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1173
+ Parameters: {"keys"=>["RailsWebCache"]}
1174
+ Redirected to http://test.host/rails_web_cache/
1175
+ Completed 302 Found in 0ms (Allocations: 165)
1176
+ Processing by RailsWebCache::KeysController#index as HTML
1177
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1178
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1179
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1180
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1181
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
1182
+ Processing by RailsWebCache::KeysController#index as HTML
1183
+ Parameters: {"query"=>"Search"}
1184
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1185
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1186
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1187
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1188
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1189
+ Processing by RailsWebCache::KeysController#show as HTML
1190
+ Parameters: {"key"=>"RailsWebCache"}
1191
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1192
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1193
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1194
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1195
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1196
+ Processing by RailsWebCache::KeysController#destroy as HTML
1197
+ Parameters: {"key"=>"RailsWebCache"}
1198
+ Redirected to http://test.host/rails_web_cache/
1199
+ Completed 302 Found in 0ms (Allocations: 200)
1200
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1201
+ Parameters: {"keys"=>["RailsWebCache"]}
1202
+ Redirected to http://test.host/rails_web_cache/
1203
+ Completed 302 Found in 0ms (Allocations: 165)
1204
+ Processing by RailsWebCache::KeysController#index as HTML
1205
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1206
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1207
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.9ms | Allocations: 267)
1208
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1209
+ Completed 200 OK in 7ms (Views: 5.0ms | Allocations: 2748)
1210
+ Processing by RailsWebCache::KeysController#index as HTML
1211
+ Parameters: {"query"=>"Search"}
1212
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1213
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1214
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1215
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1216
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
1217
+ Processing by RailsWebCache::KeysController#show as HTML
1218
+ Parameters: {"key"=>"RailsWebCache"}
1219
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1220
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1221
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1222
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1223
+ Completed 200 OK in 5ms (Views: 0.7ms | Allocations: 671)
1224
+ Processing by RailsWebCache::KeysController#destroy as HTML
1225
+ Parameters: {"key"=>"RailsWebCache"}
1226
+ Redirected to http://test.host/rails_web_cache/
1227
+ Completed 302 Found in 0ms (Allocations: 200)
1228
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1229
+ Parameters: {"keys"=>["RailsWebCache"]}
1230
+ Redirected to http://test.host/rails_web_cache/
1231
+ Completed 302 Found in 0ms (Allocations: 165)
1232
+ Processing by RailsWebCache::KeysController#index as HTML
1233
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1234
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1235
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 1.2ms | Allocations: 267)
1236
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1237
+ Completed 200 OK in 10ms (Views: 6.2ms | Allocations: 2748)
1238
+ Processing by RailsWebCache::KeysController#index as HTML
1239
+ Parameters: {"query"=>"Search"}
1240
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1241
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1242
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1243
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1244
+ Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 450)
1245
+ Processing by RailsWebCache::KeysController#show as HTML
1246
+ Parameters: {"key"=>"RailsWebCache"}
1247
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1248
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1249
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1250
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1251
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 671)
1252
+ Processing by RailsWebCache::KeysController#destroy as HTML
1253
+ Parameters: {"key"=>"RailsWebCache"}
1254
+ Redirected to http://test.host/rails_web_cache/
1255
+ Completed 302 Found in 0ms (Allocations: 200)
1256
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1257
+ Parameters: {"keys"=>["RailsWebCache"]}
1258
+ Redirected to http://test.host/rails_web_cache/
1259
+ Completed 302 Found in 0ms (Allocations: 165)
1260
+ Processing by RailsWebCache::KeysController#index as HTML
1261
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1262
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1263
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1264
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1265
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
1266
+ Processing by RailsWebCache::KeysController#index as HTML
1267
+ Parameters: {"query"=>"Search"}
1268
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1269
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1270
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1271
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1272
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1273
+ Processing by RailsWebCache::KeysController#show as HTML
1274
+ Parameters: {"key"=>"RailsWebCache"}
1275
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1276
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1277
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1278
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1279
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1280
+ Processing by RailsWebCache::KeysController#destroy as HTML
1281
+ Parameters: {"key"=>"RailsWebCache"}
1282
+ Redirected to http://test.host/rails_web_cache/
1283
+ Completed 302 Found in 0ms (Allocations: 200)
1284
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1285
+ Parameters: {"keys"=>["RailsWebCache"]}
1286
+ Redirected to http://test.host/rails_web_cache/
1287
+ Completed 302 Found in 0ms (Allocations: 165)
1288
+ Processing by RailsWebCache::KeysController#index as HTML
1289
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1290
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1291
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1292
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1293
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
1294
+ Processing by RailsWebCache::KeysController#index as HTML
1295
+ Parameters: {"query"=>"Search"}
1296
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1297
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1298
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1299
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1300
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
1301
+ Processing by RailsWebCache::KeysController#show as HTML
1302
+ Parameters: {"key"=>"RailsWebCache"}
1303
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1304
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1305
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1306
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1307
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1308
+ Processing by RailsWebCache::KeysController#destroy as HTML
1309
+ Parameters: {"key"=>"RailsWebCache"}
1310
+ Redirected to http://test.host/rails_web_cache/
1311
+ Completed 302 Found in 0ms (Allocations: 200)
1312
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1313
+ Parameters: {"keys"=>["RailsWebCache"]}
1314
+ Redirected to http://test.host/rails_web_cache/
1315
+ Completed 302 Found in 0ms (Allocations: 165)
1316
+ Processing by RailsWebCache::KeysController#index as HTML
1317
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1318
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1319
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1320
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1321
+ Completed 200 OK in 4ms (Views: 2.7ms | Allocations: 2747)
1322
+ Processing by RailsWebCache::KeysController#index as HTML
1323
+ Parameters: {"query"=>"Search"}
1324
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1325
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1326
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1327
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1328
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1329
+ Processing by RailsWebCache::KeysController#show as HTML
1330
+ Parameters: {"key"=>"RailsWebCache"}
1331
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1332
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1333
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1334
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1335
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1336
+ Processing by RailsWebCache::KeysController#destroy as HTML
1337
+ Parameters: {"key"=>"RailsWebCache"}
1338
+ Redirected to http://test.host/rails_web_cache/
1339
+ Completed 302 Found in 0ms (Allocations: 200)
1340
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1341
+ Parameters: {"keys"=>["RailsWebCache"]}
1342
+ Redirected to http://test.host/rails_web_cache/
1343
+ Completed 302 Found in 0ms (Allocations: 165)
1344
+ Processing by RailsWebCache::KeysController#index as HTML
1345
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1346
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1347
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1348
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1349
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2748)
1350
+ Processing by RailsWebCache::KeysController#index as HTML
1351
+ Parameters: {"query"=>"Search"}
1352
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1353
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1354
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1355
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1356
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1357
+ Processing by RailsWebCache::KeysController#show as HTML
1358
+ Parameters: {"key"=>"RailsWebCache"}
1359
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1360
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1361
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1362
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1363
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1364
+ Processing by RailsWebCache::KeysController#destroy as HTML
1365
+ Parameters: {"key"=>"RailsWebCache"}
1366
+ Redirected to http://test.host/rails_web_cache/
1367
+ Completed 302 Found in 0ms (Allocations: 200)
1368
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1369
+ Parameters: {"keys"=>["RailsWebCache"]}
1370
+ Redirected to http://test.host/rails_web_cache/
1371
+ Completed 302 Found in 0ms (Allocations: 165)
1372
+ Processing by RailsWebCache::KeysController#index as HTML
1373
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1374
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1375
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1376
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1377
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2748)
1378
+ Processing by RailsWebCache::KeysController#index as HTML
1379
+ Parameters: {"query"=>"Search"}
1380
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1381
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1382
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1383
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1384
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1385
+ Processing by RailsWebCache::KeysController#show as HTML
1386
+ Parameters: {"key"=>"RailsWebCache"}
1387
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1388
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1389
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1390
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1391
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1392
+ Processing by RailsWebCache::KeysController#destroy as HTML
1393
+ Parameters: {"key"=>"RailsWebCache"}
1394
+ Redirected to http://test.host/rails_web_cache/
1395
+ Completed 302 Found in 0ms (Allocations: 200)
1396
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1397
+ Parameters: {"keys"=>["RailsWebCache"]}
1398
+ Redirected to http://test.host/rails_web_cache/
1399
+ Completed 302 Found in 0ms (Allocations: 165)
1400
+ Processing by RailsWebCache::KeysController#index as HTML
1401
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1402
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1403
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
1404
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1405
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2748)
1406
+ Processing by RailsWebCache::KeysController#index as HTML
1407
+ Parameters: {"query"=>"Search"}
1408
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1409
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1410
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1411
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1412
+ Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 450)
1413
+ Processing by RailsWebCache::KeysController#show as HTML
1414
+ Parameters: {"key"=>"RailsWebCache"}
1415
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1416
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1417
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1418
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1419
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1420
+ Processing by RailsWebCache::KeysController#destroy as HTML
1421
+ Parameters: {"key"=>"RailsWebCache"}
1422
+ Redirected to http://test.host/rails_web_cache/
1423
+ Completed 302 Found in 0ms (Allocations: 200)
1424
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1425
+ Parameters: {"keys"=>["RailsWebCache"]}
1426
+ Redirected to http://test.host/rails_web_cache/
1427
+ Completed 302 Found in 0ms (Allocations: 165)
1428
+ Processing by RailsWebCache::KeysController#index as HTML
1429
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1430
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1431
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
1432
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1433
+ Completed 200 OK in 5ms (Views: 3.3ms | Allocations: 2748)
1434
+ Processing by RailsWebCache::KeysController#index as HTML
1435
+ Parameters: {"query"=>"Search"}
1436
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1437
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1438
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1439
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1440
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1441
+ Processing by RailsWebCache::KeysController#show as HTML
1442
+ Parameters: {"key"=>"RailsWebCache"}
1443
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1444
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1445
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
1446
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1447
+ Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 671)
1448
+ Processing by RailsWebCache::KeysController#destroy as HTML
1449
+ Parameters: {"key"=>"RailsWebCache"}
1450
+ Redirected to http://test.host/rails_web_cache/
1451
+ Completed 302 Found in 0ms (Allocations: 200)
1452
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1453
+ Parameters: {"keys"=>["RailsWebCache"]}
1454
+ Redirected to http://test.host/rails_web_cache/
1455
+ Completed 302 Found in 0ms (Allocations: 165)
1456
+ Processing by RailsWebCache::KeysController#index as HTML
1457
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1458
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1459
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
1460
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1461
+ Completed 200 OK in 5ms (Views: 3.5ms | Allocations: 2747)
1462
+ Processing by RailsWebCache::KeysController#index as HTML
1463
+ Parameters: {"query"=>"Search"}
1464
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1465
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1466
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1467
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1468
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
1469
+ Processing by RailsWebCache::KeysController#show as HTML
1470
+ Parameters: {"key"=>"RailsWebCache"}
1471
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1472
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1473
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1474
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1475
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 671)
1476
+ Processing by RailsWebCache::KeysController#destroy as HTML
1477
+ Parameters: {"key"=>"RailsWebCache"}
1478
+ Redirected to http://test.host/rails_web_cache/
1479
+ Completed 302 Found in 0ms (Allocations: 200)
1480
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1481
+ Parameters: {"keys"=>["RailsWebCache"]}
1482
+ Redirected to http://test.host/rails_web_cache/
1483
+ Completed 302 Found in 0ms (Allocations: 165)
1484
+ Processing by RailsWebCache::KeysController#index as HTML
1485
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1486
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1487
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
1488
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1489
+ Completed 200 OK in 4ms (Views: 2.9ms | Allocations: 2748)
1490
+ Processing by RailsWebCache::KeysController#index as HTML
1491
+ Parameters: {"query"=>"Search"}
1492
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1493
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1494
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1495
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1496
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
1497
+ Processing by RailsWebCache::KeysController#show as HTML
1498
+ Parameters: {"key"=>"RailsWebCache"}
1499
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1500
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1501
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1502
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1503
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1504
+ Processing by RailsWebCache::KeysController#destroy as HTML
1505
+ Parameters: {"key"=>"RailsWebCache"}
1506
+ Redirected to http://test.host/rails_web_cache/
1507
+ Completed 302 Found in 1ms (Allocations: 200)
1508
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1509
+ Parameters: {"keys"=>["RailsWebCache"]}
1510
+ Redirected to http://test.host/rails_web_cache/
1511
+ Completed 302 Found in 0ms (Allocations: 165)
1512
+ Processing by RailsWebCache::KeysController#index as HTML
1513
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1514
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1515
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1516
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1517
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
1518
+ Processing by RailsWebCache::KeysController#index as HTML
1519
+ Parameters: {"query"=>"Search"}
1520
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1521
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1522
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1523
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1524
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1525
+ Processing by RailsWebCache::KeysController#show as HTML
1526
+ Parameters: {"key"=>"RailsWebCache"}
1527
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1528
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1529
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
1530
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1531
+ Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 671)
1532
+ Processing by RailsWebCache::KeysController#destroy as HTML
1533
+ Parameters: {"key"=>"RailsWebCache"}
1534
+ Redirected to http://test.host/rails_web_cache/
1535
+ Completed 302 Found in 0ms (Allocations: 200)
1536
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1537
+ Parameters: {"keys"=>["RailsWebCache"]}
1538
+ Redirected to http://test.host/rails_web_cache/
1539
+ Completed 302 Found in 0ms (Allocations: 165)
1540
+ Processing by RailsWebCache::KeysController#index as HTML
1541
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1542
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1543
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1544
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1545
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2748)
1546
+ Processing by RailsWebCache::KeysController#index as HTML
1547
+ Parameters: {"query"=>"Search"}
1548
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1549
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1550
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1551
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1552
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1553
+ Processing by RailsWebCache::KeysController#show as HTML
1554
+ Parameters: {"key"=>"RailsWebCache"}
1555
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1556
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1557
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1558
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1559
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1560
+ Processing by RailsWebCache::KeysController#destroy as HTML
1561
+ Parameters: {"key"=>"RailsWebCache"}
1562
+ Redirected to http://test.host/rails_web_cache/
1563
+ Completed 302 Found in 0ms (Allocations: 200)
1564
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1565
+ Parameters: {"keys"=>["RailsWebCache"]}
1566
+ Redirected to http://test.host/rails_web_cache/
1567
+ Completed 302 Found in 0ms (Allocations: 165)
1568
+ Processing by RailsWebCache::KeysController#index as HTML
1569
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1570
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1571
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
1572
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1573
+ Completed 200 OK in 5ms (Views: 3.3ms | Allocations: 2747)
1574
+ Processing by RailsWebCache::KeysController#index as HTML
1575
+ Parameters: {"query"=>"Search"}
1576
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1577
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1578
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 55)
1579
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1580
+ Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 450)
1581
+ Processing by RailsWebCache::KeysController#show as HTML
1582
+ Parameters: {"key"=>"RailsWebCache"}
1583
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1584
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1585
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1586
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1587
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1588
+ Processing by RailsWebCache::KeysController#destroy as HTML
1589
+ Parameters: {"key"=>"RailsWebCache"}
1590
+ Redirected to http://test.host/rails_web_cache/
1591
+ Completed 302 Found in 0ms (Allocations: 200)
1592
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1593
+ Parameters: {"keys"=>["RailsWebCache"]}
1594
+ Redirected to http://test.host/rails_web_cache/
1595
+ Completed 302 Found in 0ms (Allocations: 165)
1596
+ Processing by RailsWebCache::KeysController#index as HTML
1597
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1598
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1599
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1600
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1601
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2747)
1602
+ Processing by RailsWebCache::KeysController#index as HTML
1603
+ Parameters: {"query"=>"Search"}
1604
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1605
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1606
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1607
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1608
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1609
+ Processing by RailsWebCache::KeysController#show as HTML
1610
+ Parameters: {"key"=>"RailsWebCache"}
1611
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1612
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1613
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1614
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1615
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1616
+ Processing by RailsWebCache::KeysController#destroy as HTML
1617
+ Parameters: {"key"=>"RailsWebCache"}
1618
+ Redirected to http://test.host/rails_web_cache/
1619
+ Completed 302 Found in 0ms (Allocations: 200)
1620
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1621
+ Parameters: {"keys"=>["RailsWebCache"]}
1622
+ Redirected to http://test.host/rails_web_cache/
1623
+ Completed 302 Found in 0ms (Allocations: 165)
1624
+ Processing by RailsWebCache::KeysController#index as HTML
1625
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1626
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1627
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.9ms | Allocations: 267)
1628
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1629
+ Completed 200 OK in 8ms (Views: 5.2ms | Allocations: 2748)
1630
+ Processing by RailsWebCache::KeysController#index as HTML
1631
+ Parameters: {"query"=>"Search"}
1632
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1633
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1634
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.3ms | Allocations: 55)
1635
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1636
+ Completed 200 OK in 1ms (Views: 1.0ms | Allocations: 450)
1637
+ Processing by RailsWebCache::KeysController#show as HTML
1638
+ Parameters: {"key"=>"RailsWebCache"}
1639
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1640
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1641
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1642
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1643
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1644
+ Processing by RailsWebCache::KeysController#destroy as HTML
1645
+ Parameters: {"key"=>"RailsWebCache"}
1646
+ Redirected to http://test.host/rails_web_cache/
1647
+ Completed 302 Found in 0ms (Allocations: 200)
1648
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1649
+ Parameters: {"keys"=>["RailsWebCache"]}
1650
+ Redirected to http://test.host/rails_web_cache/
1651
+ Completed 302 Found in 0ms (Allocations: 165)
1652
+ Processing by RailsWebCache::KeysController#index as HTML
1653
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1654
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1655
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
1656
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1657
+ Completed 200 OK in 5ms (Views: 3.0ms | Allocations: 2748)
1658
+ Processing by RailsWebCache::KeysController#index as HTML
1659
+ Parameters: {"query"=>"Search"}
1660
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1661
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1662
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 55)
1663
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1664
+ Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 450)
1665
+ Processing by RailsWebCache::KeysController#show as HTML
1666
+ Parameters: {"key"=>"RailsWebCache"}
1667
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1668
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1669
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
1670
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1671
+ Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 671)
1672
+ Processing by RailsWebCache::KeysController#destroy as HTML
1673
+ Parameters: {"key"=>"RailsWebCache"}
1674
+ Redirected to http://test.host/rails_web_cache/
1675
+ Completed 302 Found in 0ms (Allocations: 200)
1676
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1677
+ Parameters: {"keys"=>["RailsWebCache"]}
1678
+ Redirected to http://test.host/rails_web_cache/
1679
+ Completed 302 Found in 0ms (Allocations: 165)
1680
+ Processing by RailsWebCache::KeysController#index as HTML
1681
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1682
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1683
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.5ms | Allocations: 267)
1684
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1685
+ Completed 200 OK in 7ms (Views: 5.4ms | Allocations: 2747)
1686
+ Processing by RailsWebCache::KeysController#index as HTML
1687
+ Parameters: {"query"=>"Search"}
1688
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1689
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1690
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1691
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1692
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1693
+ Processing by RailsWebCache::KeysController#show as HTML
1694
+ Parameters: {"key"=>"RailsWebCache"}
1695
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1696
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1697
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
1698
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1699
+ Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 671)
1700
+ Processing by RailsWebCache::KeysController#destroy as HTML
1701
+ Parameters: {"key"=>"RailsWebCache"}
1702
+ Redirected to http://test.host/rails_web_cache/
1703
+ Completed 302 Found in 0ms (Allocations: 200)
1704
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1705
+ Parameters: {"keys"=>["RailsWebCache"]}
1706
+ Redirected to http://test.host/rails_web_cache/
1707
+ Completed 302 Found in 0ms (Allocations: 165)
1708
+ Processing by RailsWebCache::KeysController#index as HTML
1709
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1710
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1711
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.9ms | Allocations: 267)
1712
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1713
+ Completed 200 OK in 6ms (Views: 3.9ms | Allocations: 2747)
1714
+ Processing by RailsWebCache::KeysController#index as HTML
1715
+ Parameters: {"query"=>"Search"}
1716
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1717
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1718
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1719
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1720
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
1721
+ Processing by RailsWebCache::KeysController#show as HTML
1722
+ Parameters: {"key"=>"RailsWebCache"}
1723
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1724
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1725
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1726
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1727
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1728
+ Processing by RailsWebCache::KeysController#destroy as HTML
1729
+ Parameters: {"key"=>"RailsWebCache"}
1730
+ Redirected to http://test.host/rails_web_cache/
1731
+ Completed 302 Found in 0ms (Allocations: 200)
1732
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1733
+ Parameters: {"keys"=>["RailsWebCache"]}
1734
+ Redirected to http://test.host/rails_web_cache/
1735
+ Completed 302 Found in 1ms (Allocations: 165)
1736
+ Processing by RailsWebCache::KeysController#index as HTML
1737
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1738
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1739
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.7ms | Allocations: 267)
1740
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1741
+ Completed 200 OK in 6ms (Views: 3.5ms | Allocations: 2747)
1742
+ Processing by RailsWebCache::KeysController#index as HTML
1743
+ Parameters: {"query"=>"Search"}
1744
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1745
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1746
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1747
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1748
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 450)
1749
+ Processing by RailsWebCache::KeysController#show as HTML
1750
+ Parameters: {"key"=>"RailsWebCache"}
1751
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1752
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1753
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.2ms | Allocations: 57)
1754
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1755
+ Completed 200 OK in 2ms (Views: 0.7ms | Allocations: 671)
1756
+ Processing by RailsWebCache::KeysController#destroy as HTML
1757
+ Parameters: {"key"=>"RailsWebCache"}
1758
+ Redirected to http://test.host/rails_web_cache/
1759
+ Completed 302 Found in 0ms (Allocations: 200)
1760
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1761
+ Parameters: {"keys"=>["RailsWebCache"]}
1762
+ Redirected to http://test.host/rails_web_cache/
1763
+ Completed 302 Found in 0ms (Allocations: 165)
1764
+ Processing by RailsWebCache::KeysController#index as HTML
1765
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1766
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1767
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.4ms | Allocations: 267)
1768
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1769
+ Completed 200 OK in 4ms (Views: 2.8ms | Allocations: 2747)
1770
+ Processing by RailsWebCache::KeysController#index as HTML
1771
+ Parameters: {"query"=>"Search"}
1772
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application
1773
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1774
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/index.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 55)
1775
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1776
+ Completed 200 OK in 1ms (Views: 0.4ms | Allocations: 450)
1777
+ Processing by RailsWebCache::KeysController#show as HTML
1778
+ Parameters: {"key"=>"RailsWebCache"}
1779
+ Rendering /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application
1780
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1781
+ Rendered /Users/boris/Gems/rails_web_cache/app/views/rails_web_cache/keys/show.html.erb within layouts/rails_web_cache/application (Duration: 0.1ms | Allocations: 57)
1782
+ Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
1783
+ Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 671)
1784
+ Processing by RailsWebCache::KeysController#destroy as HTML
1785
+ Parameters: {"key"=>"RailsWebCache"}
1786
+ Redirected to http://test.host/rails_web_cache/
1787
+ Completed 302 Found in 0ms (Allocations: 200)
1788
+ Processing by RailsWebCache::KeysController#destroy_all as HTML
1789
+ Parameters: {"keys"=>["RailsWebCache"]}
1790
+ Redirected to http://test.host/rails_web_cache/
1791
+ Completed 302 Found in 0ms (Allocations: 165)