i18n-instrument 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d14dd39ea005bae078a459e0371f93072891660
4
- data.tar.gz: 5cc1d1dffb9ae5c37812ea011fd5495cab04192b
3
+ metadata.gz: 67ae822f79fd6293608ecff966e178268289fac3
4
+ data.tar.gz: 23d5a221edd7f87aaefffb1721ee234968d15d98
5
5
  SHA512:
6
- metadata.gz: a4879c433afa78fa09a0fd8a794a7e4ce9ec4c4607a951bb94a08e664ea57096534a33b938a813d635a72dcc28df26c7225e0033f7d1490c148af0e21ed647d3
7
- data.tar.gz: 28e261532508fd1d98ba6c534d3c482c26426f1f49bad08e3a1ba3604eaaf73983f73359d39a39a326fd9091332396a0ec0c42e71d40678cebc47102b74f809d
6
+ metadata.gz: fd6f3119e66b745509d569808bf7a8d087e69b2430a4385a3aabb8b3b566185664a0901d77a1a4cdafa5190424846b82ad61fa426a9b5f709ff6d69fd8dff54b
7
+ data.tar.gz: ac6c69c5ba3402f3b4bc4b1548a0d1ef5db8de09f73802eb4fc7f70a677c438f98e4ba86f5c8a2531cf2e5ae1c441fd9e8fe867483848fe868110dffeae6d352
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Build Status](https://travis-ci.org/lumoslabs/i18n-instrument.svg?branch=master)](https://travis-ci.org/lumoslabs/i18n-instrument)
2
+
1
3
  # i18n-instrument
2
4
  Instrument calls to I18n.t in Ruby and JavaScript in your Rails app.
3
5
 
@@ -51,9 +53,8 @@ The only foolproof way to collect information about the localization strings you
51
53
  * **`on_record(params : Hash)`**: Similar to `on_lookup` but comes with a bunch of useful information.
52
54
 
53
55
  The `params` hash contains the following keys (all values are strings):
54
-
55
- * **`controller`**: the controller that served the request.
56
- * **`action`**: the action that served the request.
56
+
57
+ * **`url`**: the request URL.
57
58
  * **`trace`**: the filename and line number from the first application stack frame, i.e. the place in your code `I18n.t` was called.
58
59
  * **`key`**: the localization key.
59
60
  * **`source`**: either "ruby" or "javascript".
@@ -72,27 +73,27 @@ I18n::Instrument.configure do |config|
72
73
  # The first stack trace line that begins with this string will be passed to
73
74
  # `on_record` as the `trace` value. Defaults to `Rails.root`.
74
75
  config.stack_trace_prefix = 'custom/path/to/app'
75
-
76
+
76
77
  # The URL you want your app to send js instrumentation requests to. Defaults
77
78
  # to '/i18n/instrument.json'.
78
79
  config.js_endpoint = '/my_i18n/foo.json'
79
80
 
80
81
  # all of the callback methods are available here
81
-
82
+
82
83
  config.on_record do |params|
83
84
  # print params to the rails log
84
85
  Rails.logger.info(params.inspect)
85
86
  end
86
-
87
+
87
88
  config.on_lookup do |key, value|
88
89
  puts "Looked up i18n key #{key} and got value #{value}"
89
90
  end
90
-
91
+
91
92
  config.on_error do |e|
92
93
  # report errors to our error aggregation service
93
94
  Rollbar.error(e)
94
95
  end
95
-
96
+
96
97
  config.on_check_enabled do
97
98
  # always enable
98
99
  true
@@ -124,6 +125,16 @@ Also, don't forget to enable Javascript instrumentation by adding this line, pro
124
125
  I18n.instrumentation_enabled = true
125
126
  ```
126
127
 
128
+ Alternatively, you could enable or disable Javascript instrumentation per request by adding something like this to your application layout:
129
+
130
+ ```HTML+ERB
131
+ <% if I18n::Instrument.config.enabled? %>
132
+ <script src="javascript">
133
+ I18n.instrumentation_enabled = true
134
+ </script>
135
+ <% end %>
136
+ ```
137
+
127
138
  ## Requirements
128
139
 
129
140
  i18n-instrument is designed to work with Rails 4 and up, although it has not been tested under Rails 5 yet.
@@ -138,4 +149,4 @@ Run the test suite with `bundle exec rspec`.
138
149
 
139
150
  ## License
140
151
 
141
- Licensed under the MIT license.
152
+ Licensed under the MIT license.
@@ -14,7 +14,13 @@ Gem::Specification.new do |s|
14
14
  s.has_rdoc = true
15
15
 
16
16
  s.add_dependency 'i18n-debug', '~> 1.0'
17
- s.add_dependency 'railties', '~> 4'
17
+
18
+ if ENV['RAILS_VERSION']
19
+ s.add_dependency 'railties', "~> #{ENV['RAILS_VERSION']}"
20
+ else
21
+ s.add_dependency 'railties', '~> 4.0'
22
+ end
23
+
18
24
  s.add_dependency 'request_store', '~> 1.0'
19
25
 
20
26
  s.require_path = 'lib'
@@ -51,9 +51,6 @@ module I18n
51
51
  else
52
52
  handle_regular_request(env)
53
53
  end
54
- rescue => e
55
- config.on_error.call(e)
56
- @app.call(env)
57
54
  end
58
55
 
59
56
  private
@@ -72,9 +69,13 @@ module I18n
72
69
  def handle_regular_request(env)
73
70
  return @app.call(env) unless enabled?
74
71
 
75
- # store params from env in request storage so they can be used in the
76
- # I18n on_lookup callback above
77
- store[STORE_KEY] = { url: env['REQUEST_URI'] }
72
+ begin
73
+ # store params from env in request storage so they can be used in the
74
+ # I18n on_lookup callback above
75
+ store[STORE_KEY] = { url: env['REQUEST_URI'] }
76
+ rescue => e
77
+ config.on_error.call(e)
78
+ end
78
79
 
79
80
  @app.call(env)
80
81
  end
@@ -93,8 +94,10 @@ module I18n
93
94
  locale: locale, source: 'javascript'
94
95
  )
95
96
  end
96
-
97
- JS_RESPONSE
97
+ rescue => e
98
+ config.on_error.call(e)
99
+ ensure
100
+ return JS_RESPONSE
98
101
  end
99
102
 
100
103
  def i18n_js_request?(env)
@@ -1,5 +1,5 @@
1
1
  module I18n
2
2
  module Instrument
3
- VERSION = '1.0.1'
3
+ VERSION = '1.0.2'
4
4
  end
5
5
  end
@@ -6170,3 +6170,3355 @@ Started GET "/tests" for 127.0.0.1 at 2016-07-28 11:50:03 -0700
6170
6170
  Processing by TestsController#index as HTML
6171
6171
  Rendered text template (0.0ms)
6172
6172
  Completed 200 OK in 0ms (Views: 0.2ms)
6173
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6174
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6175
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6176
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6177
+ Processing by TestsController#index as HTML
6178
+ Rendered text template (0.0ms)
6179
+ Completed 200 OK in 10ms (Views: 7.0ms)
6180
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6181
+ Processing by TestsController#index as HTML
6182
+ Rendered text template (0.0ms)
6183
+ Completed 200 OK in 0ms (Views: 0.2ms)
6184
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6185
+ Processing by TestsController#index as HTML
6186
+ Rendered text template (0.0ms)
6187
+ Completed 200 OK in 0ms (Views: 0.2ms)
6188
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6189
+ Processing by TestsController#index as HTML
6190
+ Completed 500 Internal Server Error in 0ms
6191
+
6192
+ RuntimeError (jelly beans):
6193
+ app/controllers/tests_controller.rb:3:in `index'
6194
+
6195
+
6196
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6197
+
6198
+ RuntimeError (jelly beans):
6199
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
6200
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
6201
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
6202
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
6203
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
6204
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
6205
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
6206
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
6207
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
6208
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
6209
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
6210
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
6211
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
6212
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
6213
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
6214
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
6215
+ actionpack (4.2.7) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6216
+ actionpack (4.2.7) lib/action_dispatch/middleware/flash.rb:260:in `call'
6217
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
6218
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
6219
+ actionpack (4.2.7) lib/action_dispatch/middleware/cookies.rb:560:in `call'
6220
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6221
+ activesupport (4.2.7) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
6222
+ activesupport (4.2.7) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
6223
+ activesupport (4.2.7) lib/active_support/callbacks.rb:81:in `run_callbacks'
6224
+ actionpack (4.2.7) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6225
+ actionpack (4.2.7) lib/action_dispatch/middleware/reloader.rb:73:in `call'
6226
+ actionpack (4.2.7) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
6227
+ actionpack (4.2.7) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6228
+ actionpack (4.2.7) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6229
+ railties (4.2.7) lib/rails/rack/logger.rb:38:in `call_app'
6230
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `block in call'
6231
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6232
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:26:in `tagged'
6233
+ activesupport (4.2.7) lib/active_support/tagged_logging.rb:68:in `tagged'
6234
+ railties (4.2.7) lib/rails/rack/logger.rb:20:in `call'
6235
+ actionpack (4.2.7) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6236
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
6237
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
6238
+ activesupport (4.2.7) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
6239
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
6240
+ actionpack (4.2.7) lib/action_dispatch/middleware/static.rb:120:in `call'
6241
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
6242
+ railties (4.2.7) lib/rails/engine.rb:518:in `call'
6243
+ railties (4.2.7) lib/rails/application.rb:165:in `call'
6244
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
6245
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
6246
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
6247
+ actionpack (4.2.7) lib/action_dispatch/testing/integration.rb:297:in `process'
6248
+ actionpack (4.2.7) lib/action_dispatch/testing/integration.rb:32:in `get'
6249
+ actionpack (4.2.7) lib/action_dispatch/testing/integration.rb:346:in `block (2 levels) in <module:Runner>'
6250
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
6251
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
6252
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
6253
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
6254
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
6255
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
6256
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
6257
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6258
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6259
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
6260
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6261
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6262
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
6263
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
6264
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6265
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6266
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
6267
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
6268
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
6269
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
6270
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
6271
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
6272
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
6273
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
6274
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
6275
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
6276
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
6277
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
6278
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
6279
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
6280
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
6281
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
6282
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
6283
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
6284
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
6285
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
6286
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
6287
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
6288
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
6289
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `load'
6290
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `<top (required)>'
6291
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
6292
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
6293
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
6294
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
6295
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
6296
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
6297
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
6298
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
6299
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
6300
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
6301
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
6302
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
6303
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `load'
6304
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `<main>'
6305
+
6306
+
6307
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6308
+ Processing by TestsController#index as HTML
6309
+ Rendered text template (0.0ms)
6310
+ Completed 200 OK in 0ms (Views: 0.2ms)
6311
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6312
+ Processing by TestsController#index as HTML
6313
+ Rendered text template (0.0ms)
6314
+ Completed 200 OK in 0ms (Views: 0.2ms)
6315
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:26 -0700
6316
+ Processing by TestsController#index as HTML
6317
+ Rendered text template (0.0ms)
6318
+ Completed 200 OK in 0ms (Views: 0.1ms)
6319
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6320
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6321
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6322
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6323
+ Processing by TestsController#index as HTML
6324
+ Completed 200 OK in 10ms (Views: 6.5ms)
6325
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6326
+ Processing by TestsController#index as HTML
6327
+ Completed 200 OK in 1ms (Views: 0.1ms)
6328
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6329
+ Processing by TestsController#index as HTML
6330
+ Completed 200 OK in 0ms (Views: 0.1ms)
6331
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6332
+ Processing by TestsController#index as HTML
6333
+ Completed 500 Internal Server Error in 0ms
6334
+
6335
+ RuntimeError (jelly beans):
6336
+ app/controllers/tests_controller.rb:3:in `index'
6337
+
6338
+
6339
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6340
+
6341
+ RuntimeError (jelly beans):
6342
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
6343
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
6344
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
6345
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
6346
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
6347
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
6348
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
6349
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
6350
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
6351
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
6352
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
6353
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
6354
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
6355
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
6356
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
6357
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
6358
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6359
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
6360
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
6361
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
6362
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
6363
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6364
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__2858786054527904344__call__callbacks'
6365
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
6366
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6367
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
6368
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
6369
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6370
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6371
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
6372
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
6373
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6374
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
6375
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
6376
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
6377
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6378
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
6379
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
6380
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
6381
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
6382
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
6383
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
6384
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
6385
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
6386
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
6387
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
6388
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
6389
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
6390
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
6391
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
6392
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
6393
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
6394
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
6395
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
6396
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
6397
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
6398
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
6399
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6400
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6401
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
6402
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6403
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6404
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
6405
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
6406
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6407
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6408
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
6409
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
6410
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
6411
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
6412
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
6413
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
6414
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
6415
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
6416
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
6417
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
6418
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
6419
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
6420
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
6421
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
6422
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
6423
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
6424
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
6425
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
6426
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
6427
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
6428
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
6429
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
6430
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
6431
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `load'
6432
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `<top (required)>'
6433
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
6434
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
6435
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
6436
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
6437
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
6438
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
6439
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
6440
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
6441
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
6442
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
6443
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
6444
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
6445
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `load'
6446
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `<main>'
6447
+
6448
+
6449
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6450
+ Processing by TestsController#index as HTML
6451
+ Completed 200 OK in 0ms (Views: 0.1ms)
6452
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6453
+ Processing by TestsController#index as HTML
6454
+ Completed 200 OK in 0ms (Views: 0.1ms)
6455
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:41 -0700
6456
+ Processing by TestsController#index as HTML
6457
+ Completed 200 OK in 0ms (Views: 0.1ms)
6458
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6459
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6460
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6461
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6462
+ Processing by TestsController#index as HTML
6463
+ Completed 200 OK in 8ms (Views: 4.2ms)
6464
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6465
+ Processing by TestsController#index as HTML
6466
+ Completed 200 OK in 1ms (Views: 0.1ms)
6467
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6468
+ Processing by TestsController#index as HTML
6469
+ Completed 200 OK in 0ms (Views: 0.1ms)
6470
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6471
+ Processing by TestsController#index as HTML
6472
+ Completed 500 Internal Server Error in 0ms
6473
+
6474
+ RuntimeError (jelly beans):
6475
+ app/controllers/tests_controller.rb:3:in `index'
6476
+
6477
+
6478
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6479
+
6480
+ RuntimeError (jelly beans):
6481
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
6482
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
6483
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
6484
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
6485
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
6486
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
6487
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
6488
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
6489
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
6490
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
6491
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
6492
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
6493
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
6494
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
6495
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
6496
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
6497
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6498
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
6499
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
6500
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
6501
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
6502
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6503
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__4181953387666977256__call__callbacks'
6504
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
6505
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6506
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
6507
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
6508
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6509
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6510
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
6511
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
6512
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6513
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
6514
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
6515
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
6516
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6517
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
6518
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
6519
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
6520
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
6521
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
6522
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
6523
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
6524
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
6525
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
6526
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
6527
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
6528
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
6529
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
6530
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
6531
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
6532
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
6533
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
6534
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
6535
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
6536
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
6537
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
6538
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6539
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6540
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
6541
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6542
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6543
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
6544
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
6545
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6546
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6547
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
6548
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
6549
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
6550
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
6551
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
6552
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
6553
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
6554
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
6555
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
6556
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
6557
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
6558
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
6559
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
6560
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
6561
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
6562
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
6563
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
6564
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
6565
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
6566
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
6567
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
6568
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
6569
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
6570
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `load'
6571
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `<main>'
6572
+
6573
+
6574
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6575
+ Processing by TestsController#index as HTML
6576
+ Completed 200 OK in 0ms (Views: 0.1ms)
6577
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6578
+ Processing by TestsController#index as HTML
6579
+ Completed 200 OK in 0ms (Views: 0.1ms)
6580
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:45:59 -0700
6581
+ Processing by TestsController#index as HTML
6582
+ Completed 200 OK in 0ms (Views: 0.1ms)
6583
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6584
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6585
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6586
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6587
+ Processing by TestsController#index as HTML
6588
+ Completed 200 OK in 5ms (Views: 2.8ms)
6589
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6590
+ Processing by TestsController#index as HTML
6591
+ Completed 200 OK in 0ms (Views: 0.1ms)
6592
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6593
+ Processing by TestsController#index as HTML
6594
+ Completed 200 OK in 0ms (Views: 0.1ms)
6595
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6596
+ Processing by TestsController#index as HTML
6597
+ Completed 500 Internal Server Error in 0ms
6598
+
6599
+ RuntimeError (jelly beans):
6600
+ app/controllers/tests_controller.rb:3:in `index'
6601
+
6602
+
6603
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6604
+
6605
+ RuntimeError (jelly beans):
6606
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
6607
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
6608
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
6609
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
6610
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
6611
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
6612
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
6613
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
6614
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
6615
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
6616
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
6617
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
6618
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
6619
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
6620
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
6621
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
6622
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6623
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
6624
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
6625
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
6626
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
6627
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6628
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__981688585475603805__call__callbacks'
6629
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
6630
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6631
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
6632
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
6633
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6634
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6635
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
6636
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
6637
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6638
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
6639
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
6640
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
6641
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6642
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
6643
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
6644
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
6645
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
6646
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
6647
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
6648
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
6649
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
6650
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
6651
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
6652
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
6653
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
6654
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
6655
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
6656
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
6657
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
6658
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
6659
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
6660
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
6661
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
6662
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
6663
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6664
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6665
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
6666
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6667
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6668
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
6669
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
6670
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6671
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6672
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
6673
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
6674
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
6675
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
6676
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
6677
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
6678
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
6679
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
6680
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
6681
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
6682
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
6683
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
6684
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
6685
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
6686
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
6687
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
6688
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
6689
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
6690
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
6691
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
6692
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
6693
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
6694
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
6695
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `load'
6696
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `<top (required)>'
6697
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
6698
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
6699
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
6700
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
6701
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
6702
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
6703
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
6704
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
6705
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
6706
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
6707
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
6708
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
6709
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `load'
6710
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `<main>'
6711
+
6712
+
6713
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6714
+ Processing by TestsController#index as HTML
6715
+ Completed 200 OK in 0ms (Views: 0.2ms)
6716
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6717
+ Processing by TestsController#index as HTML
6718
+ Completed 200 OK in 0ms (Views: 0.1ms)
6719
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:20 -0700
6720
+ Processing by TestsController#index as HTML
6721
+ Completed 200 OK in 0ms (Views: 0.1ms)
6722
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6723
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6724
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6725
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6726
+ Processing by TestsController#index as HTML
6727
+ Completed 200 OK in 9ms (Views: 3.3ms)
6728
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6729
+ Processing by TestsController#index as HTML
6730
+ Completed 200 OK in 0ms (Views: 0.1ms)
6731
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6732
+ Processing by TestsController#index as HTML
6733
+ Completed 200 OK in 0ms (Views: 0.1ms)
6734
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6735
+ Processing by TestsController#index as HTML
6736
+ Completed 500 Internal Server Error in 0ms
6737
+
6738
+ RuntimeError (jelly beans):
6739
+ app/controllers/tests_controller.rb:3:in `index'
6740
+
6741
+
6742
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6743
+
6744
+ RuntimeError (jelly beans):
6745
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
6746
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
6747
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
6748
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
6749
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
6750
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
6751
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
6752
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
6753
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
6754
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
6755
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
6756
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
6757
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
6758
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
6759
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
6760
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
6761
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6762
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
6763
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
6764
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
6765
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
6766
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6767
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__3324053236147241260__call__callbacks'
6768
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
6769
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6770
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
6771
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
6772
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6773
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6774
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
6775
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
6776
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6777
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
6778
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
6779
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
6780
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6781
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
6782
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
6783
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
6784
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
6785
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
6786
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
6787
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
6788
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
6789
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
6790
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
6791
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
6792
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
6793
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
6794
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
6795
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
6796
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
6797
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
6798
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
6799
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
6800
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
6801
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
6802
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6803
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6804
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
6805
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6806
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6807
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
6808
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
6809
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6810
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6811
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
6812
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
6813
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
6814
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
6815
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
6816
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
6817
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
6818
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
6819
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
6820
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
6821
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
6822
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
6823
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
6824
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
6825
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
6826
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
6827
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
6828
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
6829
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
6830
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
6831
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
6832
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
6833
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
6834
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `load'
6835
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `<main>'
6836
+
6837
+
6838
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6839
+ Processing by TestsController#index as HTML
6840
+ Completed 200 OK in 0ms (Views: 0.1ms)
6841
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6842
+ Processing by TestsController#index as HTML
6843
+ Completed 200 OK in 0ms (Views: 0.1ms)
6844
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:47:22 -0700
6845
+ Processing by TestsController#index as HTML
6846
+ Completed 200 OK in 0ms (Views: 0.1ms)
6847
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6848
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6849
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6850
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6851
+ Processing by TestsController#index as HTML
6852
+ Completed 200 OK in 6ms (Views: 3.3ms)
6853
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6854
+ Processing by TestsController#index as HTML
6855
+ Completed 200 OK in 0ms (Views: 0.2ms)
6856
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6857
+ Processing by TestsController#index as HTML
6858
+ Completed 200 OK in 0ms (Views: 0.1ms)
6859
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6860
+ Processing by TestsController#index as HTML
6861
+ Completed 500 Internal Server Error in 0ms
6862
+
6863
+ RuntimeError (jelly beans):
6864
+ app/controllers/tests_controller.rb:3:in `index'
6865
+
6866
+
6867
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6868
+
6869
+ RuntimeError (jelly beans):
6870
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
6871
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
6872
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
6873
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
6874
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
6875
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
6876
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
6877
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
6878
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
6879
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
6880
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
6881
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
6882
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
6883
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
6884
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
6885
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
6886
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6887
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
6888
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
6889
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
6890
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
6891
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6892
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__2624375212255793008__call__callbacks'
6893
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
6894
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6895
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
6896
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
6897
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6898
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6899
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
6900
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
6901
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6902
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
6903
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
6904
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
6905
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6906
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
6907
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
6908
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
6909
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
6910
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
6911
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
6912
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
6913
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
6914
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
6915
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
6916
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
6917
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
6918
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
6919
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
6920
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
6921
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
6922
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
6923
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
6924
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
6925
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
6926
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
6927
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6928
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6929
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
6930
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6931
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
6932
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
6933
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
6934
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6935
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
6936
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
6937
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
6938
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
6939
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
6940
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
6941
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
6942
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
6943
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
6944
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
6945
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
6946
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
6947
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
6948
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
6949
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
6950
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
6951
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
6952
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
6953
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
6954
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
6955
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
6956
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
6957
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
6958
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
6959
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `load'
6960
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `<top (required)>'
6961
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
6962
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
6963
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
6964
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
6965
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
6966
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
6967
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
6968
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
6969
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
6970
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
6971
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
6972
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
6973
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `load'
6974
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `<main>'
6975
+
6976
+
6977
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6978
+ Processing by TestsController#index as HTML
6979
+ Completed 200 OK in 0ms (Views: 0.2ms)
6980
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6981
+ Processing by TestsController#index as HTML
6982
+ Completed 200 OK in 0ms (Views: 0.1ms)
6983
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:04 -0700
6984
+ Processing by TestsController#index as HTML
6985
+ Completed 200 OK in 0ms (Views: 0.1ms)
6986
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
6987
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
6988
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
6989
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
6990
+ Processing by TestsController#index as HTML
6991
+ Completed 200 OK in 5ms (Views: 2.9ms)
6992
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
6993
+ Processing by TestsController#index as HTML
6994
+ Completed 200 OK in 0ms (Views: 0.1ms)
6995
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
6996
+ Processing by TestsController#index as HTML
6997
+ Completed 200 OK in 0ms (Views: 0.1ms)
6998
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
6999
+ Processing by TestsController#index as HTML
7000
+ Completed 500 Internal Server Error in 0ms
7001
+
7002
+ RuntimeError (jelly beans):
7003
+ app/controllers/tests_controller.rb:3:in `index'
7004
+
7005
+
7006
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
7007
+
7008
+ RuntimeError (jelly beans):
7009
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
7010
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
7011
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
7012
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
7013
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
7014
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
7015
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
7016
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
7017
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
7018
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
7019
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
7020
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
7021
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
7022
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
7023
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
7024
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
7025
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7026
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
7027
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
7028
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
7029
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
7030
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7031
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__95008234091210647__call__callbacks'
7032
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
7033
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7034
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
7035
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7036
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7037
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7038
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
7039
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
7040
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7041
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
7042
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
7043
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
7044
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7045
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
7046
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
7047
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
7048
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
7049
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
7050
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
7051
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
7052
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
7053
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
7054
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
7055
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
7056
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
7057
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
7058
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
7059
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
7060
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
7061
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
7062
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
7063
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
7064
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
7065
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
7066
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7067
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7068
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
7069
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7070
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7071
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
7072
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
7073
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7074
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7075
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
7076
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
7077
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
7078
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
7079
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
7080
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
7081
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
7082
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
7083
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
7084
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
7085
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
7086
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
7087
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
7088
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
7089
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
7090
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
7091
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
7092
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
7093
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
7094
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
7095
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
7096
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
7097
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
7098
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `load'
7099
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `<main>'
7100
+
7101
+
7102
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
7103
+ Processing by TestsController#index as HTML
7104
+ Completed 200 OK in 0ms (Views: 0.1ms)
7105
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
7106
+ Processing by TestsController#index as HTML
7107
+ Completed 200 OK in 0ms (Views: 0.1ms)
7108
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:48:05 -0700
7109
+ Processing by TestsController#index as HTML
7110
+ Completed 200 OK in 0ms (Views: 0.1ms)
7111
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7112
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7113
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7114
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7115
+ Processing by TestsController#index as HTML
7116
+ Completed 200 OK in 8ms (Views: 3.9ms)
7117
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7118
+ Processing by TestsController#index as HTML
7119
+ Completed 200 OK in 1ms (Views: 0.1ms)
7120
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7121
+ Processing by TestsController#index as HTML
7122
+ Completed 200 OK in 0ms (Views: 0.1ms)
7123
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7124
+ Processing by TestsController#index as HTML
7125
+ Completed 500 Internal Server Error in 0ms
7126
+
7127
+ RuntimeError (jelly beans):
7128
+ app/controllers/tests_controller.rb:3:in `index'
7129
+
7130
+
7131
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7132
+
7133
+ RuntimeError (jelly beans):
7134
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
7135
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
7136
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
7137
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
7138
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
7139
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
7140
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
7141
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
7142
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
7143
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
7144
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
7145
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
7146
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
7147
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
7148
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
7149
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
7150
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7151
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
7152
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
7153
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
7154
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
7155
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7156
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__2506543887519214638__call__callbacks'
7157
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
7158
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7159
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
7160
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7161
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7162
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7163
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
7164
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
7165
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7166
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
7167
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
7168
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
7169
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7170
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
7171
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
7172
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
7173
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
7174
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
7175
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
7176
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
7177
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
7178
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
7179
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
7180
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
7181
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
7182
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
7183
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
7184
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
7185
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
7186
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
7187
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
7188
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
7189
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
7190
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
7191
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7192
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7193
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
7194
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7195
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7196
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
7197
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
7198
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7199
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7200
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
7201
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
7202
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
7203
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
7204
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
7205
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
7206
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
7207
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
7208
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
7209
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
7210
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
7211
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
7212
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
7213
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
7214
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
7215
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
7216
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
7217
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
7218
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
7219
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
7220
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
7221
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
7222
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
7223
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `load'
7224
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `<top (required)>'
7225
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
7226
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
7227
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
7228
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
7229
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
7230
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
7231
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
7232
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
7233
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
7234
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
7235
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
7236
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
7237
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `load'
7238
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `<main>'
7239
+
7240
+
7241
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7242
+ Processing by TestsController#index as HTML
7243
+ Completed 200 OK in 0ms (Views: 0.2ms)
7244
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7245
+ Processing by TestsController#index as HTML
7246
+ Completed 200 OK in 0ms (Views: 0.1ms)
7247
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:42 -0700
7248
+ Processing by TestsController#index as HTML
7249
+ Completed 200 OK in 0ms (Views: 0.1ms)
7250
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7251
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7252
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7253
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7254
+ Processing by TestsController#index as HTML
7255
+ Completed 200 OK in 5ms (Views: 2.8ms)
7256
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7257
+ Processing by TestsController#index as HTML
7258
+ Completed 200 OK in 0ms (Views: 0.1ms)
7259
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7260
+ Processing by TestsController#index as HTML
7261
+ Completed 200 OK in 0ms (Views: 0.1ms)
7262
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7263
+ Processing by TestsController#index as HTML
7264
+ Completed 500 Internal Server Error in 0ms
7265
+
7266
+ RuntimeError (jelly beans):
7267
+ app/controllers/tests_controller.rb:3:in `index'
7268
+
7269
+
7270
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7271
+
7272
+ RuntimeError (jelly beans):
7273
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
7274
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
7275
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
7276
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
7277
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
7278
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
7279
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
7280
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
7281
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
7282
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
7283
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
7284
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
7285
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
7286
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
7287
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
7288
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
7289
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7290
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
7291
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
7292
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
7293
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
7294
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7295
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__409175897039992261__call__callbacks'
7296
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
7297
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7298
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
7299
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7300
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7301
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7302
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
7303
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
7304
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7305
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
7306
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
7307
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
7308
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7309
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
7310
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
7311
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
7312
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
7313
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
7314
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
7315
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
7316
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
7317
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
7318
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
7319
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
7320
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
7321
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
7322
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
7323
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
7324
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
7325
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
7326
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
7327
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
7328
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
7329
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
7330
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7331
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7332
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
7333
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7334
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7335
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
7336
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
7337
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7338
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7339
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
7340
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
7341
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
7342
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
7343
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
7344
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
7345
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
7346
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
7347
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
7348
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
7349
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
7350
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
7351
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
7352
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
7353
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
7354
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
7355
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
7356
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
7357
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
7358
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
7359
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
7360
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
7361
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
7362
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `load'
7363
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `<main>'
7364
+
7365
+
7366
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7367
+ Processing by TestsController#index as HTML
7368
+ Completed 200 OK in 0ms (Views: 0.1ms)
7369
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7370
+ Processing by TestsController#index as HTML
7371
+ Completed 200 OK in 0ms (Views: 0.1ms)
7372
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:49:44 -0700
7373
+ Processing by TestsController#index as HTML
7374
+ Completed 200 OK in 0ms (Views: 0.1ms)
7375
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7376
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7377
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7378
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7379
+ Processing by TestsController#index as HTML
7380
+ Completed 200 OK in 5ms (Views: 2.8ms)
7381
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7382
+ Processing by TestsController#index as HTML
7383
+ Completed 200 OK in 0ms (Views: 0.1ms)
7384
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7385
+ Processing by TestsController#index as HTML
7386
+ Completed 200 OK in 0ms (Views: 0.1ms)
7387
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7388
+ Processing by TestsController#index as HTML
7389
+ Completed 500 Internal Server Error in 0ms
7390
+
7391
+ RuntimeError (jelly beans):
7392
+ app/controllers/tests_controller.rb:3:in `index'
7393
+
7394
+
7395
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7396
+
7397
+ RuntimeError (jelly beans):
7398
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
7399
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
7400
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
7401
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
7402
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
7403
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
7404
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
7405
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
7406
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
7407
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
7408
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
7409
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
7410
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
7411
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
7412
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
7413
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
7414
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7415
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
7416
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
7417
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
7418
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
7419
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7420
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__1771509653211925103__call__callbacks'
7421
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
7422
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7423
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
7424
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7425
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7426
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7427
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
7428
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
7429
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7430
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
7431
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
7432
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
7433
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7434
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
7435
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
7436
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
7437
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
7438
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
7439
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
7440
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
7441
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
7442
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
7443
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
7444
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
7445
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
7446
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
7447
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
7448
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
7449
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
7450
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
7451
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
7452
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
7453
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
7454
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
7455
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7456
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7457
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
7458
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7459
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7460
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
7461
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
7462
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7463
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7464
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
7465
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
7466
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
7467
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
7468
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
7469
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
7470
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
7471
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
7472
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
7473
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
7474
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
7475
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
7476
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
7477
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
7478
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
7479
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
7480
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
7481
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
7482
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
7483
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
7484
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
7485
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
7486
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
7487
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `load'
7488
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `<top (required)>'
7489
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
7490
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
7491
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
7492
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
7493
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
7494
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
7495
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
7496
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
7497
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
7498
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
7499
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
7500
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
7501
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `load'
7502
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `<main>'
7503
+
7504
+
7505
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7506
+ Processing by TestsController#index as HTML
7507
+ Completed 200 OK in 0ms (Views: 0.1ms)
7508
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7509
+ Processing by TestsController#index as HTML
7510
+ Completed 200 OK in 0ms (Views: 0.1ms)
7511
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:34 -0700
7512
+ Processing by TestsController#index as HTML
7513
+ Completed 200 OK in 0ms (Views: 0.1ms)
7514
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7515
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7516
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7517
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7518
+ Processing by TestsController#index as HTML
7519
+ Completed 200 OK in 5ms (Views: 2.9ms)
7520
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7521
+ Processing by TestsController#index as HTML
7522
+ Completed 200 OK in 0ms (Views: 0.1ms)
7523
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7524
+ Processing by TestsController#index as HTML
7525
+ Completed 200 OK in 0ms (Views: 0.1ms)
7526
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7527
+ Processing by TestsController#index as HTML
7528
+ Completed 500 Internal Server Error in 0ms
7529
+
7530
+ RuntimeError (jelly beans):
7531
+ app/controllers/tests_controller.rb:3:in `index'
7532
+
7533
+
7534
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7535
+
7536
+ RuntimeError (jelly beans):
7537
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
7538
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
7539
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
7540
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
7541
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
7542
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
7543
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
7544
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
7545
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
7546
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
7547
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
7548
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
7549
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
7550
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
7551
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
7552
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
7553
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7554
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
7555
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
7556
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
7557
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
7558
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7559
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__159943900711722371__call__callbacks'
7560
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
7561
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7562
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
7563
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7564
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7565
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7566
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
7567
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
7568
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7569
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
7570
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
7571
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
7572
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7573
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
7574
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
7575
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
7576
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
7577
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
7578
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
7579
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
7580
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
7581
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
7582
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
7583
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
7584
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
7585
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
7586
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
7587
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
7588
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
7589
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
7590
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
7591
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
7592
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
7593
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
7594
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7595
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7596
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
7597
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7598
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7599
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
7600
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
7601
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7602
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7603
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
7604
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
7605
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
7606
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
7607
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
7608
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
7609
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
7610
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
7611
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
7612
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
7613
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
7614
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
7615
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
7616
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
7617
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
7618
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
7619
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
7620
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
7621
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
7622
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
7623
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
7624
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
7625
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
7626
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `load'
7627
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `<main>'
7628
+
7629
+
7630
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7631
+ Processing by TestsController#index as HTML
7632
+ Completed 200 OK in 0ms (Views: 0.1ms)
7633
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7634
+ Processing by TestsController#index as HTML
7635
+ Completed 200 OK in 0ms (Views: 0.1ms)
7636
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 09:50:35 -0700
7637
+ Processing by TestsController#index as HTML
7638
+ Completed 200 OK in 0ms (Views: 0.1ms)
7639
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7640
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7641
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7642
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7643
+ Processing by TestsController#index as HTML
7644
+ Completed 200 OK in 6ms (Views: 3.5ms)
7645
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7646
+ Processing by TestsController#index as HTML
7647
+ Completed 200 OK in 0ms (Views: 0.1ms)
7648
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7649
+ Processing by TestsController#index as HTML
7650
+ Completed 200 OK in 0ms (Views: 0.1ms)
7651
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7652
+ Processing by TestsController#index as HTML
7653
+ Completed 500 Internal Server Error in 0ms
7654
+
7655
+ RuntimeError (jelly beans):
7656
+ app/controllers/tests_controller.rb:3:in `index'
7657
+
7658
+
7659
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7660
+
7661
+ RuntimeError (jelly beans):
7662
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
7663
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
7664
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
7665
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
7666
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
7667
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
7668
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
7669
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
7670
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
7671
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
7672
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
7673
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
7674
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
7675
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
7676
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
7677
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
7678
+ actionpack (4.1.16) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7679
+ actionpack (4.1.16) lib/action_dispatch/middleware/flash.rb:254:in `call'
7680
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
7681
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
7682
+ actionpack (4.1.16) lib/action_dispatch/middleware/cookies.rb:562:in `call'
7683
+ actionpack (4.1.16) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7684
+ activesupport (4.1.16) lib/active_support/callbacks.rb:82:in `run_callbacks'
7685
+ actionpack (4.1.16) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7686
+ actionpack (4.1.16) lib/action_dispatch/middleware/reloader.rb:73:in `call'
7687
+ actionpack (4.1.16) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7688
+ actionpack (4.1.16) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7689
+ actionpack (4.1.16) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7690
+ railties (4.1.16) lib/rails/rack/logger.rb:38:in `call_app'
7691
+ railties (4.1.16) lib/rails/rack/logger.rb:20:in `block in call'
7692
+ activesupport (4.1.16) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7693
+ activesupport (4.1.16) lib/active_support/tagged_logging.rb:26:in `tagged'
7694
+ activesupport (4.1.16) lib/active_support/tagged_logging.rb:68:in `tagged'
7695
+ railties (4.1.16) lib/rails/rack/logger.rb:20:in `call'
7696
+ actionpack (4.1.16) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7697
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
7698
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
7699
+ activesupport (4.1.16) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
7700
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
7701
+ actionpack (4.1.16) lib/action_dispatch/middleware/static.rb:84:in `call'
7702
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
7703
+ railties (4.1.16) lib/rails/engine.rb:514:in `call'
7704
+ railties (4.1.16) lib/rails/application.rb:144:in `call'
7705
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
7706
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
7707
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
7708
+ actionpack (4.1.16) lib/action_dispatch/testing/integration.rb:309:in `process'
7709
+ actionpack (4.1.16) lib/action_dispatch/testing/integration.rb:32:in `get'
7710
+ actionpack (4.1.16) lib/action_dispatch/testing/integration.rb:343:in `block (2 levels) in <module:Runner>'
7711
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
7712
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
7713
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
7714
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
7715
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
7716
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
7717
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
7718
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7719
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7720
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
7721
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7722
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7723
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
7724
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
7725
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7726
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7727
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
7728
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
7729
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
7730
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
7731
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
7732
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
7733
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
7734
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
7735
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
7736
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
7737
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
7738
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
7739
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
7740
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
7741
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
7742
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
7743
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
7744
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
7745
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
7746
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
7747
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
7748
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
7749
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
7750
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `load'
7751
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `<top (required)>'
7752
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
7753
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
7754
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
7755
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
7756
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
7757
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
7758
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
7759
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
7760
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
7761
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
7762
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
7763
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
7764
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `load'
7765
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `<main>'
7766
+
7767
+
7768
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7769
+ Processing by TestsController#index as HTML
7770
+ Completed 200 OK in 0ms (Views: 0.2ms)
7771
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7772
+ Processing by TestsController#index as HTML
7773
+ Completed 200 OK in 0ms (Views: 0.1ms)
7774
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:00 -0700
7775
+ Processing by TestsController#index as HTML
7776
+ Completed 200 OK in 0ms (Views: 0.1ms)
7777
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7778
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7779
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7780
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7781
+ Processing by TestsController#index as HTML
7782
+ Completed 200 OK in 6ms (Views: 3.6ms)
7783
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7784
+ Processing by TestsController#index as HTML
7785
+ Completed 200 OK in 0ms (Views: 0.1ms)
7786
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7787
+ Processing by TestsController#index as HTML
7788
+ Completed 200 OK in 0ms (Views: 0.1ms)
7789
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7790
+ Processing by TestsController#index as HTML
7791
+ Completed 500 Internal Server Error in 0ms
7792
+
7793
+ RuntimeError (jelly beans):
7794
+ app/controllers/tests_controller.rb:3:in `index'
7795
+
7796
+
7797
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7798
+
7799
+ RuntimeError (jelly beans):
7800
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
7801
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
7802
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
7803
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
7804
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
7805
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
7806
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
7807
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
7808
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
7809
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
7810
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
7811
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
7812
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
7813
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
7814
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
7815
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
7816
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7817
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
7818
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
7819
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
7820
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
7821
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7822
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__3793049542486749231__call__callbacks'
7823
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
7824
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7825
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
7826
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7827
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7828
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7829
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
7830
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
7831
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7832
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
7833
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
7834
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
7835
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7836
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
7837
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
7838
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
7839
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
7840
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
7841
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
7842
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
7843
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
7844
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
7845
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
7846
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
7847
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
7848
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
7849
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
7850
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
7851
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
7852
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
7853
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
7854
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
7855
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
7856
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
7857
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7858
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7859
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
7860
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7861
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
7862
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
7863
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
7864
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7865
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7866
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
7867
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
7868
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
7869
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
7870
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
7871
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
7872
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
7873
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
7874
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
7875
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
7876
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
7877
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
7878
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
7879
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
7880
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
7881
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
7882
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
7883
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
7884
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
7885
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
7886
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
7887
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
7888
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
7889
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `load'
7890
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:23:in `<top (required)>'
7891
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
7892
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
7893
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
7894
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
7895
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
7896
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
7897
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
7898
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
7899
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
7900
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
7901
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
7902
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
7903
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `load'
7904
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:23:in `<main>'
7905
+
7906
+
7907
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7908
+ Processing by TestsController#index as HTML
7909
+ Completed 200 OK in 0ms (Views: 0.1ms)
7910
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7911
+ Processing by TestsController#index as HTML
7912
+ Completed 200 OK in 0ms (Views: 0.1ms)
7913
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:22 -0700
7914
+ Processing by TestsController#index as HTML
7915
+ Completed 200 OK in 0ms (Views: 0.1ms)
7916
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
7917
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
7918
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
7919
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
7920
+ Processing by TestsController#index as HTML
7921
+ Completed 200 OK in 7ms (Views: 4.2ms)
7922
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
7923
+ Processing by TestsController#index as HTML
7924
+ Completed 200 OK in 1ms (Views: 0.4ms)
7925
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
7926
+ Processing by TestsController#index as HTML
7927
+ Completed 200 OK in 0ms (Views: 0.1ms)
7928
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
7929
+ Processing by TestsController#index as HTML
7930
+ Completed 500 Internal Server Error in 0ms
7931
+
7932
+ RuntimeError (jelly beans):
7933
+ app/controllers/tests_controller.rb:3:in `index'
7934
+
7935
+
7936
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
7937
+
7938
+ RuntimeError (jelly beans):
7939
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
7940
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
7941
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
7942
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
7943
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
7944
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
7945
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
7946
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
7947
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
7948
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
7949
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
7950
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
7951
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
7952
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
7953
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
7954
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
7955
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7956
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
7957
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
7958
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
7959
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
7960
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7961
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__1206758601728515021__call__callbacks'
7962
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
7963
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7964
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
7965
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7966
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7967
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7968
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
7969
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
7970
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7971
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
7972
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
7973
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
7974
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7975
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
7976
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
7977
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
7978
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
7979
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
7980
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
7981
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
7982
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
7983
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
7984
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
7985
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
7986
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
7987
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
7988
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
7989
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
7990
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
7991
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
7992
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
7993
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
7994
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
7995
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
7996
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7997
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
7998
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
7999
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8000
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8001
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
8002
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
8003
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8004
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8005
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
8006
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
8007
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
8008
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
8009
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
8010
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
8011
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
8012
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
8013
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
8014
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
8015
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
8016
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
8017
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
8018
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
8019
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
8020
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
8021
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
8022
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
8023
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
8024
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
8025
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
8026
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
8027
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
8028
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `load'
8029
+ /Users/cameron/.rbenv/versions/2.2.4/bin/rspec:23:in `<main>'
8030
+
8031
+
8032
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
8033
+ Processing by TestsController#index as HTML
8034
+ Completed 200 OK in 0ms (Views: 0.1ms)
8035
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
8036
+ Processing by TestsController#index as HTML
8037
+ Completed 200 OK in 0ms (Views: 0.1ms)
8038
+ Started GET "/tests" for 127.0.0.1 at 2016-08-01 10:47:24 -0700
8039
+ Processing by TestsController#index as HTML
8040
+ Completed 200 OK in 0ms (Views: 0.1ms)
8041
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8042
+
8043
+ NoMethodError (undefined method `[]' for nil:NilClass):
8044
+ rack (1.5.5) lib/rack/etag.rb:30:in `call'
8045
+ rack (1.5.5) lib/rack/conditionalget.rb:35:in `call'
8046
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
8047
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8048
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
8049
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
8050
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
8051
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
8052
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8053
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__2451414213472614110__call__callbacks'
8054
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
8055
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8056
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
8057
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8058
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8059
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8060
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
8061
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
8062
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8063
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
8064
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
8065
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
8066
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8067
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
8068
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
8069
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8070
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
8071
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
8072
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
8073
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
8074
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
8075
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
8076
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
8077
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
8078
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
8079
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:38:in `post'
8080
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
8081
+ javascript_middleware_spec.rb:22:in `block (3 levels) in <top (required)>'
8082
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `call'
8083
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `perform_change'
8084
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:172:in `matches?'
8085
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:50:in `block in handle_matcher'
8086
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:27:in `with_matcher'
8087
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:48:in `handle_matcher'
8088
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:65:in `to'
8089
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:101:in `to'
8090
+ javascript_middleware_spec.rb:22:in `block (2 levels) in <top (required)>'
8091
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
8092
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
8093
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
8094
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
8095
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
8096
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
8097
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8098
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8099
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
8100
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8101
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8102
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
8103
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
8104
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8105
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8106
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
8107
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
8108
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
8109
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
8110
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
8111
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
8112
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
8113
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
8114
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
8115
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
8116
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
8117
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
8118
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
8119
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
8120
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
8121
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
8122
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
8123
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
8124
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
8125
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
8126
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
8127
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
8128
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
8129
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
8130
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
8131
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
8132
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
8133
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
8134
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
8135
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
8136
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
8137
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
8138
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
8139
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
8140
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
8141
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
8142
+
8143
+
8144
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8145
+
8146
+ NoMethodError (undefined method `[]' for nil:NilClass):
8147
+ rack (1.5.5) lib/rack/etag.rb:30:in `call'
8148
+ rack (1.5.5) lib/rack/conditionalget.rb:35:in `call'
8149
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
8150
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8151
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
8152
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
8153
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
8154
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
8155
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8156
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__2451414213472614110__call__callbacks'
8157
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
8158
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8159
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
8160
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8161
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8162
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8163
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
8164
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
8165
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8166
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
8167
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
8168
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
8169
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8170
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
8171
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
8172
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8173
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
8174
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
8175
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
8176
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
8177
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
8178
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
8179
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
8180
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
8181
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
8182
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:38:in `post'
8183
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
8184
+ javascript_middleware_spec.rb:39:in `block (3 levels) in <top (required)>'
8185
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `call'
8186
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `perform_change'
8187
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:259:in `does_not_match?'
8188
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:78:in `does_not_match?'
8189
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:72:in `block in handle_matcher'
8190
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:27:in `with_matcher'
8191
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:70:in `handle_matcher'
8192
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:78:in `not_to'
8193
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:106:in `not_to'
8194
+ javascript_middleware_spec.rb:39:in `block (2 levels) in <top (required)>'
8195
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
8196
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
8197
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
8198
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
8199
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
8200
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
8201
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8202
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8203
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
8204
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8205
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8206
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
8207
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
8208
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8209
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8210
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
8211
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
8212
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
8213
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
8214
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
8215
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
8216
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
8217
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
8218
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
8219
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
8220
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
8221
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
8222
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
8223
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
8224
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
8225
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
8226
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
8227
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
8228
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
8229
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
8230
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
8231
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
8232
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
8233
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
8234
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
8235
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
8236
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
8237
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
8238
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
8239
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
8240
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
8241
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
8242
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
8243
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
8244
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
8245
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
8246
+
8247
+
8248
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8249
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8250
+ Processing by TestsController#index as HTML
8251
+ Completed 200 OK in 24ms (Views: 10.4ms)
8252
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8253
+ Processing by TestsController#index as HTML
8254
+ Completed 200 OK in 0ms (Views: 0.1ms)
8255
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8256
+ Processing by TestsController#index as HTML
8257
+ Completed 200 OK in 0ms (Views: 0.1ms)
8258
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8259
+ Processing by TestsController#index as HTML
8260
+ Completed 500 Internal Server Error in 0ms
8261
+
8262
+ RuntimeError (jelly beans):
8263
+ app/controllers/tests_controller.rb:3:in `index'
8264
+
8265
+
8266
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8267
+
8268
+ RuntimeError (jelly beans):
8269
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
8270
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
8271
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
8272
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
8273
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
8274
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
8275
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
8276
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
8277
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
8278
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
8279
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
8280
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
8281
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
8282
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
8283
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
8284
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
8285
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8286
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
8287
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
8288
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
8289
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
8290
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8291
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__2451414213472614110__call__callbacks'
8292
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
8293
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8294
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
8295
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8296
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8297
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8298
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
8299
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
8300
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8301
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
8302
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
8303
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
8304
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8305
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
8306
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
8307
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8308
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
8309
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
8310
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
8311
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
8312
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
8313
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
8314
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
8315
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
8316
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
8317
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
8318
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
8319
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
8320
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
8321
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
8322
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
8323
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
8324
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
8325
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
8326
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8327
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8328
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
8329
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8330
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8331
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
8332
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
8333
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8334
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8335
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
8336
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
8337
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
8338
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
8339
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
8340
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
8341
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
8342
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
8343
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
8344
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
8345
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
8346
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
8347
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
8348
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
8349
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
8350
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
8351
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
8352
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
8353
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
8354
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
8355
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
8356
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
8357
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
8358
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
8359
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
8360
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
8361
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
8362
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
8363
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
8364
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
8365
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
8366
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
8367
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
8368
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
8369
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
8370
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
8371
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
8372
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
8373
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
8374
+
8375
+
8376
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8377
+ Processing by TestsController#index as HTML
8378
+ Completed 200 OK in 0ms (Views: 0.2ms)
8379
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8380
+
8381
+ RuntimeError (jelly beans):
8382
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
8383
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
8384
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
8385
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
8386
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
8387
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
8388
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
8389
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
8390
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
8391
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
8392
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
8393
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
8394
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
8395
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
8396
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
8397
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
8398
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8399
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
8400
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
8401
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
8402
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
8403
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8404
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__2451414213472614110__call__callbacks'
8405
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
8406
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8407
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
8408
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8409
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8410
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8411
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
8412
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
8413
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8414
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
8415
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
8416
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
8417
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8418
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
8419
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
8420
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8421
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
8422
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
8423
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
8424
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
8425
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
8426
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
8427
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
8428
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
8429
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
8430
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
8431
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
8432
+ ruby_middleware_spec.rb:86:in `block (5 levels) in <top (required)>'
8433
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `call'
8434
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `perform_change'
8435
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:172:in `matches?'
8436
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:50:in `block in handle_matcher'
8437
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:27:in `with_matcher'
8438
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:48:in `handle_matcher'
8439
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:65:in `to'
8440
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:101:in `to'
8441
+ ruby_middleware_spec.rb:86:in `block (4 levels) in <top (required)>'
8442
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
8443
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
8444
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
8445
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
8446
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
8447
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
8448
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8449
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8450
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
8451
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8452
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8453
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
8454
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
8455
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8456
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8457
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
8458
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
8459
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
8460
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
8461
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
8462
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
8463
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
8464
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
8465
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
8466
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
8467
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
8468
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
8469
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
8470
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
8471
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
8472
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
8473
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
8474
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
8475
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
8476
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
8477
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
8478
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
8479
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
8480
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
8481
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
8482
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
8483
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
8484
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
8485
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
8486
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
8487
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
8488
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
8489
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
8490
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
8491
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
8492
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
8493
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
8494
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
8495
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
8496
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
8497
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
8498
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
8499
+
8500
+
8501
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:42:24 -0700
8502
+ Processing by TestsController#index as HTML
8503
+ Completed 200 OK in 0ms (Views: 0.1ms)
8504
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:43:17 -0700
8505
+
8506
+ NoMethodError (undefined method `[]' for nil:NilClass):
8507
+ rack (1.5.5) lib/rack/etag.rb:30:in `call'
8508
+ rack (1.5.5) lib/rack/conditionalget.rb:35:in `call'
8509
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
8510
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8511
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
8512
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
8513
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
8514
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
8515
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8516
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__4105998157469273390__call__callbacks'
8517
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
8518
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8519
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
8520
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8521
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8522
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8523
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
8524
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
8525
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8526
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
8527
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
8528
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
8529
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8530
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
8531
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
8532
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8533
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
8534
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
8535
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
8536
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
8537
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
8538
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
8539
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
8540
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
8541
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
8542
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:38:in `post'
8543
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
8544
+ javascript_middleware_spec.rb:22:in `block (3 levels) in <top (required)>'
8545
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `call'
8546
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `perform_change'
8547
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:172:in `matches?'
8548
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:50:in `block in handle_matcher'
8549
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:27:in `with_matcher'
8550
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:48:in `handle_matcher'
8551
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:65:in `to'
8552
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:101:in `to'
8553
+ javascript_middleware_spec.rb:22:in `block (2 levels) in <top (required)>'
8554
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
8555
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
8556
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
8557
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
8558
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
8559
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
8560
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8561
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8562
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
8563
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8564
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8565
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
8566
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
8567
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8568
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8569
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
8570
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
8571
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
8572
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
8573
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
8574
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
8575
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
8576
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
8577
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
8578
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
8579
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
8580
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
8581
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
8582
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
8583
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
8584
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
8585
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
8586
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
8587
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
8588
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
8589
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
8590
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
8591
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
8592
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
8593
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
8594
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
8595
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
8596
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
8597
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
8598
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
8599
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
8600
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
8601
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
8602
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
8603
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
8604
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
8605
+
8606
+
8607
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:44:16 -0700
8608
+
8609
+ NoMethodError (undefined method `[]' for nil:NilClass):
8610
+ rack (1.5.5) lib/rack/etag.rb:30:in `call'
8611
+ rack (1.5.5) lib/rack/conditionalget.rb:35:in `call'
8612
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
8613
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8614
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
8615
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
8616
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
8617
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
8618
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8619
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__3524093689928406301__call__callbacks'
8620
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
8621
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8622
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
8623
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8624
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8625
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8626
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
8627
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
8628
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8629
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
8630
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
8631
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
8632
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8633
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
8634
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
8635
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8636
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
8637
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
8638
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
8639
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
8640
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
8641
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
8642
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
8643
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
8644
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
8645
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:38:in `post'
8646
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
8647
+ javascript_middleware_spec.rb:22:in `block (3 levels) in <top (required)>'
8648
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `call'
8649
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `perform_change'
8650
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:172:in `matches?'
8651
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:50:in `block in handle_matcher'
8652
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:27:in `with_matcher'
8653
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:48:in `handle_matcher'
8654
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:65:in `to'
8655
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:101:in `to'
8656
+ javascript_middleware_spec.rb:22:in `block (2 levels) in <top (required)>'
8657
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
8658
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
8659
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
8660
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
8661
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
8662
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
8663
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8664
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8665
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
8666
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8667
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8668
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
8669
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
8670
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8671
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8672
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
8673
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
8674
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
8675
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
8676
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
8677
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
8678
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
8679
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
8680
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
8681
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
8682
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
8683
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
8684
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
8685
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
8686
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
8687
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
8688
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
8689
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
8690
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
8691
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
8692
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
8693
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
8694
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
8695
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
8696
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
8697
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
8698
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
8699
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
8700
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
8701
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
8702
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
8703
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
8704
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
8705
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
8706
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
8707
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
8708
+
8709
+
8710
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:45:38 -0700
8711
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:45:43 -0700
8712
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:45:43 -0700
8713
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:45:43 -0700
8714
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8715
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8716
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8717
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8718
+ Processing by TestsController#index as HTML
8719
+ Completed 200 OK in 6ms (Views: 3.7ms)
8720
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8721
+ Processing by TestsController#index as HTML
8722
+ Completed 200 OK in 0ms (Views: 0.1ms)
8723
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8724
+ Processing by TestsController#index as HTML
8725
+ Completed 200 OK in 0ms (Views: 0.2ms)
8726
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8727
+ Processing by TestsController#index as HTML
8728
+ Completed 500 Internal Server Error in 0ms
8729
+
8730
+ RuntimeError (jelly beans):
8731
+ app/controllers/tests_controller.rb:3:in `index'
8732
+
8733
+
8734
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8735
+
8736
+ RuntimeError (jelly beans):
8737
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
8738
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
8739
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
8740
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
8741
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
8742
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
8743
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
8744
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
8745
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
8746
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
8747
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
8748
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
8749
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
8750
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
8751
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
8752
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
8753
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8754
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
8755
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
8756
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
8757
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
8758
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8759
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__4055852882945362233__call__callbacks'
8760
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
8761
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8762
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
8763
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8764
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8765
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8766
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
8767
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
8768
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8769
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
8770
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
8771
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
8772
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8773
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
8774
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
8775
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8776
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
8777
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
8778
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
8779
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
8780
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
8781
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
8782
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
8783
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
8784
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
8785
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
8786
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
8787
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
8788
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
8789
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
8790
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
8791
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
8792
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
8793
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
8794
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8795
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8796
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
8797
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8798
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8799
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
8800
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
8801
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8802
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8803
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
8804
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
8805
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
8806
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
8807
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
8808
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
8809
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
8810
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
8811
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
8812
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
8813
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
8814
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
8815
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
8816
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
8817
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
8818
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
8819
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
8820
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
8821
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
8822
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
8823
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
8824
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
8825
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
8826
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
8827
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
8828
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
8829
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
8830
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
8831
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
8832
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
8833
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
8834
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
8835
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
8836
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
8837
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
8838
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
8839
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
8840
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
8841
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
8842
+
8843
+
8844
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8845
+ Processing by TestsController#index as HTML
8846
+ Completed 200 OK in 0ms (Views: 0.1ms)
8847
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8848
+
8849
+ RuntimeError (jelly beans):
8850
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
8851
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
8852
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
8853
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
8854
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
8855
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
8856
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
8857
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
8858
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
8859
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
8860
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
8861
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
8862
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
8863
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
8864
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
8865
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
8866
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8867
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
8868
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
8869
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
8870
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
8871
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8872
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__4055852882945362233__call__callbacks'
8873
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
8874
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8875
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
8876
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8877
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8878
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8879
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
8880
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
8881
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8882
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
8883
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
8884
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
8885
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8886
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
8887
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
8888
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
8889
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
8890
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
8891
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
8892
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
8893
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
8894
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
8895
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
8896
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
8897
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
8898
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
8899
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
8900
+ ruby_middleware_spec.rb:86:in `block (5 levels) in <top (required)>'
8901
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `call'
8902
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:327:in `perform_change'
8903
+ rspec-expectations (3.5.0) lib/rspec/matchers/built_in/change.rb:172:in `matches?'
8904
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:50:in `block in handle_matcher'
8905
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:27:in `with_matcher'
8906
+ rspec-expectations (3.5.0) lib/rspec/expectations/handler.rb:48:in `handle_matcher'
8907
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:65:in `to'
8908
+ rspec-expectations (3.5.0) lib/rspec/expectations/expectation_target.rb:101:in `to'
8909
+ ruby_middleware_spec.rb:86:in `block (4 levels) in <top (required)>'
8910
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
8911
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
8912
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
8913
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
8914
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
8915
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
8916
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8917
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8918
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
8919
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8920
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
8921
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
8922
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
8923
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8924
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
8925
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
8926
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
8927
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
8928
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
8929
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
8930
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
8931
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
8932
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
8933
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
8934
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
8935
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
8936
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
8937
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
8938
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
8939
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
8940
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
8941
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
8942
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
8943
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
8944
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
8945
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
8946
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
8947
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
8948
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
8949
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
8950
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
8951
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
8952
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
8953
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
8954
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
8955
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
8956
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
8957
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
8958
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
8959
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
8960
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
8961
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
8962
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
8963
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
8964
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
8965
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
8966
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
8967
+
8968
+
8969
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:45:47 -0700
8970
+ Processing by TestsController#index as HTML
8971
+ Completed 200 OK in 0ms (Views: 0.1ms)
8972
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
8973
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
8974
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
8975
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
8976
+ Processing by TestsController#index as HTML
8977
+ Completed 200 OK in 6ms (Views: 3.9ms)
8978
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
8979
+ Processing by TestsController#index as HTML
8980
+ Completed 200 OK in 0ms (Views: 0.1ms)
8981
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
8982
+ Processing by TestsController#index as HTML
8983
+ Completed 200 OK in 0ms (Views: 0.1ms)
8984
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
8985
+ Processing by TestsController#index as HTML
8986
+ Completed 500 Internal Server Error in 0ms
8987
+
8988
+ RuntimeError (jelly beans):
8989
+ app/controllers/tests_controller.rb:3:in `index'
8990
+
8991
+
8992
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
8993
+
8994
+ RuntimeError (jelly beans):
8995
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
8996
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
8997
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
8998
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
8999
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
9000
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
9001
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
9002
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
9003
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
9004
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
9005
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
9006
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
9007
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
9008
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
9009
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
9010
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
9011
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9012
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
9013
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
9014
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
9015
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
9016
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9017
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__1580167246642216847__call__callbacks'
9018
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
9019
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9020
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
9021
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
9022
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9023
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9024
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
9025
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
9026
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9027
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
9028
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
9029
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
9030
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9031
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
9032
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
9033
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
9034
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
9035
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
9036
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
9037
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
9038
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
9039
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
9040
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
9041
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
9042
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
9043
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
9044
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
9045
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
9046
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
9047
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
9048
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
9049
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
9050
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
9051
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
9052
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9053
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9054
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
9055
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
9056
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
9057
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
9058
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
9059
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9060
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9061
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
9062
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
9063
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
9064
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
9065
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
9066
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
9067
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
9068
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
9069
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
9070
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
9071
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
9072
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
9073
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
9074
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
9075
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
9076
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
9077
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
9078
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
9079
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
9080
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
9081
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
9082
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
9083
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
9084
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
9085
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
9086
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
9087
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
9088
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
9089
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
9090
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
9091
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
9092
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
9093
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
9094
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
9095
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
9096
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
9097
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
9098
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
9099
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
9100
+
9101
+
9102
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
9103
+ Processing by TestsController#index as HTML
9104
+ Completed 200 OK in 0ms (Views: 0.2ms)
9105
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
9106
+ Processing by TestsController#index as HTML
9107
+ Completed 200 OK in 0ms (Views: 0.1ms)
9108
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:23 -0700
9109
+ Processing by TestsController#index as HTML
9110
+ Completed 200 OK in 0ms (Views: 0.1ms)
9111
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:46:57 -0700
9112
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:46:57 -0700
9113
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:46:57 -0700
9114
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:57 -0700
9115
+ Processing by TestsController#index as HTML
9116
+ Completed 200 OK in 6ms (Views: 3.4ms)
9117
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:57 -0700
9118
+ Processing by TestsController#index as HTML
9119
+ Completed 200 OK in 0ms (Views: 0.1ms)
9120
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:57 -0700
9121
+ Processing by TestsController#index as HTML
9122
+ Completed 200 OK in 0ms (Views: 0.1ms)
9123
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:57 -0700
9124
+ Processing by TestsController#index as HTML
9125
+ Completed 500 Internal Server Error in 0ms
9126
+
9127
+ RuntimeError (jelly beans):
9128
+ app/controllers/tests_controller.rb:3:in `index'
9129
+
9130
+
9131
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:57 -0700
9132
+
9133
+ RuntimeError (jelly beans):
9134
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
9135
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
9136
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
9137
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
9138
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
9139
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
9140
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
9141
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
9142
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
9143
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
9144
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
9145
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
9146
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
9147
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
9148
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
9149
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
9150
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9151
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
9152
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
9153
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
9154
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
9155
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9156
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__1360273117327454269__call__callbacks'
9157
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
9158
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9159
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
9160
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
9161
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9162
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9163
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
9164
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
9165
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9166
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
9167
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
9168
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
9169
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9170
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
9171
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
9172
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
9173
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
9174
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
9175
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
9176
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
9177
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
9178
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
9179
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
9180
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
9181
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
9182
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
9183
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
9184
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
9185
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
9186
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
9187
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
9188
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
9189
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
9190
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
9191
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9192
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9193
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
9194
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
9195
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
9196
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
9197
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
9198
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9199
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9200
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
9201
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
9202
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
9203
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
9204
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
9205
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
9206
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
9207
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
9208
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
9209
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
9210
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
9211
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
9212
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
9213
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
9214
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
9215
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
9216
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
9217
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
9218
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
9219
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
9220
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
9221
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
9222
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
9223
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
9224
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
9225
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
9226
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
9227
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
9228
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
9229
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
9230
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
9231
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
9232
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
9233
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
9234
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
9235
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
9236
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
9237
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
9238
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
9239
+
9240
+
9241
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:46:57 -0700
9242
+ Processing by TestsController#index as HTML
9243
+ Completed 200 OK in 0ms (Views: 0.1ms)
9244
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:47:02 -0700
9245
+ Processing by TestsController#index as HTML
9246
+ Completed 200 OK in 1ms (Views: 0.2ms)
9247
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9248
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9249
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9250
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9251
+ Processing by TestsController#index as HTML
9252
+ Completed 200 OK in 6ms (Views: 3.6ms)
9253
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9254
+ Processing by TestsController#index as HTML
9255
+ Completed 200 OK in 0ms (Views: 0.1ms)
9256
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9257
+ Processing by TestsController#index as HTML
9258
+ Completed 200 OK in 0ms (Views: 0.1ms)
9259
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9260
+ Processing by TestsController#index as HTML
9261
+ Completed 500 Internal Server Error in 0ms
9262
+
9263
+ RuntimeError (jelly beans):
9264
+ app/controllers/tests_controller.rb:3:in `index'
9265
+
9266
+
9267
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9268
+
9269
+ RuntimeError (jelly beans):
9270
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
9271
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
9272
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
9273
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
9274
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
9275
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
9276
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
9277
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
9278
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
9279
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
9280
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
9281
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
9282
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
9283
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
9284
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
9285
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
9286
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9287
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
9288
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
9289
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
9290
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
9291
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9292
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__2883472562641170545__call__callbacks'
9293
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
9294
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9295
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
9296
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
9297
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9298
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9299
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
9300
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
9301
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9302
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
9303
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
9304
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
9305
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9306
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
9307
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
9308
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
9309
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
9310
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
9311
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
9312
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
9313
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
9314
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
9315
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
9316
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
9317
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
9318
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
9319
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
9320
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
9321
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
9322
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
9323
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
9324
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
9325
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
9326
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
9327
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9328
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9329
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
9330
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
9331
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
9332
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
9333
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
9334
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9335
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9336
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
9337
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
9338
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
9339
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
9340
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
9341
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
9342
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
9343
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
9344
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
9345
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
9346
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
9347
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
9348
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
9349
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
9350
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
9351
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
9352
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
9353
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
9354
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
9355
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
9356
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
9357
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
9358
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
9359
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
9360
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
9361
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
9362
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
9363
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
9364
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
9365
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
9366
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
9367
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
9368
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
9369
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
9370
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
9371
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
9372
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
9373
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
9374
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
9375
+
9376
+
9377
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9378
+ Processing by TestsController#index as HTML
9379
+ Completed 200 OK in 0ms (Views: 0.1ms)
9380
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9381
+ Processing by TestsController#index as HTML
9382
+ Completed 200 OK in 0ms (Views: 0.1ms)
9383
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:07 -0700
9384
+ Processing by TestsController#index as HTML
9385
+ Completed 200 OK in 0ms (Views: 0.1ms)
9386
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9387
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9388
+ Started POST "/i18n/instrument.json" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9389
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9390
+ Processing by TestsController#index as HTML
9391
+ Completed 200 OK in 6ms (Views: 3.8ms)
9392
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9393
+ Processing by TestsController#index as HTML
9394
+ Completed 200 OK in 0ms (Views: 0.1ms)
9395
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9396
+ Processing by TestsController#index as HTML
9397
+ Completed 200 OK in 0ms (Views: 0.1ms)
9398
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9399
+ Processing by TestsController#index as HTML
9400
+ Completed 500 Internal Server Error in 0ms
9401
+
9402
+ RuntimeError (jelly beans):
9403
+ app/controllers/tests_controller.rb:3:in `index'
9404
+
9405
+
9406
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9407
+
9408
+ RuntimeError (jelly beans):
9409
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:141:in `block in and_raise'
9410
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `call'
9411
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:683:in `block in call'
9412
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `map'
9413
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:682:in `call'
9414
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:565:in `invoke_incrementing_actual_calls_by'
9415
+ rspec-mocks (3.5.0) lib/rspec/mocks/message_expectation.rb:422:in `invoke'
9416
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:182:in `message_received'
9417
+ rspec-mocks (3.5.0) lib/rspec/mocks/proxy.rb:326:in `message_received'
9418
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:77:in `proxy_method_invoked'
9419
+ rspec-mocks (3.5.0) lib/rspec/mocks/method_double.rb:64:in `block (2 levels) in define_proxy_method'
9420
+ rspec-mocks (3.5.0) lib/rspec/mocks/any_instance/recorder.rb:257:in `block in observe!'
9421
+ /Users/cameron/workspace/i18n-instrument/lib/i18n/instrument/middleware.rb:52:in `call'
9422
+ rack (1.5.5) lib/rack/etag.rb:23:in `call'
9423
+ rack (1.5.5) lib/rack/conditionalget.rb:25:in `call'
9424
+ rack (1.5.5) lib/rack/head.rb:11:in `call'
9425
+ actionpack (4.0.13) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9426
+ actionpack (4.0.13) lib/action_dispatch/middleware/flash.rb:241:in `call'
9427
+ rack (1.5.5) lib/rack/session/abstract/id.rb:225:in `context'
9428
+ rack (1.5.5) lib/rack/session/abstract/id.rb:220:in `call'
9429
+ actionpack (4.0.13) lib/action_dispatch/middleware/cookies.rb:486:in `call'
9430
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9431
+ activesupport (4.0.13) lib/active_support/callbacks.rb:373:in `_run__194641235006512031__call__callbacks'
9432
+ activesupport (4.0.13) lib/active_support/callbacks.rb:80:in `run_callbacks'
9433
+ actionpack (4.0.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9434
+ actionpack (4.0.13) lib/action_dispatch/middleware/reloader.rb:64:in `call'
9435
+ actionpack (4.0.13) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
9436
+ actionpack (4.0.13) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9437
+ actionpack (4.0.13) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9438
+ railties (4.0.13) lib/rails/rack/logger.rb:38:in `call_app'
9439
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `block in call'
9440
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9441
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:26:in `tagged'
9442
+ activesupport (4.0.13) lib/active_support/tagged_logging.rb:68:in `tagged'
9443
+ railties (4.0.13) lib/rails/rack/logger.rb:20:in `call'
9444
+ actionpack (4.0.13) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9445
+ rack (1.5.5) lib/rack/methodoverride.rb:21:in `call'
9446
+ rack (1.5.5) lib/rack/runtime.rb:17:in `call'
9447
+ activesupport (4.0.13) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
9448
+ rack (1.5.5) lib/rack/lock.rb:17:in `call'
9449
+ actionpack (4.0.13) lib/action_dispatch/middleware/static.rb:84:in `call'
9450
+ rack (1.5.5) lib/rack/sendfile.rb:112:in `call'
9451
+ railties (4.0.13) lib/rails/engine.rb:511:in `call'
9452
+ railties (4.0.13) lib/rails/application.rb:97:in `call'
9453
+ rack-test (0.6.3) lib/rack/mock_session.rb:30:in `request'
9454
+ rack-test (0.6.3) lib/rack/test.rb:244:in `process_request'
9455
+ rack-test (0.6.3) lib/rack/test.rb:124:in `request'
9456
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:311:in `process'
9457
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:32:in `get'
9458
+ actionpack (4.0.13) lib/action_dispatch/testing/integration.rb:345:in `block (2 levels) in <module:Runner>'
9459
+ ruby_middleware_spec.rb:63:in `block (3 levels) in <top (required)>'
9460
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `instance_exec'
9461
+ rspec-core (3.5.2) lib/rspec/core/example.rb:254:in `block in run'
9462
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `block in with_around_and_singleton_context_hooks'
9463
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `block in with_around_example_hooks'
9464
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `block in run'
9465
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:611:in `block in run_around_example_hooks_for'
9466
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9467
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9468
+ rspec-rails (3.5.1) lib/rspec/rails/adapters.rb:127:in `block (2 levels) in <module:MinitestLifecycleAdapter>'
9469
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
9470
+ rspec-core (3.5.2) lib/rspec/core/example.rb:443:in `instance_exec'
9471
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:382:in `execute_with'
9472
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:613:in `block (2 levels) in run_around_example_hooks_for'
9473
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9474
+ rspec-core (3.5.2) lib/rspec/core/example.rb:338:in `call'
9475
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:614:in `run_around_example_hooks_for'
9476
+ rspec-core (3.5.2) lib/rspec/core/hooks.rb:471:in `run'
9477
+ rspec-core (3.5.2) lib/rspec/core/example.rb:453:in `with_around_example_hooks'
9478
+ rspec-core (3.5.2) lib/rspec/core/example.rb:496:in `with_around_and_singleton_context_hooks'
9479
+ rspec-core (3.5.2) lib/rspec/core/example.rb:251:in `run'
9480
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:627:in `block in run_examples'
9481
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `map'
9482
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:623:in `run_examples'
9483
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:589:in `run'
9484
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `block in run'
9485
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `map'
9486
+ rspec-core (3.5.2) lib/rspec/core/example_group.rb:590:in `run'
9487
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (3 levels) in run_specs'
9488
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `map'
9489
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:113:in `block (2 levels) in run_specs'
9490
+ rspec-core (3.5.2) lib/rspec/core/configuration.rb:1836:in `with_suite_hooks'
9491
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:112:in `block in run_specs'
9492
+ rspec-core (3.5.2) lib/rspec/core/reporter.rb:77:in `report'
9493
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:111:in `run_specs'
9494
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:87:in `run'
9495
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:71:in `run'
9496
+ rspec-core (3.5.2) lib/rspec/core/runner.rb:45:in `invoke'
9497
+ rspec-core (3.5.2) exe/rspec:4:in `<top (required)>'
9498
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `load'
9499
+ /Users/cameron/.rbenv/versions/2.1.6/bin/rspec:22:in `<top (required)>'
9500
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `load'
9501
+ bundler (1.12.5) lib/bundler/cli/exec.rb:63:in `kernel_load'
9502
+ bundler (1.12.5) lib/bundler/cli/exec.rb:24:in `run'
9503
+ bundler (1.12.5) lib/bundler/cli.rb:304:in `exec'
9504
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/command.rb:27:in `run'
9505
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/invocation.rb:126:in `invoke_command'
9506
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor.rb:359:in `dispatch'
9507
+ bundler (1.12.5) lib/bundler/vendor/thor/lib/thor/base.rb:440:in `start'
9508
+ bundler (1.12.5) lib/bundler/cli.rb:11:in `start'
9509
+ bundler (1.12.5) exe/bundle:27:in `block in <top (required)>'
9510
+ bundler (1.12.5) lib/bundler/friendly_errors.rb:98:in `with_friendly_errors'
9511
+ bundler (1.12.5) exe/bundle:19:in `<top (required)>'
9512
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `load'
9513
+ /Users/cameron/.rbenv/versions/2.1.6/bin/bundle:22:in `<main>'
9514
+
9515
+
9516
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9517
+ Processing by TestsController#index as HTML
9518
+ Completed 200 OK in 0ms (Views: 0.2ms)
9519
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9520
+ Processing by TestsController#index as HTML
9521
+ Completed 200 OK in 0ms (Views: 0.1ms)
9522
+ Started GET "/tests" for 127.0.0.1 at 2016-10-21 13:48:20 -0700
9523
+ Processing by TestsController#index as HTML
9524
+ Completed 200 OK in 0ms (Views: 0.1ms)