mr_video 1.1.0 → 1.1.1

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: e93c62d11757341125c019465f0eaf51895e603f
4
- data.tar.gz: b55b8333637bf3c47994cc21a8c26047fa1d48b5
3
+ metadata.gz: b8ef7cc9d074db156e504ac17aa3587637956d8b
4
+ data.tar.gz: fe66543fad1e07a8cb4a10b5e6b3ba89776dc664
5
5
  SHA512:
6
- metadata.gz: 3b40c7e3ec6be78b00138c398c10788e91aff6b038d2a2dbe76face93cbc6fbc2e2bb8269ea7842c70544e1466402d33d0294af375e4f18810217e93b7cbd405
7
- data.tar.gz: 31e6d510474b05f780e5c9365e562d7a6342c0e26f64ff0cbb4cfec6fe7a8aa3daa112fa6e1037318e1f4fd367462edd6a58c6eb06c326141b7dc940670d44ab
6
+ metadata.gz: 878652afb34983055e28f895b116146f076b775c885d6dd1439673e28f5fe40af68d0ab21025d49c2039231fb178d771cbb1cb79cb74e8f1280aff388b1854ca
7
+ data.tar.gz: 41f58a440ceb6186701bf9730b60b84cf6b0c76e909e045588344b092f167b317c8aea4b48d40ec83755422d83ac67354a8342f6fd34fd688b299558d4d741b9
@@ -1,5 +1,4 @@
1
1
  module MrVideo
2
-
3
2
  class CassettesController < MrVideoController
4
3
 
5
4
  def index
@@ -15,6 +14,5 @@ module MrVideo
15
14
  @cassette.destroy
16
15
  end
17
16
 
18
- end # CassettesController class
19
-
20
- end # MrVideo module
17
+ end
18
+ end
@@ -1,8 +1,13 @@
1
1
  module MrVideo
2
2
 
3
3
  class MrVideoController < ActionController::Base
4
- layout 'mr_video'
4
+ begin
5
+ skip_forgery_protection
6
+ rescue
7
+ # ignored
8
+ end
5
9
 
10
+ layout 'mr_video'
6
11
 
7
12
  end
8
13
 
@@ -1,5 +1,4 @@
1
1
  module MrVideo
2
-
3
2
  class Cassette
4
3
 
5
4
  def initialize(cassette_path)
@@ -7,11 +6,7 @@ module MrVideo
7
6
  end
8
7
 
9
8
  def id
10
- if Rails.version < '4.2.0'
11
- URI.escape(name, /\//)
12
- else
13
- name
14
- end
9
+ @id ||= IdService.encode(name)
15
10
  end
16
11
 
17
12
  def name
@@ -73,8 +68,8 @@ module MrVideo
73
68
  }
74
69
  end
75
70
 
76
- def self.find(name)
77
- name = URI.decode(name)
71
+ def self.find(id)
72
+ name = IdService.decode(id)
78
73
  cassette_path = cassette_paths(name).first
79
74
  unless cassette_path
80
75
  raise StandardError.new("#{self.name} with name: '#{name}' not found!")
@@ -134,6 +129,5 @@ module MrVideo
134
129
  MrVideo.configuration.cassette_library_dir
135
130
  end
136
131
 
137
- end # Cassette class
138
-
139
- end # MrVideo module
132
+ end
133
+ end
@@ -1,5 +1,4 @@
1
1
  module MrVideo
2
-
3
2
  class Episode
4
3
 
5
4
  attr_reader :cassette
@@ -10,7 +9,7 @@ module MrVideo
10
9
  end
11
10
 
12
11
  def id
13
- url.hash
12
+ @id ||= IdService.encode(url)
14
13
  end
15
14
 
16
15
  def request_method
@@ -71,6 +70,5 @@ module MrVideo
71
70
  @http_interaction
72
71
  end
73
72
 
74
- end # Episode class
75
-
76
- end # MrVideo module
73
+ end
74
+ end
@@ -0,0 +1,14 @@
1
+ module MrVideo
2
+ module IdService
3
+ extend self
4
+
5
+ def encode(value)
6
+ Base64.urlsafe_encode64(value, padding: false)
7
+ end
8
+
9
+ def decode(id)
10
+ Base64.urlsafe_decode64(id)
11
+ end
12
+
13
+ end
14
+ end
@@ -5,8 +5,8 @@
5
5
  <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
7
  <title><%= MrVideo::NAME %><%= ' | ' + yield(:title) if content_for?(:title) %></title>
8
- <%= csrf_meta_tags %>
9
8
  <%= stylesheet_link_tag 'mr_video/application', media: 'all' %>
9
+ <%= csrf_meta_tags %>
10
10
  </head>
11
11
  <body>
12
12
  <nav class="navbar navbar-default navbar-fixed-top navbar-inverse" role="navigation">
@@ -20,7 +20,7 @@
20
20
  <td><%= cassette.episodes.count %></td>
21
21
  <td><%= time_ago_in_words(cassette.updated_at) %> ago</td>
22
22
  <td>
23
- <%= link_to(cassette_path(cassette), method: :delete, confirm: "Are you sure you want to delete the \"#{cassette.name}\" cassette?", 'data-severity' => 'danger', remote: true) do %>
23
+ <%= link_to(cassette_path(cassette), method: :delete, data: { confirm: "Are you sure you want to delete the \"#{cassette.name}\" cassette?", severity: 'danger' }, remote: true) do %>
24
24
  <button class="btn btn-danger btn-xs">
