seiten 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +32 -0
- data/app/controllers/seiten/pages_controller.rb +12 -0
- data/app/helpers/seiten_helper.rb +38 -0
- data/app/views/seiten/pages/show.html.erb +1 -0
- data/config/routes.rb +11 -0
- data/lib/seiten/controllers/helpers.rb +11 -0
- data/lib/seiten/engine.rb +4 -0
- data/lib/seiten/page.rb +79 -0
- data/lib/seiten/page_store.rb +58 -0
- data/lib/seiten/version.rb +3 -0
- data/lib/seiten.rb +25 -0
- data/lib/tasks/sticky_pages_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/pages/home.html.erb +1 -0
- data/test/dummy/app/views/layouts/application.html.erb +16 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/navigation.yml +15 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +651 -0
- data/test/dummy/log/test.log +226 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/fixtures/navigation.yml +17 -0
- data/test/integration/navigation_test.rb +14 -0
- data/test/page_test.rb +62 -0
- data/test/seiten_test.rb +7 -0
- data/test/test_helper.rb +25 -0
- metadata +185 -0
@@ -0,0 +1,651 @@
|
|
1
|
+
Connecting to database specified by database.yml
|
2
|
+
Connecting to database specified by database.yml
|
3
|
+
Connecting to database specified by database.yml
|
4
|
+
Connecting to database specified by database.yml
|
5
|
+
Connecting to database specified by database.yml
|
6
|
+
Connecting to database specified by database.yml
|
7
|
+
Connecting to database specified by database.yml
|
8
|
+
Connecting to database specified by database.yml
|
9
|
+
Connecting to database specified by database.yml
|
10
|
+
Connecting to database specified by database.yml
|
11
|
+
Connecting to database specified by database.yml
|
12
|
+
Connecting to database specified by database.yml
|
13
|
+
Connecting to database specified by database.yml
|
14
|
+
Connecting to database specified by database.yml
|
15
|
+
Connecting to database specified by database.yml
|
16
|
+
Connecting to database specified by database.yml
|
17
|
+
Connecting to database specified by database.yml
|
18
|
+
Connecting to database specified by database.yml
|
19
|
+
Connecting to database specified by database.yml
|
20
|
+
Connecting to database specified by database.yml
|
21
|
+
Connecting to database specified by database.yml
|
22
|
+
Connecting to database specified by database.yml
|
23
|
+
Connecting to database specified by database.yml
|
24
|
+
Connecting to database specified by database.yml
|
25
|
+
Connecting to database specified by database.yml
|
26
|
+
|
27
|
+
|
28
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:05:59 +0200
|
29
|
+
Processing by Seiten::PagesController#show as HTML
|
30
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
31
|
+
Connecting to database specified by database.yml
|
32
|
+
|
33
|
+
|
34
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:06:42 +0200
|
35
|
+
Processing by Seiten::PagesController#show as HTML
|
36
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
37
|
+
|
38
|
+
|
39
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:07:05 +0200
|
40
|
+
Processing by Seiten::PagesController#show as HTML
|
41
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
42
|
+
|
43
|
+
|
44
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:07:06 +0200
|
45
|
+
Processing by Seiten::PagesController#show as HTML
|
46
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
47
|
+
Connecting to database specified by database.yml
|
48
|
+
|
49
|
+
|
50
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:10:43 +0200
|
51
|
+
Processing by Seiten::PagesController#show as HTML
|
52
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
53
|
+
Connecting to database specified by database.yml
|
54
|
+
|
55
|
+
|
56
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:28:04 +0200
|
57
|
+
Processing by Seiten::PagesController#show as HTML
|
58
|
+
Completed 500 Internal Server Error in 27ms
|
59
|
+
|
60
|
+
ActionView::MissingTemplate (Missing template seiten/pages/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
61
|
+
* "/Users/pulleasy/code/seiten/test/dummy/app/views"
|
62
|
+
* "/Users/pulleasy/code/seiten/app/views"
|
63
|
+
):
|
64
|
+
actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
|
65
|
+
actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
|
66
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
67
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
|
68
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
|
69
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
70
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
71
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
72
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
73
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
74
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
75
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
76
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
77
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
78
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
79
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
80
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
81
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
82
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
83
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
84
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
85
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
86
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
87
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
88
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
89
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
90
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
91
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__2447978071099975261__process_action__950911866150988438__callbacks'
|
92
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
93
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
94
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
95
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
96
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
97
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
98
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
99
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
100
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
101
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
102
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
103
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
104
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
105
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
106
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
107
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
108
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
109
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
110
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
111
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
112
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
113
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
114
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
115
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
116
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
117
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
118
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
119
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
120
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
121
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
122
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
123
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
124
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
125
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
126
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
127
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
128
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4597601449012521489__call__930912013846693829__callbacks'
|
129
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
130
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
131
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
132
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
133
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
134
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
135
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
136
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
137
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
138
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
139
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
140
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
141
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
142
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
143
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
144
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
145
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
146
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
147
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
148
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
149
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
150
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
151
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
152
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
153
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
154
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
155
|
+
|
156
|
+
|
157
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (1.4ms)
|
158
|
+
|
159
|
+
|
160
|
+
Started GET "/home" for 127.0.0.1 at 2013-07-23 14:28:09 +0200
|
161
|
+
Processing by Seiten::PagesController#show as HTML
|
162
|
+
Parameters: {"page"=>"home"}
|
163
|
+
Completed 404 Not Found in 1ms (ActiveRecord: 0.0ms)
|
164
|
+
|
165
|
+
|
166
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:28:13 +0200
|
167
|
+
Processing by Seiten::PagesController#show as HTML
|
168
|
+
Completed 500 Internal Server Error in 2ms
|
169
|
+
|
170
|
+
ActionView::MissingTemplate (Missing template seiten/pages/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
171
|
+
* "/Users/pulleasy/code/seiten/test/dummy/app/views"
|
172
|
+
* "/Users/pulleasy/code/seiten/app/views"
|
173
|
+
):
|
174
|
+
actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
|
175
|
+
actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
|
176
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
177
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
|
178
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
|
179
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
180
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
181
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
182
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
183
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
184
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
185
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
186
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
187
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
188
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
189
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
190
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
191
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
192
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
193
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
194
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
195
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
196
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
197
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
198
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
199
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
200
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
201
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__2447978071099975261__process_action__950911866150988438__callbacks'
|
202
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
203
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
204
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
205
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
206
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
207
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
208
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
209
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
210
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
211
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
212
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
213
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
214
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
215
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
216
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
217
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
218
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
219
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
220
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
221
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
222
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
223
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
224
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
225
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
226
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
227
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
228
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
229
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
230
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
231
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
232
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
233
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
234
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
235
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
236
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
237
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
238
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__4597601449012521489__call__930912013846693829__callbacks'
|
239
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
240
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
241
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
242
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
243
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
244
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
245
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
246
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
247
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
248
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
249
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
250
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
251
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
252
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
253
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
254
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
255
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
256
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
257
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
258
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
259
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
260
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
261
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
262
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
263
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
264
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
265
|
+
|
266
|
+
|
267
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.5ms)
|
268
|
+
Connecting to database specified by database.yml
|
269
|
+
[1m[36m (0.5ms)[0m [1mselect sqlite_version(*)[0m
|
270
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
271
|
+
[1m[36m (0.9ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
272
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
273
|
+
Connecting to database specified by database.yml
|
274
|
+
|
275
|
+
|
276
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:34:11 +0200
|
277
|
+
Processing by Seiten::PagesController#show as HTML
|
278
|
+
Completed 500 Internal Server Error in 27ms
|
279
|
+
|
280
|
+
ActionView::MissingTemplate (Missing template seiten/pages/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
281
|
+
* "/Users/pulleasy/code/seiten/test/dummy/app/views"
|
282
|
+
* "/Users/pulleasy/code/seiten/app/views"
|
283
|
+
):
|
284
|
+
actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
|
285
|
+
actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
|
286
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
287
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
|
288
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
|
289
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
290
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
291
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
292
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
293
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
294
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
295
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
296
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
297
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
298
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
299
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
300
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
301
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
302
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
303
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
304
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
305
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
306
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
307
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
308
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
309
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
310
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
311
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__4189966169109721555__process_action__2827846703754668213__callbacks'
|
312
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
313
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
314
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
315
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
316
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
317
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
318
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
319
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
320
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
321
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
322
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
323
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
324
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
325
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
326
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
327
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
328
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
329
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
330
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
331
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
332
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
333
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
334
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
335
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
336
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
337
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
338
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
339
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
340
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
341
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
342
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
343
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
344
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
345
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
346
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
347
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
348
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3885960422606791196__call__470999722384102029__callbacks'
|
349
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
350
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
351
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
352
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
353
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
354
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
355
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
356
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
357
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
358
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
359
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
360
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
361
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
362
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
363
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
364
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
365
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
366
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
367
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
368
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
369
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
370
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
371
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
372
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
373
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
374
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
375
|
+
|
376
|
+
|
377
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.9ms)
|
378
|
+
|
379
|
+
|
380
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:34:13 +0200
|
381
|
+
Processing by Seiten::PagesController#show as HTML
|
382
|
+
Completed 500 Internal Server Error in 2ms
|
383
|
+
|
384
|
+
ActionView::MissingTemplate (Missing template seiten/pages/show, application/show with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
385
|
+
* "/Users/pulleasy/code/seiten/test/dummy/app/views"
|
386
|
+
* "/Users/pulleasy/code/seiten/app/views"
|
387
|
+
):
|
388
|
+
actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
|
389
|
+
actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
|
390
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
391
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:34:in `determine_template'
|
392
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
|
393
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
394
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
395
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
396
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
397
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
398
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
399
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
400
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
401
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
402
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
403
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
404
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
405
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
406
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
407
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
408
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
409
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
410
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
411
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
412
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
413
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
414
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
415
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__4189966169109721555__process_action__2827846703754668213__callbacks'
|
416
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
417
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
418
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
419
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
420
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
421
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
422
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
423
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
424
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
425
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
426
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
427
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
428
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
429
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
430
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
431
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
432
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
433
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
434
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
435
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
436
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
437
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
438
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
439
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
440
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
441
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
442
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
443
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
444
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
445
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
446
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
447
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
448
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
449
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
450
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
451
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
452
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3885960422606791196__call__470999722384102029__callbacks'
|
453
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
454
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
455
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
456
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
457
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
458
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
459
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
460
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
461
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
462
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
463
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
464
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
465
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
466
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
467
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
468
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
469
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
470
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
471
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
472
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
473
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
474
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
475
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
476
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
477
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
478
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
479
|
+
|
480
|
+
|
481
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.4ms)
|
482
|
+
|
483
|
+
|
484
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:39:09 +0200
|
485
|
+
Processing by Seiten::PagesController#show as HTML
|
486
|
+
Rendered app/pages/home.html.erb (0.2ms)
|
487
|
+
Rendered /Users/pulleasy/code/seiten/app/views/seiten/pages/show.html.erb within layouts/application (1.4ms)
|
488
|
+
Compiled application.css (0ms) (pid 90351)
|
489
|
+
Completed 500 Internal Server Error in 15ms
|
490
|
+
|
491
|
+
ActionView::Template::Error (couldn't find file 'jquery'
|
492
|
+
(in /Users/pulleasy/code/seiten/test/dummy/app/assets/javascripts/application.js:13)):
|
493
|
+
3: <head>
|
494
|
+
4: <title>Dummy</title>
|
495
|
+
5: <%= stylesheet_link_tag "application", :media => "all" %>
|
496
|
+
6: <%= javascript_include_tag "application" %>
|
497
|
+
7: <%= csrf_meta_tags %>
|
498
|
+
8: </head>
|
499
|
+
9: <body>
|
500
|
+
app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___3778988314271530588_70343906893960'
|
501
|
+
|
502
|
+
|
503
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
|
504
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
505
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms)
|
506
|
+
|
507
|
+
|
508
|
+
Started GET "/" for 127.0.0.1 at 2013-07-23 14:39:48 +0200
|
509
|
+
Processing by Seiten::PagesController#show as HTML
|
510
|
+
Rendered app/pages/home.html.erb (0.0ms)
|
511
|
+
Rendered /Users/pulleasy/code/seiten/app/views/seiten/pages/show.html.erb within layouts/application (1.2ms)
|
512
|
+
Completed 200 OK in 38ms (Views: 36.3ms | ActiveRecord: 0.0ms)
|
513
|
+
|
514
|
+
|
515
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-07-23 14:39:48 +0200
|
516
|
+
Served asset /application.css - 200 OK (4ms)
|
517
|
+
|
518
|
+
|
519
|
+
Started GET "/about" for 127.0.0.1 at 2013-07-23 14:44:20 +0200
|
520
|
+
|
521
|
+
|
522
|
+
Started GET "/about/me" for 127.0.0.1 at 2013-07-23 14:44:20 +0200
|
523
|
+
Processing by Seiten::PagesController#show as HTML
|
524
|
+
Parameters: {"page"=>"about/me"}
|
525
|
+
Rendered /Users/pulleasy/code/seiten/app/views/seiten/pages/show.html.erb within layouts/application (1.5ms)
|
526
|
+
Completed 500 Internal Server Error in 4ms
|
527
|
+
|
528
|
+
ActionView::Template::Error (Missing template /Users/pulleasy/code/seiten/test/dummy/app/pages/about/me with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
529
|
+
* "/Users/pulleasy/code/seiten/test/dummy/app/views"
|
530
|
+
* "/Users/pulleasy/code/seiten/app/views"
|
531
|
+
* "/Users/pulleasy/code/seiten/test/dummy"
|
532
|
+
* "/"
|
533
|
+
):
|
534
|
+
1: <%= render_html %>
|
535
|
+
actionpack (3.2.13) lib/action_view/path_set.rb:58:in `find'
|
536
|
+
actionpack (3.2.13) lib/action_view/lookup_context.rb:109:in `find'
|
537
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `find_template'
|
538
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:28:in `block in determine_template'
|
539
|
+
actionpack (3.2.13) lib/action_view/lookup_context.rb:130:in `with_fallbacks'
|
540
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:3:in `with_fallbacks'
|
541
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:28:in `determine_template'
|
542
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:10:in `render'
|
543
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
544
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
545
|
+
actionpack (3.2.13) lib/action_view/helpers/rendering_helper.rb:24:in `render'
|
546
|
+
/Users/pulleasy/code/seiten/app/helpers/seiten_helper.rb:9:in `render_html'
|
547
|
+
/Users/pulleasy/code/seiten/app/views/seiten/pages/show.html.erb:1:in `___sers_pulleasy_code_seiten_app_views_seiten_pages_show_html_erb__3377925228875209425_70343906900260'
|
548
|
+
actionpack (3.2.13) lib/action_view/template.rb:145:in `block in render'
|
549
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:125:in `instrument'
|
550
|
+
actionpack (3.2.13) lib/action_view/template.rb:143:in `render'
|
551
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:47:in `block (2 levels) in render_template'
|
552
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
|
553
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
554
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
555
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
556
|
+
actionpack (3.2.13) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
|
557
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:46:in `block in render_template'
|
558
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:54:in `render_with_layout'
|
559
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:45:in `render_template'
|
560
|
+
actionpack (3.2.13) lib/action_view/renderer/template_renderer.rb:18:in `render'
|
561
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:36:in `render_template'
|
562
|
+
actionpack (3.2.13) lib/action_view/renderer/renderer.rb:17:in `render'
|
563
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:110:in `_render_template'
|
564
|
+
actionpack (3.2.13) lib/action_controller/metal/streaming.rb:225:in `_render_template'
|
565
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:103:in `render_to_body'
|
566
|
+
actionpack (3.2.13) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
|
567
|
+
actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
|
568
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:88:in `render'
|
569
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:16:in `render'
|
570
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
571
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
572
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
|
573
|
+
activesupport (3.2.13) lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
574
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
575
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
|
576
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
577
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:39:in `render'
|
578
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
579
|
+
actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
|
580
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:167:in `process_action'
|
581
|
+
actionpack (3.2.13) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
582
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
583
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:414:in `_run__4189966169109721555__process_action__2827846703754668213__callbacks'
|
584
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
585
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
|
586
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
587
|
+
actionpack (3.2.13) lib/abstract_controller/callbacks.rb:17:in `process_action'
|
588
|
+
actionpack (3.2.13) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
589
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
590
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `block in instrument'
|
591
|
+
activesupport (3.2.13) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
592
|
+
activesupport (3.2.13) lib/active_support/notifications.rb:123:in `instrument'
|
593
|
+
actionpack (3.2.13) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
594
|
+
actionpack (3.2.13) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
|
595
|
+
activerecord (3.2.13) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
596
|
+
actionpack (3.2.13) lib/abstract_controller/base.rb:121:in `process'
|
597
|
+
actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
|
598
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
|
599
|
+
actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
600
|
+
actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
|
601
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
602
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
603
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
604
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
605
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
606
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
607
|
+
actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
|
608
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
609
|
+
rack (1.4.5) lib/rack/etag.rb:23:in `call'
|
610
|
+
rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
|
611
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
|
612
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
613
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
614
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
|
615
|
+
rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
|
616
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
|
617
|
+
activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
|
618
|
+
activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
|
619
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
620
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__3885960422606791196__call__470999722384102029__callbacks'
|
621
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
|
622
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
623
|
+
activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
624
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
625
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
626
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
627
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
628
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
629
|
+
railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
|
630
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
|
631
|
+
activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
|
632
|
+
railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
|
633
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
634
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
635
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
636
|
+
activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
637
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
638
|
+
actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
|
639
|
+
railties (3.2.13) lib/rails/engine.rb:479:in `call'
|
640
|
+
railties (3.2.13) lib/rails/application.rb:223:in `call'
|
641
|
+
rack (1.4.5) lib/rack/content_length.rb:14:in `call'
|
642
|
+
railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
|
643
|
+
rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
|
644
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
|
645
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
|
646
|
+
/Users/pulleasy/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
|
647
|
+
|
648
|
+
|
649
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms)
|
650
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.7ms)
|
651
|
+
Rendered /Users/pulleasy/code/seiten/.bundle/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
|