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