25
25
  <i class="glyphicon glyphicon-trash"></i> &nbsp;Delete
26
26
  </button>
data/lib/mr_video.rb CHANGED
@@ -1,5 +1,5 @@
1
- require "mr_video/engine"
2
- require "mr_video/core_ext"
1
+ require 'mr_video/engine'
2
+ require 'mr_video/core_ext'
3
3
 
4
4
  module MrVideo
5
5
 
@@ -1,5 +1,5 @@
1
1
  module MrVideo
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'
3
3
  URL = 'https://github.com/quidproquo/mr_video'
4
4
  NAME = 'Mr. Video'
5
5
  end
@@ -18,7 +18,7 @@ describe MrVideo::CassettesController do
18
18
  end
19
19
 
20
20
  describe '#show' do
21
- let(:id) { 'bell_house' }
21
+ let(:id) { MrVideo::IdService.encode('bell_house') }
22
22
  let(:params) { { id: id } }
23
23
  let(:show) { get(:show, params: params) }
24
24
 
@@ -32,7 +32,7 @@ describe MrVideo::CassettesController do
32
32
  end
33
33
 
34
34
  describe '#destroy' do
35
- let(:id) { 'bell_house' }
35
+ let(:id) { MrVideo::IdService.encode('bell_house') }
36
36
  let(:cassette) { double(:cassette, id: id) }
37
37
  let(:params) { { id: id } }
38
38
  let(:destroy) { delete(:destroy, xhr: true, params: params) }
@@ -50,6 +50,6 @@ describe MrVideo::CassettesController do
50
50
  it 'should destroy the cassette' do
51
51
  expect(cassette).to have_received(:destroy)
52
52
  end
53
- end # #destroy
53
+ end
54
54
 
55
- end # MrVideo::CassettesController
55
+ end
@@ -1756,3 +1756,912 @@ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
1756
1756
  /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1757
1757
  /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1758
1758
  /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1759
