micro_sessions 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Appraisals +8 -0
- data/Gemfile +4 -5
- data/Gemfile.lock +36 -34
- data/README.md +91 -0
- data/Rakefile +2 -25
- data/lib/micro_session/engine.rb +20 -0
- data/lib/micro_session/store.rb +60 -0
- data/lib/micro_session/version.rb +4 -0
- data/lib/micro_sessions.rb +2 -16
- data/spec/controllers/humans_controller_spec.rb +9 -0
- data/spec/controllers/mutants_controller_spec.rb +31 -0
- data/spec/dummy/app/controllers/application_controller.rb +2 -0
- data/spec/dummy/app/controllers/humans_controller.rb +9 -0
- data/spec/dummy/app/controllers/mutants_controller.rb +12 -0
- data/spec/dummy/app/views/humans/index.html.erb +1 -0
- data/spec/dummy/app/views/mutants/index.html.erb +9 -0
- data/spec/dummy/app/views/mutants/show.html.erb +3 -0
- data/spec/dummy/config/database.yml +2 -0
- data/spec/dummy/config/routes.rb +4 -0
- data/spec/dummy/init.rb +32 -0
- data/spec/dummy/log/test.log +1327 -0
- data/spec/features/persisting_session_using_links_spec.rb +23 -0
- data/spec/rails_helper.rb +17 -0
- data/spec/spec_helper.rb +16 -7
- metadata +31 -19
- data/README.rdoc +0 -80
- data/lib/micro_sessions/controller.rb +0 -30
- data/lib/micro_sessions/helpers.rb +0 -37
- data/lib/micro_sessions/micro_session.rb +0 -48
- data/lib/micro_sessions/railtie.rb +0 -31
- data/lib/micro_sessions/version.rb +0 -3
- data/spec/controller_spec.rb +0 -80
- data/spec/helpers_spec.rb +0 -25
@@ -0,0 +1 @@
|
|
1
|
+
<h1>Humans#index</h1>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<h1>Mutants#index page.</h1>
|
2
|
+
|
3
|
+
<% micro_session['bar'] = 'Wolverine' %>
|
4
|
+
|
5
|
+
<b>MicroSession custom link</b>
|
6
|
+
<%= ms_link_to 'MS Link', mutant_path(id: 'bar'), { id: 'micro_session_link' } %>
|
7
|
+
|
8
|
+
<b>Rails standard link</b>
|
9
|
+
<%= link_to 'Non MS Link', mutant_path(id: 'bar'), { id: 'rails_standard_link' } %>
|
data/spec/dummy/init.rb
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
ENV['RAILS_ENV'] ||= 'test'
|
2
|
+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../Gemfile', __FILE__)
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'rails/all'
|
5
|
+
Bundler.require(:default, Rails.env)
|
6
|
+
|
7
|
+
module Dummy
|
8
|
+
class Application < ::Rails::Application
|
9
|
+
# Basic Engine
|
10
|
+
config.root = File.join __FILE__, '..'
|
11
|
+
config.cache_store = :memory_store
|
12
|
+
config.secret_token = '012345678901234567890123456789'
|
13
|
+
config.active_support.test_order = :random
|
14
|
+
|
15
|
+
# Mimic Test Environment Config.
|
16
|
+
config.whiny_nils = true if Rails.version < '4.0'
|
17
|
+
config.consider_all_requests_local = true
|
18
|
+
config.action_controller.perform_caching = false
|
19
|
+
config.action_dispatch.show_exceptions = false
|
20
|
+
config.action_controller.allow_forgery_protection = false
|
21
|
+
config.action_mailer.delivery_method = :test
|
22
|
+
config.active_support.deprecation = :stderr
|
23
|
+
config.allow_concurrency = true
|
24
|
+
config.cache_classes = true
|
25
|
+
config.dependency_loading = true
|
26
|
+
config.preload_frameworks = true
|
27
|
+
config.eager_load = true
|
28
|
+
config.secret_key_base = '012345678901234567890123456789'
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
Dummy::Application.initialize!
|
@@ -0,0 +1,1327 @@
|
|
1
|
+
Processing by MutantsController#index as HTML
|
2
|
+
Completed 500 Internal Server Error in 4ms
|
3
|
+
Processing by MutantsController#index as HTML
|
4
|
+
Parameters: {"_msid"=>"test"}
|
5
|
+
Completed 500 Internal Server Error in 0ms
|
6
|
+
Processing by MutantsController#index as HTML
|
7
|
+
Completed 500 Internal Server Error in 1ms
|
8
|
+
Processing by MutantsController#index as HTML
|
9
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
10
|
+
Rendered mutants/index.html.erb (0.2ms)
|
11
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
12
|
+
Processing by MutantsController#index as HTML
|
13
|
+
Parameters: {"_msid"=>"test"}
|
14
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
15
|
+
Processing by MutantsController#index as HTML
|
16
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
17
|
+
Processing by MutantsController#index as HTML
|
18
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
19
|
+
Rendered mutants/index.html.erb (0.3ms)
|
20
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
21
|
+
Processing by MutantsController#index as HTML
|
22
|
+
Parameters: {"_msid"=>"test2"}
|
23
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
24
|
+
Processing by MutantsController#index as HTML
|
25
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
26
|
+
Processing by MutantsController#index as HTML
|
27
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
28
|
+
Rendered mutants/index.html.erb (0.4ms)
|
29
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
30
|
+
Processing by MutantsController#index as HTML
|
31
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
32
|
+
Processing by MutantsController#index as HTML
|
33
|
+
Parameters: {"_msid"=>"test2"}
|
34
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
35
|
+
Processing by MutantsController#index as HTML
|
36
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
37
|
+
Rendered mutants/index.html.erb (0.3ms)
|
38
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
39
|
+
Processing by MutantsController#index as HTML
|
40
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
41
|
+
Processing by MutantsController#index as HTML
|
42
|
+
Parameters: {"_msid"=>"test2"}
|
43
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
44
|
+
Processing by MutantsController#index as HTML
|
45
|
+
Parameters: {"_msid"=>"test2"}
|
46
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
47
|
+
Rendered mutants/index.html.erb (0.3ms)
|
48
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
49
|
+
Processing by MutantsController#index as HTML
|
50
|
+
Parameters: {"_msid"=>"test2"}
|
51
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
52
|
+
Rendered mutants/index.html.erb (0.3ms)
|
53
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
54
|
+
Processing by MutantsController#index as HTML
|
55
|
+
Parameters: {"_msid"=>"sdajkhsadjkhashdjasdkhj"}
|
56
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
57
|
+
Rendered mutants/index.html.erb (0.9ms)
|
58
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
59
|
+
Processing by MutantsController#index as HTML
|
60
|
+
Parameters: {"_msid"=>"sdajkhsadjkhashdjasdkhj"}
|
61
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
62
|
+
Rendered mutants/index.html.erb (0.3ms)
|
63
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
64
|
+
Processing by MutantsController#index as HTML
|
65
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
66
|
+
Rendered mutants/index.html.erb (0.2ms)
|
67
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
68
|
+
Processing by MutantsController#index as HTML
|
69
|
+
Rendered mutants/index.html.erb (0.0ms)
|
70
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
71
|
+
Processing by MutantsController#index as HTML
|
72
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
73
|
+
Rendered mutants/index.html.erb (0.3ms)
|
74
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
75
|
+
Processing by MutantsController#index as HTML
|
76
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
77
|
+
Rendered mutants/index.html.erb (0.3ms)
|
78
|
+
Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
|
79
|
+
Processing by MutantsController#index as HTML
|
80
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
81
|
+
Rendered mutants/index.html.erb (0.5ms)
|
82
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
83
|
+
Processing by MutantsController#index as HTML
|
84
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
85
|
+
Rendered mutants/index.html.erb (0.3ms)
|
86
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
87
|
+
Processing by MutantsController#index as HTML
|
88
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
89
|
+
Rendered mutants/index.html.erb (0.3ms)
|
90
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
91
|
+
Processing by MutantsController#index as HTML
|
92
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
93
|
+
Rendered mutants/index.html.erb (0.3ms)
|
94
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
95
|
+
Processing by MutantsController#index as HTML
|
96
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
97
|
+
Processing by MutantsController#index as HTML
|
98
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
99
|
+
Processing by MutantsController#index as HTML
|
100
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
101
|
+
Rendered mutants/index.html.erb (0.3ms)
|
102
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
103
|
+
Processing by MutantsController#index as HTML
|
104
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
105
|
+
Processing by MutantsController#index as HTML
|
106
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
107
|
+
Processing by MutantsController#index as HTML
|
108
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
109
|
+
Rendered mutants/index.html.erb (0.3ms)
|
110
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
111
|
+
Processing by MutantsController#index as HTML
|
112
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
113
|
+
Processing by MutantsController#index as HTML
|
114
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
115
|
+
Processing by MutantsController#index as HTML
|
116
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
117
|
+
Rendered mutants/index.html.erb (0.3ms)
|
118
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
119
|
+
Processing by MutantsController#index as HTML
|
120
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
121
|
+
Processing by MutantsController#index as HTML
|
122
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
123
|
+
Connecting to database specified by database.yml
|
124
|
+
Processing by MutantsController#index as HTML
|
125
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
126
|
+
Rendered mutants/index.html.erb (0.2ms)
|
127
|
+
Completed 200 OK in 2.2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
128
|
+
Processing by MutantsController#index as HTML
|
129
|
+
Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
130
|
+
Processing by MutantsController#index as HTML
|
131
|
+
Completed 200 OK in 0.6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
132
|
+
Processing by MutantsController#index as HTML
|
133
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
134
|
+
Rendered mutants/index.html.erb (0.3ms)
|
135
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
136
|
+
Processing by MutantsController#index as HTML
|
137
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
138
|
+
Processing by MutantsController#index as HTML
|
139
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
140
|
+
Processing by MutantsController#index as HTML
|
141
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
142
|
+
Rendered mutants/index.html.erb (0.2ms)
|
143
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
144
|
+
Processing by MutantsController#index as HTML
|
145
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
146
|
+
Processing by MutantsController#index as HTML
|
147
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
148
|
+
Processing by MutantsController#index as HTML
|
149
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
150
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
151
|
+
Processing by MutantsController#index as HTML
|
152
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
153
|
+
Processing by MutantsController#index as HTML
|
154
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
155
|
+
Processing by MutantsController#index as HTML
|
156
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
157
|
+
Rendered mutants/index.html.erb (0.3ms)
|
158
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
159
|
+
Processing by MutantsController#index as HTML
|
160
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
161
|
+
Processing by MutantsController#index as HTML
|
162
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
163
|
+
Connecting to database specified by database.yml
|
164
|
+
Processing by MutantsController#index as HTML
|
165
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
166
|
+
Rendered mutants/index.html.erb (0.2ms)
|
167
|
+
Completed 200 OK in 1.9ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
168
|
+
Processing by MutantsController#index as HTML
|
169
|
+
Completed 200 OK in 1.5ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
170
|
+
Processing by MutantsController#index as HTML
|
171
|
+
Completed 200 OK in 0.5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
172
|
+
Processing by MutantsController#index as HTML
|
173
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
174
|
+
Rendered mutants/index.html.erb (0.3ms)
|
175
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
176
|
+
Processing by MutantsController#index as HTML
|
177
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
178
|
+
Processing by MutantsController#index as HTML
|
179
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
180
|
+
Processing by MutantsController#index as HTML
|
181
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
182
|
+
Rendered mutants/index.html.erb (0.2ms)
|
183
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
184
|
+
Processing by MutantsController#index as HTML
|
185
|
+
Rendered mutants/index.html.erb (0.0ms)
|
186
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
187
|
+
Processing by MutantsController#index as HTML
|
188
|
+
Rendered mutants/index.html.erb (0.1ms)
|
189
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
190
|
+
Connecting to database specified by database.yml
|
191
|
+
Processing by MutantsController#index as HTML
|
192
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
193
|
+
Rendered mutants/index.html.erb (0.2ms)
|
194
|
+
Completed 200 OK in 3.2ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
195
|
+
Processing by MutantsController#index as HTML
|
196
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
197
|
+
Processing by MutantsController#index as HTML
|
198
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
199
|
+
Connecting to database specified by database.yml
|
200
|
+
Processing by MutantsController#index as HTML
|
201
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
202
|
+
Rendered mutants/index.html.erb (0.2ms)
|
203
|
+
Completed 200 OK in 4.3ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
204
|
+
Processing by MutantsController#index as HTML
|
205
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
206
|
+
Processing by MutantsController#index as HTML
|
207
|
+
Completed 200 OK in 0.3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
208
|
+
Processing by MutantsController#index as HTML
|
209
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
210
|
+
Rendered mutants/index.html.erb (0.3ms)
|
211
|
+
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
|
212
|
+
Processing by MutantsController#index as HTML
|
213
|
+
Rendered mutants/index.html.erb (0.1ms)
|
214
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
215
|
+
Processing by MutantsController#index as HTML
|
216
|
+
Rendered mutants/index.html.erb (0.0ms)
|
217
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
218
|
+
Processing by MutantsController#index as HTML
|
219
|
+
Rendering mutants/index.html.erb
|
220
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
221
|
+
Rendered mutants/index.html.erb (0.3ms)
|
222
|
+
Completed 200 OK in 10ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
223
|
+
Processing by MutantsController#index as HTML
|
224
|
+
Rendering mutants/index.html.erb
|
225
|
+
Rendered mutants/index.html.erb (0.0ms)
|
226
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
227
|
+
Processing by MutantsController#index as HTML
|
228
|
+
Rendering mutants/index.html.erb
|
229
|
+
Rendered mutants/index.html.erb (0.0ms)
|
230
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
231
|
+
Processing by MutantsController#index as HTML
|
232
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
233
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
234
|
+
Processing by MutantsController#index as HTML
|
235
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
236
|
+
Processing by MutantsController#index as HTML
|
237
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
238
|
+
Processing by MutantsController#index as HTML
|
239
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
240
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
241
|
+
Processing by MutantsController#index as HTML
|
242
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
243
|
+
Processing by MutantsController#index as HTML
|
244
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
245
|
+
Connecting to database specified by database.yml
|
246
|
+
Processing by MutantsController#index as HTML
|
247
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
248
|
+
Completed 200 OK in 2.2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
249
|
+
Processing by MutantsController#index as HTML
|
250
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
251
|
+
Processing by MutantsController#index as HTML
|
252
|
+
Completed 200 OK in 1.8ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
253
|
+
Processing by MutantsController#index as HTML
|
254
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
255
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
256
|
+
Processing by MutantsController#index as HTML
|
257
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
258
|
+
Processing by MutantsController#index as HTML
|
259
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
260
|
+
Processing by MutantsController#index as HTML
|
261
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
262
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
263
|
+
Processing by MutantsController#index as HTML
|
264
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
265
|
+
Processing by MutantsController#index as HTML
|
266
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
267
|
+
Processing by MutantsController#index as HTML
|
268
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
269
|
+
Rendered mutants/index.html.erb (0.3ms)
|
270
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
271
|
+
Processing by MutantsController#index as HTML
|
272
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
273
|
+
Processing by MutantsController#index as HTML
|
274
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
275
|
+
Processing by MutantsController#index as HTML
|
276
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
277
|
+
Rendered mutants/index.html.erb (0.3ms)
|
278
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
279
|
+
Processing by MutantsController#index as HTML
|
280
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
281
|
+
Processing by MutantsController#index as HTML
|
282
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
283
|
+
Connecting to database specified by database.yml
|
284
|
+
Processing by MutantsController#index as HTML
|
285
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
286
|
+
Completed 200 OK in 2.3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
287
|
+
Processing by MutantsController#index as HTML
|
288
|
+
Completed 200 OK in 0.5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
289
|
+
Processing by MutantsController#index as HTML
|
290
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
291
|
+
Processing by MutantsController#index as HTML
|
292
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
293
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
294
|
+
Processing by MutantsController#index as HTML
|
295
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
296
|
+
Processing by MutantsController#index as HTML
|
297
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
298
|
+
Processing by MutantsController#index as HTML
|
299
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
300
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
301
|
+
Processing by MutantsController#index as HTML
|
302
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
303
|
+
Processing by MutantsController#index as HTML
|
304
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
305
|
+
Processing by MutantsController#index as HTML
|
306
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
307
|
+
Rendered mutants/index.html.erb (0.4ms)
|
308
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
309
|
+
Processing by MutantsController#index as HTML
|
310
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
311
|
+
Processing by MutantsController#index as HTML
|
312
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
313
|
+
Connecting to database specified by database.yml
|
314
|
+
Processing by MutantsController#index as HTML
|
315
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
316
|
+
Rendered mutants/index.html.erb (0.2ms)
|
317
|
+
Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
318
|
+
Processing by MutantsController#index as HTML
|
319
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
320
|
+
Processing by MutantsController#index as HTML
|
321
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
322
|
+
Processing by MutantsController#index as HTML
|
323
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
324
|
+
Rendered mutants/index.html.erb (0.3ms)
|
325
|
+
Completed 200 OK in 3ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
326
|
+
Processing by MutantsController#index as HTML
|
327
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
328
|
+
Processing by MutantsController#index as HTML
|
329
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
330
|
+
Processing by MutantsController#index as HTML
|
331
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
332
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
333
|
+
Processing by MutantsController#index as HTML
|
334
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
335
|
+
Processing by MutantsController#index as HTML
|
336
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
337
|
+
Processing by MutantsController#index as HTML
|
338
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
339
|
+
Rendered mutants/index.html.erb (0.3ms)
|
340
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
341
|
+
Processing by MutantsController#index as HTML
|
342
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
343
|
+
Processing by MutantsController#index as HTML
|
344
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
345
|
+
Connecting to database specified by database.yml
|
346
|
+
Processing by MutantsController#index as HTML
|
347
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
348
|
+
Rendered mutants/index.html.erb (0.2ms)
|
349
|
+
Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
350
|
+
Processing by MutantsController#index as HTML
|
351
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
352
|
+
Processing by MutantsController#index as HTML
|
353
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
354
|
+
Processing by MutantsController#index as HTML
|
355
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
356
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
357
|
+
Processing by MutantsController#index as HTML
|
358
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
359
|
+
Processing by MutantsController#index as HTML
|
360
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
361
|
+
Processing by MutantsController#index as HTML
|
362
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
363
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
364
|
+
Processing by MutantsController#index as HTML
|
365
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
366
|
+
Processing by MutantsController#index as HTML
|
367
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
368
|
+
Processing by MutantsController#index as HTML
|
369
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
370
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
371
|
+
Processing by MutantsController#index as HTML
|
372
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
373
|
+
Processing by MutantsController#index as HTML
|
374
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
375
|
+
Processing by MutantsController#index as HTML
|
376
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
377
|
+
Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
378
|
+
Processing by MutantsController#index as HTML
|
379
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
380
|
+
Processing by MutantsController#index as HTML
|
381
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
382
|
+
Connecting to database specified by database.yml
|
383
|
+
Processing by MutantsController#index as HTML
|
384
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
385
|
+
Completed 200 OK in 2.0ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
386
|
+
Processing by MutantsController#index as HTML
|
387
|
+
Completed 200 OK in 0.5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
388
|
+
Processing by MutantsController#index as HTML
|
389
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
390
|
+
Processing by MutantsController#index as HTML
|
391
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
392
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
393
|
+
Processing by MutantsController#index as HTML
|
394
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
395
|
+
Processing by MutantsController#index as HTML
|
396
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
397
|
+
Processing by MutantsController#index as HTML
|
398
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
399
|
+
Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
|
400
|
+
Processing by MutantsController#index as HTML
|
401
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
402
|
+
Processing by MutantsController#index as HTML
|
403
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
404
|
+
Processing by MutantsController#index as HTML
|
405
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
406
|
+
Rendered mutants/index.html.erb (0.3ms)
|
407
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
408
|
+
Processing by MutantsController#index as HTML
|
409
|
+
Rendered mutants/index.html.erb (0.0ms)
|
410
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
411
|
+
Processing by MutantsController#index as HTML
|
412
|
+
Rendered mutants/index.html.erb (0.1ms)
|
413
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
414
|
+
Processing by MutantsController#index as HTML
|
415
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
416
|
+
Rendered mutants/index.html.erb (0.2ms)
|
417
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
418
|
+
Processing by MutantsController#index as HTML
|
419
|
+
Rendered mutants/index.html.erb (0.1ms)
|
420
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
421
|
+
Processing by MutantsController#index as HTML
|
422
|
+
Rendered mutants/index.html.erb (0.1ms)
|
423
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
424
|
+
Processing by MutantsController#index as HTML
|
425
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
426
|
+
Rendered mutants/index.html.erb (0.3ms)
|
427
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
|
428
|
+
Processing by MutantsController#index as HTML
|
429
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
430
|
+
Processing by MutantsController#index as HTML
|
431
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
432
|
+
Processing by MutantsController#index as HTML
|
433
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
434
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
435
|
+
Processing by MutantsController#index as HTML
|
436
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
437
|
+
Processing by MutantsController#index as HTML
|
438
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
439
|
+
Connecting to database specified by database.yml
|
440
|
+
Processing by MutantsController#index as HTML
|
441
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
442
|
+
Rendered mutants/index.html.erb (0.2ms)
|
443
|
+
Completed 200 OK in 2.2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
444
|
+
Processing by MutantsController#index as HTML
|
445
|
+
Completed 200 OK in 0.9ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
446
|
+
Processing by MutantsController#index as HTML
|
447
|
+
Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
448
|
+
Processing by MutantsController#index as HTML
|
449
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
450
|
+
Rendered mutants/index.html.erb (0.2ms)
|
451
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
452
|
+
Processing by MutantsController#index as HTML
|
453
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
454
|
+
Processing by MutantsController#index as HTML
|
455
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
456
|
+
Processing by MutantsController#index as HTML
|
457
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
458
|
+
Rendered mutants/index.html.erb (0.2ms)
|
459
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
460
|
+
Processing by MutantsController#index as HTML
|
461
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
462
|
+
Processing by MutantsController#index as HTML
|
463
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
464
|
+
Processing by MutantsController#index as HTML
|
465
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
466
|
+
Rendered mutants/index.html.erb (0.6ms)
|
467
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
468
|
+
Processing by MutantsController#index as HTML
|
469
|
+
Rendered mutants/index.html.erb (0.5ms)
|
470
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
471
|
+
Processing by MutantsController#index as HTML
|
472
|
+
Rendered mutants/index.html.erb (0.3ms)
|
473
|
+
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
474
|
+
Processing by MutantsController#index as HTML
|
475
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
476
|
+
Rendered mutants/index.html.erb (0.2ms)
|
477
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
478
|
+
Processing by MutantsController#index as HTML
|
479
|
+
Rendered mutants/index.html.erb (0.0ms)
|
480
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
481
|
+
Processing by MutantsController#index as HTML
|
482
|
+
Rendered mutants/index.html.erb (0.0ms)
|
483
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
484
|
+
Processing by MutantsController#index as HTML
|
485
|
+
Rendering mutants/index.html.erb
|
486
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
487
|
+
Rendered mutants/index.html.erb (0.5ms)
|
488
|
+
Completed 200 OK in 10ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
489
|
+
Processing by MutantsController#index as HTML
|
490
|
+
Rendering mutants/index.html.erb
|
491
|
+
Rendered mutants/index.html.erb (0.0ms)
|
492
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
493
|
+
Processing by MutantsController#index as HTML
|
494
|
+
Rendering mutants/index.html.erb
|
495
|
+
Rendered mutants/index.html.erb (0.0ms)
|
496
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
497
|
+
Processing by MutantsController#index as HTML
|
498
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
499
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
500
|
+
Processing by MutantsController#index as HTML
|
501
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
502
|
+
Processing by MutantsController#index as HTML
|
503
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
504
|
+
Processing by MutantsController#index as HTML
|
505
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
506
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
507
|
+
Processing by MutantsController#index as HTML
|
508
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
509
|
+
Processing by MutantsController#index as HTML
|
510
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
511
|
+
Connecting to database specified by database.yml
|
512
|
+
Processing by MutantsController#index as HTML
|
513
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
514
|
+
Rendered mutants/index.html.erb (0.2ms)
|
515
|
+
Completed 200 OK in 2.4ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
516
|
+
Processing by MutantsController#index as HTML
|
517
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
518
|
+
Processing by MutantsController#index as HTML
|
519
|
+
Completed 200 OK in 1.1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
520
|
+
Processing by MutantsController#index as HTML
|
521
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
522
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
523
|
+
Processing by MutantsController#index as HTML
|
524
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
525
|
+
Processing by MutantsController#index as HTML
|
526
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
527
|
+
Processing by MutantsController#index as HTML
|
528
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
529
|
+
Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
530
|
+
Processing by MutantsController#index as HTML
|
531
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
532
|
+
Processing by MutantsController#index as HTML
|
533
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
534
|
+
Processing by MutantsController#index as HTML
|
535
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
536
|
+
Rendered mutants/index.html.erb (0.3ms)
|
537
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
538
|
+
Processing by MutantsController#index as HTML
|
539
|
+
Rendered mutants/index.html.erb (0.0ms)
|
540
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
541
|
+
Processing by MutantsController#index as HTML
|
542
|
+
Rendered mutants/index.html.erb (0.0ms)
|
543
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
544
|
+
Processing by MutantsController#index as HTML
|
545
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
546
|
+
Rendered mutants/index.html.erb (0.2ms)
|
547
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
548
|
+
Processing by MutantsController#index as HTML
|
549
|
+
Rendered mutants/index.html.erb (0.0ms)
|
550
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
551
|
+
Processing by MutantsController#index as HTML
|
552
|
+
Rendered mutants/index.html.erb (0.1ms)
|
553
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
554
|
+
Processing by MutantsController#index as HTML
|
555
|
+
Rendering mutants/index.html.erb
|
556
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
557
|
+
Rendered mutants/index.html.erb (0.2ms)
|
558
|
+
Completed 200 OK in 8ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
559
|
+
Processing by MutantsController#index as HTML
|
560
|
+
Rendering mutants/index.html.erb
|
561
|
+
Rendered mutants/index.html.erb (0.0ms)
|
562
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
563
|
+
Processing by MutantsController#index as HTML
|
564
|
+
Rendering mutants/index.html.erb
|
565
|
+
Rendered mutants/index.html.erb (0.1ms)
|
566
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
567
|
+
Processing by MutantsController#index as HTML
|
568
|
+
Rendering mutants/index.html.erb
|
569
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
570
|
+
Rendered mutants/index.html.erb (0.2ms)
|
571
|
+
Completed 200 OK in 9ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
572
|
+
Processing by MutantsController#index as HTML
|
573
|
+
Rendering mutants/index.html.erb
|
574
|
+
Rendered mutants/index.html.erb (0.0ms)
|
575
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
576
|
+
Processing by MutantsController#index as HTML
|
577
|
+
Rendering mutants/index.html.erb
|
578
|
+
Rendered mutants/index.html.erb (0.0ms)
|
579
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
580
|
+
Processing by MutantsController#index as HTML
|
581
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
582
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
583
|
+
Processing by MutantsController#index as HTML
|
584
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
585
|
+
Processing by MutantsController#index as HTML
|
586
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
587
|
+
Processing by MutantsController#index as HTML
|
588
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
589
|
+
Rendered mutants/index.html.erb (0.3ms)
|
590
|
+
Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
|
591
|
+
Processing by MutantsController#index as HTML
|
592
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
593
|
+
Processing by MutantsController#index as HTML
|
594
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
595
|
+
Connecting to database specified by database.yml
|
596
|
+
Processing by MutantsController#index as HTML
|
597
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
598
|
+
Rendered mutants/index.html.erb (0.2ms)
|
599
|
+
Completed 200 OK in 2.1ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
600
|
+
Processing by MutantsController#index as HTML
|
601
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
602
|
+
Processing by MutantsController#index as HTML
|
603
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
604
|
+
Processing by MutantsController#index as HTML
|
605
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
606
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
607
|
+
Processing by MutantsController#index as HTML
|
608
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
609
|
+
Processing by MutantsController#index as HTML
|
610
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
611
|
+
Processing by MutantsController#index as HTML
|
612
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
613
|
+
Rendered mutants/index.html.erb (0.2ms)
|
614
|
+
Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
615
|
+
Processing by MutantsController#index as HTML
|
616
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
617
|
+
Processing by MutantsController#index as HTML
|
618
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
619
|
+
Processing by MutantsController#index as HTML
|
620
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
621
|
+
Rendered mutants/index.html.erb (0.4ms)
|
622
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
623
|
+
Processing by MutantsController#index as HTML
|
624
|
+
Rendered mutants/index.html.erb (0.0ms)
|
625
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
626
|
+
Processing by MutantsController#index as HTML
|
627
|
+
Rendered mutants/index.html.erb (9.0ms)
|
628
|
+
Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
|
629
|
+
Processing by MutantsController#index as HTML
|
630
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
631
|
+
Rendered mutants/index.html.erb (0.3ms)
|
632
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
633
|
+
Processing by MutantsController#index as HTML
|
634
|
+
Rendered mutants/index.html.erb (0.0ms)
|
635
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
636
|
+
Processing by MutantsController#index as HTML
|
637
|
+
Rendered mutants/index.html.erb (0.1ms)
|
638
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
639
|
+
Processing by MutantsController#index as HTML
|
640
|
+
Rendering mutants/index.html.erb
|
641
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
642
|
+
Rendered mutants/index.html.erb (0.2ms)
|
643
|
+
Completed 200 OK in 8ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
644
|
+
Processing by MutantsController#index as HTML
|
645
|
+
Rendering mutants/index.html.erb
|
646
|
+
Rendered mutants/index.html.erb (0.1ms)
|
647
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
648
|
+
Processing by MutantsController#index as HTML
|
649
|
+
Rendering mutants/index.html.erb
|
650
|
+
Rendered mutants/index.html.erb (0.0ms)
|
651
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
652
|
+
Processing by MutantsController#index as HTML
|
653
|
+
Rendering mutants/index.html.erb
|
654
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
655
|
+
Rendered mutants/index.html.erb (3.4ms)
|
656
|
+
Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.0ms)
|
657
|
+
Processing by MutantsController#index as HTML
|
658
|
+
Rendering mutants/index.html.erb
|
659
|
+
Rendered mutants/index.html.erb (0.0ms)
|
660
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
661
|
+
Processing by MutantsController#index as HTML
|
662
|
+
Rendering mutants/index.html.erb
|
663
|
+
Rendered mutants/index.html.erb (0.1ms)
|
664
|
+
Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
665
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:28:49 -0300
|
666
|
+
Processing by MutantsController#index as HTML
|
667
|
+
Rendered mutants/index.html.erb (7.8ms)
|
668
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
669
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:29:34 -0300
|
670
|
+
Processing by MutantsController#index as HTML
|
671
|
+
Rendered mutants/index.html.erb (7.5ms)
|
672
|
+
Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
|
673
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:29:55 -0300
|
674
|
+
Processing by MutantsController#index as HTML
|
675
|
+
Rendered mutants/index.html.erb (7.7ms)
|
676
|
+
Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
677
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:30:23 -0300
|
678
|
+
Processing by MutantsController#index as HTML
|
679
|
+
Rendered mutants/index.html.erb (7.5ms)
|
680
|
+
Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
|
681
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:30:41 -0300
|
682
|
+
Processing by MutantsController#index as HTML
|
683
|
+
Rendered mutants/index.html.erb (9.8ms)
|
684
|
+
Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
|
685
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:31:02 -0300
|
686
|
+
Processing by MutantsController#index as HTML
|
687
|
+
Rendered mutants/index.html.erb (7.2ms)
|
688
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
689
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:31:36 -0300
|
690
|
+
Processing by MutantsController#index as HTML
|
691
|
+
Rendered mutants/index.html.erb (7.5ms)
|
692
|
+
Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
693
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:42:42 -0300
|
694
|
+
Processing by MutantsController#index as HTML
|
695
|
+
Rendered mutants/index.html.erb (7.5ms)
|
696
|
+
Completed 500 Internal Server Error in 9ms
|
697
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:43:06 -0300
|
698
|
+
Processing by MutantsController#index as HTML
|
699
|
+
Rendered mutants/index.html.erb (7.8ms)
|
700
|
+
Completed 200 OK in 9ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
701
|
+
Started GET "/mutants/bar?_msid=8da30c38eb" for 127.0.0.1 at 2017-10-31 11:43:06 -0300
|
702
|
+
Processing by MutantsController#show as HTML
|
703
|
+
Parameters: {"_msid"=>"8da30c38eb", "id"=>"bar"}
|
704
|
+
Rendered mutants/show.html.erb (0.5ms)
|
705
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
706
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:43:44 -0300
|
707
|
+
Processing by MutantsController#index as HTML
|
708
|
+
Rendered mutants/index.html.erb (7.2ms)
|
709
|
+
Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
710
|
+
Started GET "/mutants/bar?_msid=cac149c2b1" for 127.0.0.1 at 2017-10-31 11:43:44 -0300
|
711
|
+
Processing by MutantsController#show as HTML
|
712
|
+
Parameters: {"_msid"=>"cac149c2b1", "id"=>"bar"}
|
713
|
+
Rendered mutants/show.html.erb (0.4ms)
|
714
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
715
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:44:02 -0300
|
716
|
+
Processing by MutantsController#index as HTML
|
717
|
+
Rendered mutants/index.html.erb (7.3ms)
|
718
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
719
|
+
Started GET "/mutants/bar?_msid=2e11fba43f" for 127.0.0.1 at 2017-10-31 11:44:02 -0300
|
720
|
+
Processing by MutantsController#show as HTML
|
721
|
+
Parameters: {"_msid"=>"2e11fba43f", "id"=>"bar"}
|
722
|
+
Rendered mutants/show.html.erb (0.3ms)
|
723
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
724
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:45:22 -0300
|
725
|
+
Processing by MutantsController#index as HTML
|
726
|
+
Rendered mutants/index.html.erb (7.3ms)
|
727
|
+
Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
|
728
|
+
Started GET "/mutants/bar?_msid=8bc0d10cd0" for 127.0.0.1 at 2017-10-31 11:45:22 -0300
|
729
|
+
Processing by MutantsController#show as HTML
|
730
|
+
Parameters: {"_msid"=>"8bc0d10cd0", "id"=>"bar"}
|
731
|
+
Rendered mutants/show.html.erb (0.4ms)
|
732
|
+
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
733
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:45:46 -0300
|
734
|
+
Processing by MutantsController#index as HTML
|
735
|
+
Rendered mutants/index.html.erb (7.4ms)
|
736
|
+
Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
|
737
|
+
Started GET "/mutants/bar?_msid=5b7005a3a6" for 127.0.0.1 at 2017-10-31 11:45:46 -0300
|
738
|
+
Processing by MutantsController#show as HTML
|
739
|
+
Parameters: {"_msid"=>"5b7005a3a6", "id"=>"bar"}
|
740
|
+
Rendered mutants/show.html.erb (0.3ms)
|
741
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
742
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:46:10 -0300
|
743
|
+
Processing by MutantsController#index as HTML
|
744
|
+
Rendered mutants/index.html.erb (7.6ms)
|
745
|
+
Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
746
|
+
Started GET "/mutants/bar?_msid=0c465ac6e2" for 127.0.0.1 at 2017-10-31 11:46:10 -0300
|
747
|
+
Processing by MutantsController#show as HTML
|
748
|
+
Parameters: {"_msid"=>"0c465ac6e2", "id"=>"bar"}
|
749
|
+
Rendered mutants/show.html.erb (0.4ms)
|
750
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
751
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:46:24 -0300
|
752
|
+
Processing by MutantsController#index as HTML
|
753
|
+
Rendered mutants/index.html.erb (7.1ms)
|
754
|
+
Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.0ms)
|
755
|
+
Started GET "/mutants/bar?_msid=473f7e15a3" for 127.0.0.1 at 2017-10-31 11:46:24 -0300
|
756
|
+
Processing by MutantsController#show as HTML
|
757
|
+
Parameters: {"_msid"=>"473f7e15a3", "id"=>"bar"}
|
758
|
+
Rendered mutants/show.html.erb (0.4ms)
|
759
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
760
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:46:39 -0300
|
761
|
+
Processing by MutantsController#index as HTML
|
762
|
+
Rendered mutants/index.html.erb (7.0ms)
|
763
|
+
Completed 200 OK in 9ms (Views: 8.5ms | ActiveRecord: 0.0ms)
|
764
|
+
Started GET "/mutants/bar?_msid=12503e4d53" for 127.0.0.1 at 2017-10-31 11:46:39 -0300
|
765
|
+
Processing by MutantsController#show as HTML
|
766
|
+
Parameters: {"_msid"=>"12503e4d53", "id"=>"bar"}
|
767
|
+
Rendered mutants/show.html.erb (0.4ms)
|
768
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
769
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:48:53 -0300
|
770
|
+
Processing by MutantsController#index as HTML
|
771
|
+
Rendered mutants/index.html.erb (1.1ms)
|
772
|
+
Completed 500 Internal Server Error in 3ms
|
773
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:49:10 -0300
|
774
|
+
Processing by MutantsController#index as HTML
|
775
|
+
Rendered mutants/index.html.erb (7.2ms)
|
776
|
+
Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
777
|
+
Started GET "/mutants/bar?_msid=b44c0e72b3" for 127.0.0.1 at 2017-10-31 11:49:10 -0300
|
778
|
+
Processing by MutantsController#show as HTML
|
779
|
+
Parameters: {"_msid"=>"b44c0e72b3", "id"=>"bar"}
|
780
|
+
Rendered mutants/show.html.erb (0.3ms)
|
781
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
782
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:50:22 -0300
|
783
|
+
Processing by MutantsController#index as HTML
|
784
|
+
Rendered mutants/index.html.erb (8.7ms)
|
785
|
+
Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
|
786
|
+
Started GET "/mutants/bar?_msid=ca395877ad" for 127.0.0.1 at 2017-10-31 11:50:22 -0300
|
787
|
+
Processing by MutantsController#show as HTML
|
788
|
+
Parameters: {"_msid"=>"ca395877ad", "id"=>"bar"}
|
789
|
+
Rendered mutants/show.html.erb (0.4ms)
|
790
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
791
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:50:22 -0300
|
792
|
+
Processing by MutantsController#index as HTML
|
793
|
+
Rendered mutants/index.html.erb (0.7ms)
|
794
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
795
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 11:50:22 -0300
|
796
|
+
Processing by MutantsController#show as HTML
|
797
|
+
Parameters: {"id"=>"bar"}
|
798
|
+
Rendered mutants/show.html.erb (0.0ms)
|
799
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
800
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:50:29 -0300
|
801
|
+
Processing by MutantsController#index as HTML
|
802
|
+
Rendered mutants/index.html.erb (7.2ms)
|
803
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
804
|
+
Started GET "/mutants/bar?_msid=427a888ecb" for 127.0.0.1 at 2017-10-31 11:50:29 -0300
|
805
|
+
Processing by MutantsController#show as HTML
|
806
|
+
Parameters: {"_msid"=>"427a888ecb", "id"=>"bar"}
|
807
|
+
Rendered mutants/show.html.erb (0.3ms)
|
808
|
+
Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
|
809
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:50:29 -0300
|
810
|
+
Processing by MutantsController#index as HTML
|
811
|
+
Rendered mutants/index.html.erb (0.6ms)
|
812
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
813
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 11:50:29 -0300
|
814
|
+
Processing by MutantsController#show as HTML
|
815
|
+
Parameters: {"id"=>"bar"}
|
816
|
+
Rendered mutants/show.html.erb (0.0ms)
|
817
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
818
|
+
|
819
|
+
|
820
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:53:01 -0300
|
821
|
+
Processing by MutantsController#index as HTML
|
822
|
+
Rendered mutants/index.html.erb (4.9ms)
|
823
|
+
Completed 500 Internal Server Error in 14ms
|
824
|
+
|
825
|
+
|
826
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:53:01 -0300
|
827
|
+
Processing by MutantsController#index as HTML
|
828
|
+
Rendered mutants/index.html.erb (4.6ms)
|
829
|
+
Completed 500 Internal Server Error in 12ms
|
830
|
+
Processing by MutantsController#index as HTML
|
831
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
832
|
+
Rendered mutants/index.html.erb (0.4ms)
|
833
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
834
|
+
Processing by MutantsController#index as HTML
|
835
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
836
|
+
Processing by MutantsController#index as HTML
|
837
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
838
|
+
Processing by MutantsController#index as HTML
|
839
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
840
|
+
Rendered mutants/index.html.erb (0.3ms)
|
841
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
842
|
+
Processing by MutantsController#index as HTML
|
843
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
844
|
+
Processing by MutantsController#index as HTML
|
845
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
846
|
+
|
847
|
+
|
848
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:56:20 -0300
|
849
|
+
Processing by MutantsController#index as HTML
|
850
|
+
Completed 500 Internal Server Error in 9ms
|
851
|
+
|
852
|
+
|
853
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:56:20 -0300
|
854
|
+
Processing by MutantsController#index as HTML
|
855
|
+
Completed 500 Internal Server Error in 4ms
|
856
|
+
Processing by MutantsController#index as HTML
|
857
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
858
|
+
Rendered mutants/index.html.erb (0.3ms)
|
859
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
860
|
+
Processing by MutantsController#index as HTML
|
861
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
862
|
+
Processing by MutantsController#index as HTML
|
863
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
864
|
+
|
865
|
+
|
866
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:57:04 -0300
|
867
|
+
Processing by MutantsController#index as HTML
|
868
|
+
Completed 500 Internal Server Error in 9ms
|
869
|
+
|
870
|
+
|
871
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:57:04 -0300
|
872
|
+
Processing by MutantsController#index as HTML
|
873
|
+
Completed 500 Internal Server Error in 7ms
|
874
|
+
Processing by MutantsController#index as HTML
|
875
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
876
|
+
Rendered mutants/index.html.erb (0.2ms)
|
877
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
878
|
+
Processing by MutantsController#index as HTML
|
879
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
880
|
+
Processing by MutantsController#index as HTML
|
881
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
882
|
+
|
883
|
+
|
884
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:57:34 -0300
|
885
|
+
Processing by MutantsController#index as HTML
|
886
|
+
Completed 500 Internal Server Error in 9ms
|
887
|
+
|
888
|
+
|
889
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:57:34 -0300
|
890
|
+
Processing by MutantsController#index as HTML
|
891
|
+
Completed 500 Internal Server Error in 7ms
|
892
|
+
|
893
|
+
|
894
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:58:19 -0300
|
895
|
+
Processing by MutantsController#index as HTML
|
896
|
+
Completed 500 Internal Server Error in 8ms
|
897
|
+
|
898
|
+
|
899
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:58:19 -0300
|
900
|
+
Processing by MutantsController#index as HTML
|
901
|
+
Completed 500 Internal Server Error in 7ms
|
902
|
+
Processing by MutantsController#index as HTML
|
903
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
904
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
905
|
+
Processing by MutantsController#index as HTML
|
906
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
907
|
+
Processing by MutantsController#index as HTML
|
908
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
909
|
+
Processing by MutantsController#index as HTML
|
910
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
911
|
+
Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
|
912
|
+
Processing by MutantsController#index as HTML
|
913
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
914
|
+
Processing by MutantsController#index as HTML
|
915
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
916
|
+
|
917
|
+
|
918
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:59:19 -0300
|
919
|
+
Processing by MutantsController#index as HTML
|
920
|
+
Completed 500 Internal Server Error in 8ms
|
921
|
+
|
922
|
+
|
923
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 11:59:19 -0300
|
924
|
+
Processing by MutantsController#index as HTML
|
925
|
+
Completed 500 Internal Server Error in 7ms
|
926
|
+
Processing by MutantsController#index as HTML
|
927
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
928
|
+
Rendered mutants/index.html.erb (0.3ms)
|
929
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.0ms)
|
930
|
+
Processing by MutantsController#index as HTML
|
931
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
932
|
+
Processing by MutantsController#index as HTML
|
933
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
934
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:08:00 -0300
|
935
|
+
Processing by MutantsController#index as HTML
|
936
|
+
Completed 500 Internal Server Error in 12ms
|
937
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:08:00 -0300
|
938
|
+
Processing by MutantsController#index as HTML
|
939
|
+
Completed 500 Internal Server Error in 1ms
|
940
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:08:05 -0300
|
941
|
+
Processing by MutantsController#index as HTML
|
942
|
+
Rendered mutants/index.html.erb (7.7ms)
|
943
|
+
Completed 500 Internal Server Error in 9ms
|
944
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:08:05 -0300
|
945
|
+
Processing by MutantsController#index as HTML
|
946
|
+
Rendered mutants/index.html.erb (1.2ms)
|
947
|
+
Completed 500 Internal Server Error in 2ms
|
948
|
+
Processing by MutantsController#index as HTML
|
949
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
950
|
+
Rendered mutants/index.html.erb (0.3ms)
|
951
|
+
Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.0ms)
|
952
|
+
Processing by MutantsController#index as HTML
|
953
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
954
|
+
Processing by MutantsController#index as HTML
|
955
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
956
|
+
|
957
|
+
|
958
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:08:41 -0300
|
959
|
+
Processing by MutantsController#index as HTML
|
960
|
+
Completed 500 Internal Server Error in 11ms
|
961
|
+
|
962
|
+
|
963
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:08:41 -0300
|
964
|
+
Processing by MutantsController#index as HTML
|
965
|
+
Completed 500 Internal Server Error in 7ms
|
966
|
+
|
967
|
+
|
968
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:08:47 -0300
|
969
|
+
Processing by MutantsController#index as HTML
|
970
|
+
Rendered mutants/index.html.erb (1.5ms)
|
971
|
+
Completed 500 Internal Server Error in 4ms
|
972
|
+
|
973
|
+
|
974
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:08:47 -0300
|
975
|
+
Processing by MutantsController#index as HTML
|
976
|
+
Rendered mutants/index.html.erb (0.9ms)
|
977
|
+
Completed 500 Internal Server Error in 1ms
|
978
|
+
Processing by MutantsController#index as HTML
|
979
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
980
|
+
Rendered mutants/index.html.erb (0.3ms)
|
981
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
982
|
+
Processing by MutantsController#index as HTML
|
983
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
984
|
+
Processing by MutantsController#index as HTML
|
985
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
986
|
+
Connecting to database specified by database.yml
|
987
|
+
|
988
|
+
|
989
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:09:25 -0300
|
990
|
+
Processing by MutantsController#index as HTML
|
991
|
+
Completed 500 Internal Server Error in 9ms
|
992
|
+
|
993
|
+
|
994
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:09:25 -0300
|
995
|
+
Processing by MutantsController#index as HTML
|
996
|
+
Completed 500 Internal Server Error in 5ms
|
997
|
+
Processing by MutantsController#index as HTML
|
998
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
999
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
1000
|
+
Processing by MutantsController#index as HTML
|
1001
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1002
|
+
Processing by MutantsController#index as HTML
|
1003
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1004
|
+
Processing by MutantsController#index as HTML
|
1005
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1006
|
+
Rendered mutants/index.html.erb (5.0ms)
|
1007
|
+
Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
1008
|
+
Processing by MutantsController#index as HTML
|
1009
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1010
|
+
Processing by MutantsController#index as HTML
|
1011
|
+
Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
1012
|
+
|
1013
|
+
|
1014
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:09:31 -0300
|
1015
|
+
Processing by MutantsController#index as HTML
|
1016
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
1017
|
+
|
1018
|
+
|
1019
|
+
Started GET "/mutants/bar?_msid=8d7be0e06a" for 127.0.0.1 at 2017-10-31 12:09:31 -0300
|
1020
|
+
Processing by MutantsController#show as HTML
|
1021
|
+
Parameters: {"_msid"=>"8d7be0e06a", "id"=>"bar"}
|
1022
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1023
|
+
|
1024
|
+
|
1025
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:09:31 -0300
|
1026
|
+
Processing by MutantsController#index as HTML
|
1027
|
+
Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
|
1028
|
+
|
1029
|
+
|
1030
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:09:31 -0300
|
1031
|
+
Processing by MutantsController#show as HTML
|
1032
|
+
Parameters: {"id"=>"bar"}
|
1033
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1034
|
+
|
1035
|
+
|
1036
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:11:25 -0300
|
1037
|
+
Processing by MutantsController#index as HTML
|
1038
|
+
Rendered mutants/index.html.erb (5.7ms)
|
1039
|
+
Completed 500 Internal Server Error in 16ms
|
1040
|
+
|
1041
|
+
|
1042
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:11:25 -0300
|
1043
|
+
Processing by MutantsController#index as HTML
|
1044
|
+
Rendered mutants/index.html.erb (4.5ms)
|
1045
|
+
Completed 500 Internal Server Error in 11ms
|
1046
|
+
Processing by MutantsController#index as HTML
|
1047
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1048
|
+
Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
1049
|
+
Processing by MutantsController#index as HTML
|
1050
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1051
|
+
Processing by MutantsController#index as HTML
|
1052
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1053
|
+
|
1054
|
+
|
1055
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:15:50 -0300
|
1056
|
+
Processing by MutantsController#index as HTML
|
1057
|
+
Completed 500 Internal Server Error in 12ms
|
1058
|
+
|
1059
|
+
|
1060
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:15:50 -0300
|
1061
|
+
Processing by MutantsController#index as HTML
|
1062
|
+
Completed 500 Internal Server Error in 4ms
|
1063
|
+
Processing by MutantsController#index as HTML
|
1064
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1065
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
1066
|
+
Processing by MutantsController#index as HTML
|
1067
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1068
|
+
Processing by MutantsController#index as HTML
|
1069
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1070
|
+
Processing by MutantsController#index as HTML
|
1071
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1072
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
1073
|
+
Processing by MutantsController#index as HTML
|
1074
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1075
|
+
Processing by MutantsController#index as HTML
|
1076
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1077
|
+
|
1078
|
+
|
1079
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:17 -0300
|
1080
|
+
Processing by MutantsController#index as HTML
|
1081
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
1082
|
+
|
1083
|
+
|
1084
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:16:17 -0300
|
1085
|
+
Processing by MutantsController#show as HTML
|
1086
|
+
Parameters: {"id"=>"bar"}
|
1087
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
1088
|
+
|
1089
|
+
|
1090
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:17 -0300
|
1091
|
+
Processing by MutantsController#index as HTML
|
1092
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1093
|
+
|
1094
|
+
|
1095
|
+
Started GET "/mutants/bar?_msid=8ce7301693" for 127.0.0.1 at 2017-10-31 12:16:17 -0300
|
1096
|
+
Processing by MutantsController#show as HTML
|
1097
|
+
Parameters: {"_msid"=>"8ce7301693", "id"=>"bar"}
|
1098
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1099
|
+
|
1100
|
+
|
1101
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:22 -0300
|
1102
|
+
Processing by MutantsController#index as HTML
|
1103
|
+
Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
1104
|
+
|
1105
|
+
|
1106
|
+
Started GET "/mutants/bar?_msid=145a394c00" for 127.0.0.1 at 2017-10-31 12:16:22 -0300
|
1107
|
+
Processing by MutantsController#show as HTML
|
1108
|
+
Parameters: {"_msid"=>"145a394c00", "id"=>"bar"}
|
1109
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1110
|
+
|
1111
|
+
|
1112
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:22 -0300
|
1113
|
+
Processing by MutantsController#index as HTML
|
1114
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1115
|
+
|
1116
|
+
|
1117
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:16:22 -0300
|
1118
|
+
Processing by MutantsController#show as HTML
|
1119
|
+
Parameters: {"id"=>"bar"}
|
1120
|
+
Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1121
|
+
Processing by MutantsController#index as HTML
|
1122
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1123
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
1124
|
+
Processing by MutantsController#index as HTML
|
1125
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1126
|
+
Processing by MutantsController#index as HTML
|
1127
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1128
|
+
Connecting to database specified by database.yml
|
1129
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:27 -0300
|
1130
|
+
Processing by MutantsController#index as HTML
|
1131
|
+
Rendered mutants/index.html.erb (1.2ms)
|
1132
|
+
Completed 200 OK in 2.8ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
1133
|
+
Started GET "/mutants/bar?_msid=d8d593302d" for 127.0.0.1 at 2017-10-31 12:16:27 -0300
|
1134
|
+
Processing by MutantsController#show as HTML
|
1135
|
+
Parameters: {"_msid"=>"d8d593302d", "id"=>"bar"}
|
1136
|
+
Rendered mutants/show.html.erb (0.4ms)
|
1137
|
+
Completed 200 OK in 1.5ms (Views: 1.3ms | ActiveRecord: 0.0ms)
|
1138
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:27 -0300
|
1139
|
+
Processing by MutantsController#index as HTML
|
1140
|
+
Rendered mutants/index.html.erb (0.9ms)
|
1141
|
+
Completed 200 OK in 1.6ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
1142
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:16:27 -0300
|
1143
|
+
Processing by MutantsController#show as HTML
|
1144
|
+
Parameters: {"id"=>"bar"}
|
1145
|
+
Rendered mutants/show.html.erb (0.0ms)
|
1146
|
+
Completed 200 OK in 0.5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1147
|
+
Processing by MutantsController#index as HTML
|
1148
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1149
|
+
Completed 200 OK in 3.3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
|
1150
|
+
Processing by MutantsController#index as HTML
|
1151
|
+
Completed 200 OK in 0.4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1152
|
+
Processing by MutantsController#index as HTML
|
1153
|
+
Completed 200 OK in 1.0ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1154
|
+
Processing by MutantsController#index as HTML
|
1155
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1156
|
+
Rendered mutants/index.html.erb (0.4ms)
|
1157
|
+
Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
1158
|
+
Processing by MutantsController#index as HTML
|
1159
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1160
|
+
Processing by MutantsController#index as HTML
|
1161
|
+
Completed 200 OK in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1162
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:32 -0300
|
1163
|
+
Processing by MutantsController#index as HTML
|
1164
|
+
Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
|
1165
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:16:32 -0300
|
1166
|
+
Processing by MutantsController#show as HTML
|
1167
|
+
Parameters: {"id"=>"bar"}
|
1168
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
1169
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:32 -0300
|
1170
|
+
Processing by MutantsController#index as HTML
|
1171
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1172
|
+
Started GET "/mutants/bar?_msid=f1f36261c8" for 127.0.0.1 at 2017-10-31 12:16:32 -0300
|
1173
|
+
Processing by MutantsController#show as HTML
|
1174
|
+
Parameters: {"_msid"=>"f1f36261c8", "id"=>"bar"}
|
1175
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1176
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:38 -0300
|
1177
|
+
Processing by MutantsController#index as HTML
|
1178
|
+
Rendered mutants/index.html.erb (7.2ms)
|
1179
|
+
Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
1180
|
+
Started GET "/mutants/bar?_msid=0b8fd9b136" for 127.0.0.1 at 2017-10-31 12:16:38 -0300
|
1181
|
+
Processing by MutantsController#show as HTML
|
1182
|
+
Parameters: {"_msid"=>"0b8fd9b136", "id"=>"bar"}
|
1183
|
+
Rendered mutants/show.html.erb (0.5ms)
|
1184
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
1185
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:38 -0300
|
1186
|
+
Processing by MutantsController#index as HTML
|
1187
|
+
Rendered mutants/index.html.erb (0.7ms)
|
1188
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1189
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:16:38 -0300
|
1190
|
+
Processing by MutantsController#show as HTML
|
1191
|
+
Parameters: {"id"=>"bar"}
|
1192
|
+
Rendered mutants/show.html.erb (0.0ms)
|
1193
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1194
|
+
Processing by MutantsController#index as HTML
|
1195
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1196
|
+
Rendered mutants/index.html.erb (0.3ms)
|
1197
|
+
Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
|
1198
|
+
Processing by MutantsController#index as HTML
|
1199
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
1200
|
+
Processing by MutantsController#index as HTML
|
1201
|
+
Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1202
|
+
Processing by MutantsController#index as HTML
|
1203
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1204
|
+
Rendered mutants/index.html.erb (0.3ms)
|
1205
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
1206
|
+
Processing by MutantsController#index as HTML
|
1207
|
+
Rendered mutants/index.html.erb (0.1ms)
|
1208
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1209
|
+
Processing by MutantsController#index as HTML
|
1210
|
+
Rendered mutants/index.html.erb (0.0ms)
|
1211
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1212
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:43 -0300
|
1213
|
+
Processing by MutantsController#index as HTML
|
1214
|
+
Rendered mutants/index.html.erb (13.0ms)
|
1215
|
+
Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms)
|
1216
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:16:43 -0300
|
1217
|
+
Processing by MutantsController#show as HTML
|
1218
|
+
Parameters: {"id"=>"bar"}
|
1219
|
+
Rendered mutants/show.html.erb (0.6ms)
|
1220
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
1221
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:43 -0300
|
1222
|
+
Processing by MutantsController#index as HTML
|
1223
|
+
Rendered mutants/index.html.erb (2.2ms)
|
1224
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
1225
|
+
Started GET "/mutants/bar?_msid=f470ac39a8" for 127.0.0.1 at 2017-10-31 12:16:43 -0300
|
1226
|
+
Processing by MutantsController#show as HTML
|
1227
|
+
Parameters: {"_msid"=>"f470ac39a8", "id"=>"bar"}
|
1228
|
+
Rendered mutants/show.html.erb (0.0ms)
|
1229
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1230
|
+
Processing by MutantsController#index as HTML
|
1231
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1232
|
+
Rendered mutants/index.html.erb (0.2ms)
|
1233
|
+
Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
|
1234
|
+
Processing by MutantsController#index as HTML
|
1235
|
+
Rendered mutants/index.html.erb (0.0ms)
|
1236
|
+
Completed 200 OK in 0ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1237
|
+
Processing by MutantsController#index as HTML
|
1238
|
+
Rendered mutants/index.html.erb (0.1ms)
|
1239
|
+
Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
1240
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:48 -0300
|
1241
|
+
Processing by MutantsController#index as HTML
|
1242
|
+
Rendered mutants/index.html.erb (11.9ms)
|
1243
|
+
Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
|
1244
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:16:48 -0300
|
1245
|
+
Processing by MutantsController#show as HTML
|
1246
|
+
Parameters: {"id"=>"bar"}
|
1247
|
+
Rendered mutants/show.html.erb (0.3ms)
|
1248
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
1249
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:48 -0300
|
1250
|
+
Processing by MutantsController#index as HTML
|
1251
|
+
Rendered mutants/index.html.erb (0.5ms)
|
1252
|
+
Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
|
1253
|
+
Started GET "/mutants/bar?_msid=dfcc362e14" for 127.0.0.1 at 2017-10-31 12:16:48 -0300
|
1254
|
+
Processing by MutantsController#show as HTML
|
1255
|
+
Parameters: {"_msid"=>"dfcc362e14", "id"=>"bar"}
|
1256
|
+
Rendered mutants/show.html.erb (0.0ms)
|
1257
|
+
Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1258
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:52 -0300
|
1259
|
+
Processing by MutantsController#index as HTML
|
1260
|
+
Rendering mutants/index.html.erb
|
1261
|
+
Rendered mutants/index.html.erb (7.8ms)
|
1262
|
+
Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.0ms)
|
1263
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:16:52 -0300
|
1264
|
+
Processing by MutantsController#show as HTML
|
1265
|
+
Parameters: {"id"=>"bar"}
|
1266
|
+
Rendering mutants/show.html.erb
|
1267
|
+
Rendered mutants/show.html.erb (0.3ms)
|
1268
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
|
1269
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:52 -0300
|
1270
|
+
Processing by MutantsController#index as HTML
|
1271
|
+
Rendering mutants/index.html.erb
|
1272
|
+
Rendered mutants/index.html.erb (0.7ms)
|
1273
|
+
Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
|
1274
|
+
Started GET "/mutants/bar?_msid=5d7c939a4a" for 127.0.0.1 at 2017-10-31 12:16:52 -0300
|
1275
|
+
Processing by MutantsController#show as HTML
|
1276
|
+
Parameters: {"_msid"=>"5d7c939a4a", "id"=>"bar"}
|
1277
|
+
Rendering mutants/show.html.erb
|
1278
|
+
Rendered mutants/show.html.erb (0.0ms)
|
1279
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1280
|
+
Processing by MutantsController#index as HTML
|
1281
|
+
Rendering mutants/index.html.erb
|
1282
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1283
|
+
Rendered mutants/index.html.erb (0.4ms)
|
1284
|
+
Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
1285
|
+
Processing by MutantsController#index as HTML
|
1286
|
+
Rendering mutants/index.html.erb
|
1287
|
+
Rendered mutants/index.html.erb (0.0ms)
|
1288
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1289
|
+
Processing by MutantsController#index as HTML
|
1290
|
+
Rendering mutants/index.html.erb
|
1291
|
+
Rendered mutants/index.html.erb (0.0ms)
|
1292
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1293
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:57 -0300
|
1294
|
+
Processing by MutantsController#index as HTML
|
1295
|
+
Rendering mutants/index.html.erb
|
1296
|
+
Rendered mutants/index.html.erb (9.6ms)
|
1297
|
+
Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.0ms)
|
1298
|
+
Started GET "/mutants/bar?_msid=a723c85c0f" for 127.0.0.1 at 2017-10-31 12:16:57 -0300
|
1299
|
+
Processing by MutantsController#show as HTML
|
1300
|
+
Parameters: {"_msid"=>"a723c85c0f", "id"=>"bar"}
|
1301
|
+
Rendering mutants/show.html.erb
|
1302
|
+
Rendered mutants/show.html.erb (0.4ms)
|
1303
|
+
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.0ms)
|
1304
|
+
Started GET "/mutants" for 127.0.0.1 at 2017-10-31 12:16:57 -0300
|
1305
|
+
Processing by MutantsController#index as HTML
|
1306
|
+
Rendering mutants/index.html.erb
|
1307
|
+
Rendered mutants/index.html.erb (1.0ms)
|
1308
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
1309
|
+
Started GET "/mutants/bar" for 127.0.0.1 at 2017-10-31 12:16:57 -0300
|
1310
|
+
Processing by MutantsController#show as HTML
|
1311
|
+
Parameters: {"id"=>"bar"}
|
1312
|
+
Rendering mutants/show.html.erb
|
1313
|
+
Rendered mutants/show.html.erb (0.0ms)
|
1314
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1315
|
+
Processing by MutantsController#index as HTML
|
1316
|
+
Rendering mutants/index.html.erb
|
1317
|
+
Template rendering was prevented by rspec-rails. Use `render_views` to verify rendered view contents if necessary.
|
1318
|
+
Rendered mutants/index.html.erb (0.3ms)
|
1319
|
+
Completed 200 OK in 11ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
1320
|
+
Processing by MutantsController#index as HTML
|
1321
|
+
Rendering mutants/index.html.erb
|
1322
|
+
Rendered mutants/index.html.erb (0.0ms)
|
1323
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1324
|
+
Processing by MutantsController#index as HTML
|
1325
|
+
Rendering mutants/index.html.erb
|
1326
|
+
Rendered mutants/index.html.erb (0.0ms)
|
1327
|
+
Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|