+ DEPRECATION WARNING: Using `Rails::Application` subclass to start the server is deprecated and will be removed in Rails 6.0. Please change `run Dummy::Application` to `run Rails.application` in config.ru. (called from require at script/rails:6)
1760
+ Started GET "/mr_video/" for ::1 at 2019-08-06 11:53:15 -0400
1761
+ Processing by MrVideo::CassettesController#index as HTML
1762
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
1763
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (86.9ms)
1764
+ Completed 200 OK in 231ms (Views: 228.3ms)
1765
+
1766
+
1767
+ Started GET "/assets/mr_video/application-37bdc061f7a80615213d767225b346755f9babe8fb52c010b148421f5860a7dd.js" for ::1 at 2019-08-06 11:53:15 -0400
1768
+ Started GET "/assets/mr_video/application-ffce25af3e479ce71ba8813670b41f596ee6e7b5caf1d16fbcf7d0bd0c16f5ce.css" for ::1 at 2019-08-06 11:53:15 -0400
1769
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 11:53:15 -0400
1770
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 11:53:15 -0400
1771
+
1772
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
1773
+
1774
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
1775
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1776
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1777
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
1778
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
1779
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
1780
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
1781
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
1782
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1783
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
1784
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
1785
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
1786
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1787
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
1788
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
1789
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
1790
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
1791
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
1792
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1793
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1794
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1795
+ Started DELETE "/mr_video/cassettes/date_time_service" for ::1 at 2019-08-06 11:54:24 -0400
1796
+ Processing by MrVideo::CassettesController#destroy as JS
1797
+ Parameters: {"id"=>"date_time_service"}
1798
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/destroy.js.erb
1799
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/destroy.js.erb (0.2ms)
1800
+ Completed 200 OK in 69ms (Views: 42.4ms)
1801
+
1802
+
1803
+ Started GET "/mr_video/" for ::1 at 2019-08-06 11:54:43 -0400
1804
+ Processing by MrVideo::CassettesController#index as HTML
1805
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
1806
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (111.9ms)
1807
+ Completed 200 OK in 123ms (Views: 121.1ms)
1808
+
1809
+
1810
+ Started GET "/assets/mr_video/application-37bdc061f7a80615213d767225b346755f9babe8fb52c010b148421f5860a7dd.js" for ::1 at 2019-08-06 11:54:44 -0400
1811
+ Started GET "/assets/mr_video/application-ffce25af3e479ce71ba8813670b41f596ee6e7b5caf1d16fbcf7d0bd0c16f5ce.css" for ::1 at 2019-08-06 11:54:44 -0400
1812
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 11:54:44 -0400
1813
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 11:54:44 -0400
1814
+
1815
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
1816
+
1817
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
1818
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1819
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1820
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
1821
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
1822
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
1823
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
1824
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
1825
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1826
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
1827
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
1828
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
1829
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1830
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
1831
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
1832
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
1833
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
1834
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
1835
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1836
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1837
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1838
+ Started GET "/mr_video/" for ::1 at 2019-08-06 11:56:47 -0400
1839
+ Processing by MrVideo::CassettesController#index as HTML
1840
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
1841
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (101.5ms)
1842
+ Completed 200 OK in 113ms (Views: 109.9ms)
1843
+
1844
+
1845
+ Started GET "/assets/mr_video/application-ffce25af3e479ce71ba8813670b41f596ee6e7b5caf1d16fbcf7d0bd0c16f5ce.css" for ::1 at 2019-08-06 11:56:47 -0400
1846
+ Started GET "/assets/mr_video/application-37bdc061f7a80615213d767225b346755f9babe8fb52c010b148421f5860a7dd.js" for ::1 at 2019-08-06 11:56:47 -0400
1847
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 11:56:47 -0400
1848
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 11:56:47 -0400
1849
+
1850
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
1851
+
1852
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
1853
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1854
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1855
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
1856
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
1857
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
1858
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
1859
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
1860
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1861
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
1862
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
1863
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
1864
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1865
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
1866
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
1867
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
1868
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
1869
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
1870
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1871
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1872
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1873
+ Started GET "/mr_video/" for ::1 at 2019-08-06 11:58:32 -0400
1874
+ Processing by MrVideo::CassettesController#index as HTML
1875
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
1876
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (104.8ms)
1877
+ Completed 200 OK in 114ms (Views: 111.5ms)
1878
+
1879
+
1880
+ Started GET "/assets/mr_video/application-ffce25af3e479ce71ba8813670b41f596ee6e7b5caf1d16fbcf7d0bd0c16f5ce.css" for ::1 at 2019-08-06 11:58:32 -0400
1881
+ Started GET "/assets/mr_video/application-37bdc061f7a80615213d767225b346755f9babe8fb52c010b148421f5860a7dd.js" for ::1 at 2019-08-06 11:58:32 -0400
1882
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 11:58:32 -0400
1883
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 11:58:32 -0400
1884
+
1885
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
1886
+
1887
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
1888
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1889
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1890
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
1891
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
1892
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
1893
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
1894
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
1895
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1896
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
1897
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
1898
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
1899
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1900
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
1901
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
1902
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
1903
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
1904
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
1905
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1906
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1907
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1908
+ Started GET "/mr_video/" for ::1 at 2019-08-06 12:02:16 -0400
1909
+ Processing by MrVideo::CassettesController#index as HTML
1910
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
1911
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (90.6ms)
1912
+ Completed 200 OK in 100ms (Views: 97.9ms)
1913
+
1914
+
1915
+ Started GET "/assets/mr_video/application-ffce25af3e479ce71ba8813670b41f596ee6e7b5caf1d16fbcf7d0bd0c16f5ce.css" for ::1 at 2019-08-06 12:02:16 -0400
1916
+ Started GET "/assets/mr_video/application-37bdc061f7a80615213d767225b346755f9babe8fb52c010b148421f5860a7dd.js" for ::1 at 2019-08-06 12:02:16 -0400
1917
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 12:02:16 -0400
1918
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 12:02:16 -0400
1919
+
1920
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
1921
+
1922
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
1923
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1924
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1925
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
1926
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
1927
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
1928
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
1929
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
1930
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1931
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
1932
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
1933
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
1934
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1935
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
1936
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
1937
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
1938
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
1939
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
1940
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1941
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1942
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1943
+ Started GET "/mr_video/" for ::1 at 2019-08-06 12:02:33 -0400
1944
+ Processing by MrVideo::CassettesController#index as HTML
1945
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
1946
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (93.0ms)
1947
+ Completed 200 OK in 101ms (Views: 99.5ms)
1948
+
1949
+
1950
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 12:02:33 -0400
1951
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 12:02:33 -0400
1952
+
1953
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
1954
+
1955
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
1956
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1957
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1958
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
1959
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
1960
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
1961
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
1962
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
1963
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
1964
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
1965
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
1966
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
1967
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
1968
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
1969
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
1970
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
1971
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
1972
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
1973
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1974
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1975
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1976
+ DEPRECATION WARNING: Using `Rails::Application` subclass to start the server is deprecated and will be removed in Rails 6.0. Please change `run Dummy::Application` to `run Rails.application` in config.ru. (called from require at script/rails:6)
1977
+ Started GET "/mr_video/" for ::1 at 2019-08-06 13:43:14 -0400
1978
+ Processing by MrVideo::CassettesController#index as HTML
1979
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
1980
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (91.8ms)
1981
+ Completed 200 OK in 232ms (Views: 230.0ms)
1982
+
1983
+
1984
+ Started GET "/assets/mr_video/application-ffce25af3e479ce71ba8813670b41f596ee6e7b5caf1d16fbcf7d0bd0c16f5ce.css" for ::1 at 2019-08-06 13:43:14 -0400
1985
+ Started GET "/assets/mr_video/application-37bdc061f7a80615213d767225b346755f9babe8fb52c010b148421f5860a7dd.js" for ::1 at 2019-08-06 13:43:14 -0400
1986
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 13:43:14 -0400
1987
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 13:43:14 -0400
1988
+
1989
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
1990
+
1991
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
1992
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
1993
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1994
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
1995
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
1996
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
1997
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
1998
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
1999
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2000
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2001
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2002
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2003
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2004
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2005
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2006
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2007
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2008
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2009
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2010
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2011
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2012
+ Started GET "/mr_video/cassettes/YmVsbF9ob3VzZQ==" for ::1 at 2019-08-06 13:43:25 -0400
2013
+ Processing by MrVideo::CassettesController#show as HTML
2014
+ Parameters: {"id"=>"YmVsbF9ob3VzZQ=="}
2015
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/show.html.erb within layouts/mr_video
2016
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/show.html.erb within layouts/mr_video (13.7ms)
2017
+ Completed 200 OK in 23ms (Views: 21.0ms)
2018
+
2019
+
2020
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 13:43:25 -0400
2021
+
2022
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2023
+
2024
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2025
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2026
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2027
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2028
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2029
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2030
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2031
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2032
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2033
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2034
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2035
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2036
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2037
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2038
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2039
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2040
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2041
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2042
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2043
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2044
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2045
+ Started GET "/mr_video/cassettes/YmVsbF9ob3VzZQ==/episodes/aHR0cDovL3d3dy50aGViZWxsaG91c2VueS5jb20vY2FsZW5kYXIv?fix_relative_links=true" for ::1 at 2019-08-06 13:43:37 -0400
2046
+ Processing by MrVideo::EpisodesController#show as HTML
2047
+ Parameters: {"fix_relative_links"=>"true", "cassette_id"=>"YmVsbF9ob3VzZQ==", "id"=>"aHR0cDovL3d3dy50aGViZWxsaG91c2VueS5jb20vY2FsZW5kYXIv"}
2048
+ Rendering text template
2049
+ Rendered text template (0.0ms)
2050
+ Sent data (1.0ms)
2051
+ Completed 200 OK in 150ms (Views: 0.8ms)
2052
+
2053
+
2054
+ Started GET "/mr_video/cassettes/YmVsbF9ob3VzZQ==/episodes/files/2013/07/twitter.png" for ::1 at 2019-08-06 13:43:37 -0400
2055
+
2056
+ ActionController::RoutingError (No route matches [GET] "/mr_video/cassettes/YmVsbF9ob3VzZQ==/episodes/files/2013/07/twitter.png"):
2057
+
2058
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2059
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2060
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2061
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2062
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2063
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2064
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2065
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2066
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2067
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2068
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2069
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2070
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2071
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2072
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2073
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2074
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2075
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2076
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2077
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2078
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2079
+ Started GET "/mr_video/cassettes/YmVsbF9ob3VzZQ==/episodes/files/2013/07/twitter.png" for ::1 at 2019-08-06 13:43:39 -0400
2080
+
2081
+ ActionController::RoutingError (No route matches [GET] "/mr_video/cassettes/YmVsbF9ob3VzZQ==/episodes/files/2013/07/twitter.png"):
2082
+
2083
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2084
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2085
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2086
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2087
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2088
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2089
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2090
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2091
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2092
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2093
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2094
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2095
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2096
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2097
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2098
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2099
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2100
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2101
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2102
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2103
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2104
+ Started GET "/mr_video/" for ::1 at 2019-08-06 13:43:53 -0400
2105
+ Processing by MrVideo::CassettesController#index as HTML
2106
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
2107
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (106.3ms)
2108
+ Completed 200 OK in 117ms (Views: 114.3ms)
2109
+
2110
+
2111
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 13:43:53 -0400
2112
+
2113
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2114
+
2115
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2116
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2117
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2118
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2119
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2120
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2121
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2122
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2123
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2124
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2125
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2126
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2127
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2128
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2129
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2130
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2131
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2132
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2133
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2134
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2135
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2136
+ Started GET "/mr_video/cassettes/ZGF0ZV90aW1lX3NlcnZpY2U=" for ::1 at 2019-08-06 13:44:00 -0400
2137
+ Processing by MrVideo::CassettesController#show as HTML
2138
+ Parameters: {"id"=>"ZGF0ZV90aW1lX3NlcnZpY2U="}
2139
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/show.html.erb within layouts/mr_video
2140
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/show.html.erb within layouts/mr_video (1.9ms)
2141
+ Completed 200 OK in 11ms (Views: 9.3ms)
2142
+
2143
+
2144
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 13:44:00 -0400
2145
+
2146
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2147
+
2148
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2149
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2150
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2151
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2152
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2153
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2154
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2155
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2156
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2157
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2158
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2159
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2160
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2161
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2162
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2163
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2164
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2165
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2166
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2167
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2168
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2169
+ Started GET "/mr_video/cassettes/ZGF0ZV90aW1lX3NlcnZpY2U=/episodes/aHR0cDovL2FwaS5nZW9uYW1lcy5vcmcvdGltZXpvbmVKU09OP2xhdD0tMzQuOTI3NzE4MDgwNTgmbG5nPTEzOC40NzcwNDE0MjMzMjEmdXNlcm5hbWU9cXVpZHByb3F1bw==?fix_relative_links=true" for ::1 at 2019-08-06 13:44:05 -0400
2170
+ Processing by MrVideo::EpisodesController#show as HTML
2171
+ Parameters: {"fix_relative_links"=>"true", "cassette_id"=>"ZGF0ZV90aW1lX3NlcnZpY2U=", "id"=>"aHR0cDovL2FwaS5nZW9uYW1lcy5vcmcvdGltZXpvbmVKU09OP2xhdD0tMzQuOTI3NzE4MDgwNTgmbG5nPTEzOC40NzcwNDE0MjMzMjEmdXNlcm5hbWU9cXVpZHByb3F1bw=="}
2172
+ Rendering text template
2173
+ Rendered text template (0.0ms)
2174
+ Sent data (0.3ms)
2175
+ Completed 200 OK in 1ms (Views: 0.2ms)
2176
+
2177
+
2178
+ DEPRECATION WARNING: Using `Rails::Application` subclass to start the server is deprecated and will be removed in Rails 6.0. Please change `run Dummy::Application` to `run Rails.application` in config.ru. (called from require at script/rails:6)
2179
+ Started GET "/mr_video/cassettes/ZGF0ZV90aW1lX3NlcnZpY2U=" for ::1 at 2019-08-06 14:17:23 -0400
2180
+ Processing by MrVideo::CassettesController#show as HTML
2181
+ Parameters: {"id"=>"ZGF0ZV90aW1lX3NlcnZpY2U="}
2182
+ Completed 500 Internal Server Error in 4ms
2183
+
2184
+
2185
+
2186
+ StandardError (MrVideo::Cassette with name: '0�?��u�9"�' not found!):
2187
+
2188
+ /Users/ilya/Dev/mr_video/app/models/mr_video/cassette.rb:75:in `find'
2189
+ /Users/ilya/Dev/mr_video/app/controllers/mr_video/cassettes_controller.rb:9:in `show'
2190
+ actionpack (5.2.3) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
2191
+ actionpack (5.2.3) lib/abstract_controller/base.rb:194:in `process_action'
2192
+ actionpack (5.2.3) lib/action_controller/metal/rendering.rb:30:in `process_action'
2193
+ actionpack (5.2.3) lib/abstract_controller/callbacks.rb:42:in `block in process_action'
2194
+ activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks'
2195
+ actionpack (5.2.3) lib/abstract_controller/callbacks.rb:41:in `process_action'
2196
+ actionpack (5.2.3) lib/action_controller/metal/rescue.rb:22:in `process_action'
2197
+ actionpack (5.2.3) lib/action_controller/metal/instrumentation.rb:34:in `block in process_action'
2198
+ activesupport (5.2.3) lib/active_support/notifications.rb:168:in `block in instrument'
2199
+ activesupport (5.2.3) lib/active_support/notifications/instrumenter.rb:23:in `instrument'
2200
+ activesupport (5.2.3) lib/active_support/notifications.rb:168:in `instrument'
2201
+ actionpack (5.2.3) lib/action_controller/metal/instrumentation.rb:32:in `process_action'
2202
+ actionpack (5.2.3) lib/action_controller/metal/params_wrapper.rb:256:in `process_action'
2203
+ activerecord (5.2.3) lib/active_record/railties/controller_runtime.rb:24:in `process_action'
2204
+ actionpack (5.2.3) lib/abstract_controller/base.rb:134:in `process'
2205
+ actionview (5.2.3) lib/action_view/rendering.rb:32:in `process'
2206
+ actionpack (5.2.3) lib/action_controller/metal.rb:191:in `dispatch'
2207
+ actionpack (5.2.3) lib/action_controller/metal.rb:252:in `dispatch'
2208
+ actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:52:in `dispatch'
2209
+ actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:34:in `serve'
2210
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:52:in `block in serve'
2211
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `each'
2212
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `serve'
2213
+ actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:840:in `call'
2214
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2215
+ railties (5.2.3) lib/rails/railtie.rb:190:in `public_send'
2216
+ railties (5.2.3) lib/rails/railtie.rb:190:in `method_missing'
2217
+ actionpack (5.2.3) lib/action_dispatch/routing/mapper.rb:19:in `block in <class:Constraints>'
2218
+ actionpack (5.2.3) lib/action_dispatch/routing/mapper.rb:48:in `serve'
2219
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:52:in `block in serve'
2220
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `each'
2221
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `serve'
2222
+ actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:840:in `call'
2223
+ rack (2.0.7) lib/rack/tempfile_reaper.rb:15:in `call'
2224
+ rack (2.0.7) lib/rack/etag.rb:25:in `call'
2225
+ rack (2.0.7) lib/rack/conditional_get.rb:25:in `call'
2226
+ rack (2.0.7) lib/rack/head.rb:12:in `call'
2227
+ actionpack (5.2.3) lib/action_dispatch/http/content_security_policy.rb:18:in `call'
2228
+ rack (2.0.7) lib/rack/session/abstract/id.rb:232:in `context'
2229
+ rack (2.0.7) lib/rack/session/abstract/id.rb:226:in `call'
2230
+ actionpack (5.2.3) lib/action_dispatch/middleware/cookies.rb:670:in `call'
2231
+ actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2232
+ activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks'
2233
+ actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
2234
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2235
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:61:in `call'
2236
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2237
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2238
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2239
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2240
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2241
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2242
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2243
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2244
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2245
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2246
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2247
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2248
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2249
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2250
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2251
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2252
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2253
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2254
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2255
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2256
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 14:17:28 -0400
2257
+
2258
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2259
+
2260
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2261
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2262
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2263
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2264
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2265
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2266
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2267
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2268
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2269
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2270
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2271
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2272
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2273
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2274
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2275
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2276
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2277
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2278
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2279
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2280
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2281
+ Started GET "/mr_video/" for ::1 at 2019-08-06 14:17:31 -0400
2282
+ Processing by MrVideo::CassettesController#index as HTML
2283
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
2284
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (117.1ms)
2285
+ Completed 200 OK in 138ms (Views: 135.7ms)
2286
+
2287
+
2288
+ Started GET "/assets/mr_video/application-ffce25af3e479ce71ba8813670b41f596ee6e7b5caf1d16fbcf7d0bd0c16f5ce.css" for ::1 at 2019-08-06 14:17:31 -0400
2289
+ Started GET "/assets/mr_video/application-37bdc061f7a80615213d767225b346755f9babe8fb52c010b148421f5860a7dd.js" for ::1 at 2019-08-06 14:17:31 -0400
2290
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 14:17:31 -0400
2291
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 14:17:31 -0400
2292
+
2293
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2294
+
2295
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2296
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2297
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2298
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2299
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2300
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2301
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2302
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2303
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2304
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2305
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2306
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2307
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2308
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2309
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2310
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2311
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2312
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2313
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2314
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2315
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2316
+ Started GET "/mr_video/" for ::1 at 2019-08-06 14:18:29 -0400
2317
+ Processing by MrVideo::CassettesController#index as HTML
2318
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
2319
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (97.6ms)
2320
+ Completed 200 OK in 110ms (Views: 108.1ms)
2321
+
2322
+
2323
+ Started GET "/assets/mr_video/application-ffce25af3e479ce71ba8813670b41f596ee6e7b5caf1d16fbcf7d0bd0c16f5ce.css" for ::1 at 2019-08-06 14:18:29 -0400
2324
+ Started GET "/assets/mr_video/application-37bdc061f7a80615213d767225b346755f9babe8fb52c010b148421f5860a7dd.js" for ::1 at 2019-08-06 14:18:29 -0400
2325
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 14:18:29 -0400
2326
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 14:18:29 -0400
2327
+
2328
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2329
+
2330
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2331
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2332
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2333
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2334
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2335
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2336
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2337
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2338
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2339
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2340
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2341
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2342
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2343
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2344
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2345
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2346
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2347
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2348
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2349
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2350
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2351
+ Started GET "/mr_video/cassettes/646174655f74696d655f73657276696365" for ::1 at 2019-08-06 14:18:31 -0400
2352
+ Processing by MrVideo::CassettesController#show as HTML
2353
+ Parameters: {"id"=>"646174655f74696d655f73657276696365"}
2354
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/show.html.erb within layouts/mr_video
2355
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/show.html.erb within layouts/mr_video (2.4ms)
2356
+ Completed 200 OK in 14ms (Views: 11.5ms)
2357
+
2358
+
2359
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 14:18:31 -0400
2360
+
2361
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2362
+
2363
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2364
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2365
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2366
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2367
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2368
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2369
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2370
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2371
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2372
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2373
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2374
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2375
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2376
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2377
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2378
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2379
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2380
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2381
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2382
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2383
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2384
+ Started GET "/mr_video/cassettes/646174655f74696d655f73657276696365/episodes/687474703a2f2f6170692e67656f6e616d65732e6f72672f74696d657a6f6e654a534f4e3f6c61743d2d33342e3932373731383038303538266c6e673d3133382e34373730343134323333323126757365726e616d653d7175696470726f71756f?fix_relative_links=true" for ::1 at 2019-08-06 14:18:35 -0400
2385
+ Processing by MrVideo::EpisodesController#show as HTML
2386
+ Parameters: {"fix_relative_links"=>"true", "cassette_id"=>"646174655f74696d655f73657276696365", "id"=>"687474703a2f2f6170692e67656f6e616d65732e6f72672f74696d657a6f6e654a534f4e3f6c61743d2d33342e3932373731383038303538266c6e673d3133382e34373730343134323333323126757365726e616d653d7175696470726f71756f"}
2387
+ Rendering text template
2388
+ Rendered text template (0.0ms)
2389
+ Sent data (1.8ms)
2390
+ Completed 200 OK in 5ms (Views: 1.7ms)
2391
+
2392
+
2393
+ DEPRECATION WARNING: Using `Rails::Application` subclass to start the server is deprecated and will be removed in Rails 6.0. Please change `run Dummy::Application` to `run Rails.application` in config.ru. (called from require at script/rails:6)
2394
+ Started GET "/mr_video/cassettes/646174655f74696d655f73657276696365" for ::1 at 2019-08-06 14:25:40 -0400
2395
+ Processing by MrVideo::CassettesController#show as HTML
2396
+ Parameters: {"id"=>"646174655f74696d655f73657276696365"}
2397
+ Completed 500 Internal Server Error in 1ms
2398
+
2399
+
2400
+
2401
+ ArgumentError (invalid base64):
2402
+
2403
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/base64.rb:74:in `unpack'
2404
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/base64.rb:74:in `strict_decode64'
2405
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/base64.rb:105:in `urlsafe_decode64'
2406
+ /Users/ilya/Dev/mr_video/app/services/mr_video/id_service.rb:12:in `decode'
2407
+ /Users/ilya/Dev/mr_video/app/models/mr_video/cassette.rb:72:in `find'
2408
+ /Users/ilya/Dev/mr_video/app/controllers/mr_video/cassettes_controller.rb:9:in `show'
2409
+ actionpack (5.2.3) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
2410
+ actionpack (5.2.3) lib/abstract_controller/base.rb:194:in `process_action'
2411
+ actionpack (5.2.3) lib/action_controller/metal/rendering.rb:30:in `process_action'
2412
+ actionpack (5.2.3) lib/abstract_controller/callbacks.rb:42:in `block in process_action'
2413
+ activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks'
2414
+ actionpack (5.2.3) lib/abstract_controller/callbacks.rb:41:in `process_action'
2415
+ actionpack (5.2.3) lib/action_controller/metal/rescue.rb:22:in `process_action'
2416
+ actionpack (5.2.3) lib/action_controller/metal/instrumentation.rb:34:in `block in process_action'
2417
+ activesupport (5.2.3) lib/active_support/notifications.rb:168:in `block in instrument'
2418
+ activesupport (5.2.3) lib/active_support/notifications/instrumenter.rb:23:in `instrument'
2419
+ activesupport (5.2.3) lib/active_support/notifications.rb:168:in `instrument'
2420
+ actionpack (5.2.3) lib/action_controller/metal/instrumentation.rb:32:in `process_action'
2421
+ actionpack (5.2.3) lib/action_controller/metal/params_wrapper.rb:256:in `process_action'
2422
+ activerecord (5.2.3) lib/active_record/railties/controller_runtime.rb:24:in `process_action'
2423
+ actionpack (5.2.3) lib/abstract_controller/base.rb:134:in `process'
2424
+ actionview (5.2.3) lib/action_view/rendering.rb:32:in `process'
2425
+ actionpack (5.2.3) lib/action_controller/metal.rb:191:in `dispatch'
2426
+ actionpack (5.2.3) lib/action_controller/metal.rb:252:in `dispatch'
2427
+ actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:52:in `dispatch'
2428
+ actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:34:in `serve'
2429
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:52:in `block in serve'
2430
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `each'
2431
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `serve'
2432
+ actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:840:in `call'
2433
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2434
+ railties (5.2.3) lib/rails/railtie.rb:190:in `public_send'
2435
+ railties (5.2.3) lib/rails/railtie.rb:190:in `method_missing'
2436
+ actionpack (5.2.3) lib/action_dispatch/routing/mapper.rb:19:in `block in <class:Constraints>'
2437
+ actionpack (5.2.3) lib/action_dispatch/routing/mapper.rb:48:in `serve'
2438
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:52:in `block in serve'
2439
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `each'
2440
+ actionpack (5.2.3) lib/action_dispatch/journey/router.rb:35:in `serve'
2441
+ actionpack (5.2.3) lib/action_dispatch/routing/route_set.rb:840:in `call'
2442
+ rack (2.0.7) lib/rack/tempfile_reaper.rb:15:in `call'
2443
+ rack (2.0.7) lib/rack/etag.rb:25:in `call'
2444
+ rack (2.0.7) lib/rack/conditional_get.rb:25:in `call'
2445
+ rack (2.0.7) lib/rack/head.rb:12:in `call'
2446
+ actionpack (5.2.3) lib/action_dispatch/http/content_security_policy.rb:18:in `call'
2447
+ rack (2.0.7) lib/rack/session/abstract/id.rb:232:in `context'
2448
+ rack (2.0.7) lib/rack/session/abstract/id.rb:226:in `call'
2449
+ actionpack (5.2.3) lib/action_dispatch/middleware/cookies.rb:670:in `call'
2450
+ actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2451
+ activesupport (5.2.3) lib/active_support/callbacks.rb:98:in `run_callbacks'
2452
+ actionpack (5.2.3) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
2453
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2454
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:61:in `call'
2455
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2456
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2457
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2458
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2459
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2460
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2461
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2462
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2463
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2464
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2465
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2466
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2467
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2468
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2469
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2470
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2471
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2472
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2473
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2474
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2475
+ Started GET "/mr_video/" for ::1 at 2019-08-06 14:25:45 -0400
2476
+ Processing by MrVideo::CassettesController#index as HTML
2477
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
2478
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (97.8ms)
2479
+ Completed 200 OK in 213ms (Views: 210.8ms)
2480
+
2481
+
2482
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 14:25:45 -0400
2483
+
2484
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2485
+
2486
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2487
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2488
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2489
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2490
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2491
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2492
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2493
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2494
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2495
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2496
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2497
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2498
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2499
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2500
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2501
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2502
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2503
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2504
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2505
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2506
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2507
+ Started GET "/mr_video/" for ::1 at 2019-08-06 14:25:47 -0400
2508
+ Processing by MrVideo::CassettesController#index as HTML
2509
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
2510
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (107.3ms)
2511
+ Completed 200 OK in 116ms (Views: 114.1ms)
2512
+
2513
+
2514
+ Started GET "/assets/mr_video/application-37bdc061f7a80615213d767225b346755f9babe8fb52c010b148421f5860a7dd.js" for ::1 at 2019-08-06 14:25:47 -0400
2515
+ Started GET "/assets/mr_video/application-ffce25af3e479ce71ba8813670b41f596ee6e7b5caf1d16fbcf7d0bd0c16f5ce.css" for ::1 at 2019-08-06 14:25:47 -0400
2516
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 14:25:47 -0400
2517
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 14:25:47 -0400
2518
+
2519
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2520
+
2521
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2522
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2523
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2524
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2525
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2526
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2527
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2528
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2529
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2530
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2531
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2532
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2533
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2534
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2535
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2536
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2537
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2538
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2539
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2540
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2541
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2542
+ Started GET "/mr_video/cassettes/ZHVtbXlfY2Fzc2V0dGU" for ::1 at 2019-08-06 14:26:03 -0400
2543
+ Processing by MrVideo::CassettesController#show as HTML
2544
+ Parameters: {"id"=>"ZHVtbXlfY2Fzc2V0dGU"}
2545
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/show.html.erb within layouts/mr_video
2546
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/show.html.erb within layouts/mr_video (19.8ms)
2547
+ Completed 200 OK in 31ms (Views: 28.4ms)
2548
+
2549
+
2550
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 14:26:03 -0400
2551
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 14:26:03 -0400
2552
+
2553
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2554
+
2555
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2556
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2557
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2558
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2559
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2560
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2561
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2562
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2563
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2564
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2565
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2566
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2567
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2568
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2569
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2570
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2571
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2572
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2573
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2574
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2575
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2576
+ Started GET "/mr_video/cassettes/ZHVtbXlfY2Fzc2V0dGU/episodes/aHR0cDovL3d3dy50aGViZWxsaG91c2VueS5jb20vY2FsZW5kYXIv?fix_relative_links=true" for ::1 at 2019-08-06 14:26:09 -0400
2577
+ Processing by MrVideo::EpisodesController#show as HTML
2578
+ Parameters: {"fix_relative_links"=>"true", "cassette_id"=>"ZHVtbXlfY2Fzc2V0dGU", "id"=>"aHR0cDovL3d3dy50aGViZWxsaG91c2VueS5jb20vY2FsZW5kYXIv"}
2579
+ Rendering text template
2580
+ Rendered text template (0.0ms)
2581
+ Sent data (1.1ms)
2582
+ Completed 200 OK in 135ms (Views: 0.9ms)
2583
+
2584
+
2585
+ Started GET "/mr_video/cassettes/ZHVtbXlfY2Fzc2V0dGU/episodes/files/2013/07/twitter.png" for ::1 at 2019-08-06 14:26:09 -0400
2586
+
2587
+ ActionController::RoutingError (No route matches [GET] "/mr_video/cassettes/ZHVtbXlfY2Fzc2V0dGU/episodes/files/2013/07/twitter.png"):
2588
+
2589
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2590
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2591
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2592
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2593
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2594
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2595
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2596
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2597
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2598
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2599
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2600
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2601
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2602
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2603
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2604
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2605
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2606
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2607
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2608
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2609
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2610
+ Started GET "/mr_video/cassettes/ZHVtbXlfY2Fzc2V0dGU/episodes/files/2013/07/twitter.png" for ::1 at 2019-08-06 14:26:11 -0400
2611
+
2612
+ ActionController::RoutingError (No route matches [GET] "/mr_video/cassettes/ZHVtbXlfY2Fzc2V0dGU/episodes/files/2013/07/twitter.png"):
2613
+
2614
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2615
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2616
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2617
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2618
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2619
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2620
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2621
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2622
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2623
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2624
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2625
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2626
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2627
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2628
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2629
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2630
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2631
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2632
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2633
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2634
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2635
+ Started GET "/mr_video/" for ::1 at 2019-08-06 14:26:17 -0400
2636
+ Processing by MrVideo::CassettesController#index as HTML
2637
+ Rendering /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video
2638
+ Rendered /Users/ilya/Dev/mr_video/app/views/mr_video/cassettes/index.html.erb within layouts/mr_video (96.3ms)
2639
+ Completed 200 OK in 111ms (Views: 108.6ms)
2640
+
2641
+
2642
+ Started GET "/assets/mr_video/glyphicons-halflings-regular.woff" for ::1 at 2019-08-06 14:26:17 -0400
2643
+ Started GET "/assets/mr_video/bootstrap.css.map" for ::1 at 2019-08-06 14:26:17 -0400
2644
+
2645
+ ActionController::RoutingError (No route matches [GET] "/assets/mr_video/bootstrap.css.map"):
2646
+
2647
+ actionpack (5.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:65:in `call'
2648
+ actionpack (5.2.3) lib/action_dispatch/middleware/show_exceptions.rb:33:in `call'
2649
+ railties (5.2.3) lib/rails/rack/logger.rb:38:in `call_app'
2650
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `block in call'
2651
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `block in tagged'
2652
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:28:in `tagged'
2653
+ activesupport (5.2.3) lib/active_support/tagged_logging.rb:71:in `tagged'
2654
+ railties (5.2.3) lib/rails/rack/logger.rb:26:in `call'
2655
+ actionpack (5.2.3) lib/action_dispatch/middleware/remote_ip.rb:81:in `call'
2656
+ actionpack (5.2.3) lib/action_dispatch/middleware/request_id.rb:27:in `call'
2657
+ rack (2.0.7) lib/rack/method_override.rb:22:in `call'
2658
+ rack (2.0.7) lib/rack/runtime.rb:22:in `call'
2659
+ activesupport (5.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:29:in `call'
2660
+ actionpack (5.2.3) lib/action_dispatch/middleware/executor.rb:14:in `call'
2661
+ actionpack (5.2.3) lib/action_dispatch/middleware/static.rb:127:in `call'
2662
+ rack (2.0.7) lib/rack/sendfile.rb:111:in `call'
2663
+ railties (5.2.3) lib/rails/engine.rb:524:in `call'
2664
+ rack (2.0.7) lib/rack/handler/webrick.rb:86:in `service'
2665
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2666
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2667
+ /Users/ilya/.rbenv/versions/2.3.0/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'