siringa 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +169 -0
  4. data/Rakefile +39 -0
  5. data/app/controllers/siringa/application_controller.rb +4 -0
  6. data/app/controllers/siringa/siringa_controller.rb +49 -0
  7. data/app/helpers/siringa/application_helper.rb +4 -0
  8. data/config/routes.rb +5 -0
  9. data/lib/generators/siringa/install_generator.rb +18 -0
  10. data/lib/generators/templates/siringa_initializer.rb +9 -0
  11. data/lib/siringa.rb +4 -0
  12. data/lib/siringa/configuration.rb +26 -0
  13. data/lib/siringa/definitions.rb +38 -0
  14. data/lib/siringa/dumps.rb +66 -0
  15. data/lib/siringa/engine.rb +5 -0
  16. data/lib/siringa/version.rb +3 -0
  17. data/lib/tasks/siringa_tasks.rake +11 -0
  18. data/test/controllers/siringa_controller_test.rb +23 -0
  19. data/test/dummy/Rakefile +7 -0
  20. data/test/dummy/app/assets/javascripts/application.js +9 -0
  21. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  22. data/test/dummy/app/controllers/application_controller.rb +3 -0
  23. data/test/dummy/app/helpers/application_helper.rb +2 -0
  24. data/test/dummy/app/models/user.rb +3 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/config.ru +4 -0
  27. data/test/dummy/config/application.rb +45 -0
  28. data/test/dummy/config/boot.rb +10 -0
  29. data/test/dummy/config/database.yml +25 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +30 -0
  32. data/test/dummy/config/environments/production.rb +60 -0
  33. data/test/dummy/config/environments/test.rb +39 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/inflections.rb +10 -0
  36. data/test/dummy/config/initializers/mime_types.rb +5 -0
  37. data/test/dummy/config/initializers/secret_token.rb +7 -0
  38. data/test/dummy/config/initializers/session_store.rb +8 -0
  39. data/test/dummy/config/initializers/siringa.rb +5 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +5 -0
  42. data/test/dummy/config/routes.rb +4 -0
  43. data/test/dummy/db/development.sqlite3 +0 -0
  44. data/test/dummy/db/migrate/20130927161308_create_user.rb +7 -0
  45. data/test/dummy/db/schema.rb +20 -0
  46. data/test/dummy/db/test.sqlite3 +0 -0
  47. data/test/dummy/log/development.log +1069 -0
  48. data/test/dummy/log/test.log +1471 -0
  49. data/test/dummy/public/404.html +26 -0
  50. data/test/dummy/public/422.html +26 -0
  51. data/test/dummy/public/500.html +26 -0
  52. data/test/dummy/public/favicon.ico +0 -0
  53. data/test/dummy/script/rails +6 -0
  54. data/test/dummy/test/factories.rb +7 -0
  55. data/test/dummy/test/siringa/definitions.rb +6 -0
  56. data/test/dummy/tmp/dumps/db_20130927191400.dump +0 -0
  57. data/test/integration/navigation_test.rb +10 -0
  58. data/test/siringa_test.rb +7 -0
  59. data/test/test_helper.rb +10 -0
  60. metadata +158 -0
@@ -0,0 +1,1069 @@
1
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
2
+
3
+
4
+ Started GET "/populate/load/ppppppp" for 127.0.0.1 at 2013-09-03 17:55:00 +0200
5
+
6
+ ActionController::RoutingError (No route matches [GET] "/populate/load/ppppppp"):
7
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
10
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
11
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
12
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
13
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
14
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
15
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
16
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
17
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
18
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
19
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
21
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
22
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
23
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
24
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
25
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
26
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
27
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
28
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
29
+
30
+
31
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
32
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
33
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
34
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (40.0ms)
35
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (61.7ms)
36
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
37
+
38
+
39
+ Started GET "/siringa/load/ppppppp" for 127.0.0.1 at 2013-09-03 17:56:12 +0200
40
+ Processing by Siringa::SiringaController#load as HTML
41
+ Parameters: {"factory"=>"ppppppp"}
42
+ Rendered text template (0.0ms)
43
+ Completed 405 Method Not Allowed in 9ms (Views: 7.8ms)
44
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
45
+
46
+
47
+ Started GET "/load/papap" for 127.0.0.1 at 2013-09-08 17:04:41 +0200
48
+
49
+ ActionController::RoutingError (No route matches [GET] "/load/papap"):
50
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
51
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
52
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
53
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
54
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
55
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
56
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
57
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
58
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
59
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
60
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
61
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
62
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
63
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
64
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
65
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
66
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
67
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
68
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
69
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
70
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
71
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
72
+
73
+
74
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
75
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
76
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
77
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (67.3ms)
78
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (157.5ms)
79
+
80
+
81
+ Started GET "/siringa/load/papap" for 127.0.0.1 at 2013-09-08 17:04:53 +0200
82
+ Processing by Siringa::SiringaController#load as HTML
83
+ Parameters: {"factory"=>"papap"}
84
+ Rendered text template (0.0ms)
85
+ Completed 405 Method Not Allowed in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
86
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
87
+
88
+
89
+ Started GET "/siringa/load/papap" for 127.0.0.1 at 2013-09-08 17:31:40 +0200
90
+ Processing by Siringa::SiringaController#load as HTML
91
+ Parameters: {"factory"=>"papap"}
92
+ Rendered text template (0.0ms)
93
+ Completed 405 Method Not Allowed in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
94
+
95
+
96
+ Started GET "/siringa/load" for 127.0.0.1 at 2013-09-08 17:31:44 +0200
97
+
98
+ ActionController::RoutingError (No route matches [GET] "/siringa/load"):
99
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
100
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
101
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
102
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
103
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
104
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
105
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
106
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
107
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
108
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
109
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
110
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
111
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
112
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
113
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
114
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
115
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
116
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
117
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
118
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
119
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
120
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
121
+
122
+
123
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
124
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
125
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
126
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.7ms)
127
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (59.1ms)
128
+
129
+
130
+ Started GET "/siringa/load/" for 127.0.0.1 at 2013-09-08 17:31:51 +0200
131
+
132
+ ActionController::RoutingError (No route matches [GET] "/siringa/load"):
133
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
134
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
135
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
136
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
137
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
138
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
139
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
140
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
141
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
142
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
143
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
144
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
145
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
146
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
147
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
148
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
149
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
150
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
151
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
152
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
153
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
154
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
155
+
156
+
157
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
158
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
159
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
160
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
161
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (18.5ms)
162
+
163
+
164
+ Started GET "/load" for 127.0.0.1 at 2013-09-08 17:32:33 +0200
165
+
166
+ ActionController::RoutingError (No route matches [GET] "/load"):
167
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
168
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
169
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
170
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
171
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
172
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
173
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
174
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
175
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
176
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
177
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
178
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
179
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
180
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
181
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
182
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
183
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
184
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
185
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
186
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
187
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
188
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
189
+
190
+
191
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
192
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
193
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
194
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (38.9ms)
195
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (62.9ms)
196
+
197
+
198
+ Started GET "/siringa/load" for 127.0.0.1 at 2013-09-08 17:33:47 +0200
199
+
200
+ ActionController::RoutingError (No route matches [GET] "/siringa/load"):
201
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
202
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
203
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
204
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
205
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
206
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
207
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
208
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
209
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
210
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
211
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
212
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
213
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
214
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
215
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
216
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
217
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
218
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
219
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
220
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
221
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
222
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
223
+
224
+
225
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
226
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
227
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
228
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
229
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (19.2ms)
230
+
231
+
232
+ Started GET "/siringa/load/" for 127.0.0.1 at 2013-09-08 17:34:08 +0200
233
+
234
+ ActionController::RoutingError (No route matches [GET] "/siringa/load"):
235
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
236
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
237
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
238
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
239
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
240
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
241
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
242
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
243
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
244
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
245
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
246
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
247
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
248
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
249
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
250
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
251
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
252
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
253
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
254
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
255
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
256
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
257
+
258
+
259
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
260
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
261
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
262
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
263
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (18.1ms)
264
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
265
+
266
+
267
+ Started GET "/load" for 127.0.0.1 at 2013-09-27 13:19:30 +0200
268
+
269
+ ActionController::RoutingError (No route matches [GET] "/load"):
270
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
271
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
272
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
273
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
274
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
275
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
276
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
277
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
278
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
279
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
280
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
281
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
282
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
283
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
284
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
285
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
286
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
287
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
288
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
289
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
290
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
291
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
292
+
293
+
294
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.7ms)
295
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
296
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
297
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (54.9ms)
298
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (118.6ms)
299
+
300
+
301
+ Started GET "/siringa/load" for 127.0.0.1 at 2013-09-27 13:20:06 +0200
302
+
303
+ ActionController::RoutingError (No route matches [GET] "/siringa/load"):
304
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
305
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
306
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
307
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
308
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
309
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
310
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
311
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
312
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
313
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
314
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
315
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
316
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
317
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
318
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
319
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
320
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
321
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
322
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
323
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
324
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
325
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
326
+
327
+
328
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
329
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
330
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
331
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
332
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (20.8ms)
333
+
334
+
335
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 13:20:20 +0200
336
+ Processing by Siringa::SiringaController#load as */*
337
+ Parameters: {"definition"=>"initial"}
338
+ Rendered text template (0.0ms)
339
+ Completed 405 Method Not Allowed in 49ms (Views: 47.7ms | ActiveRecord: 0.0ms)
340
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
341
+
342
+
343
+ Started GET "/siringa/load" for 127.0.0.1 at 2013-09-27 15:11:54 +0200
344
+
345
+ ActionController::RoutingError (No route matches [GET] "/siringa/load"):
346
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
347
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
348
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
349
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
350
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
351
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
352
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
353
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
354
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
355
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
356
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
357
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
358
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
359
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
360
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
361
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
362
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
363
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
364
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
365
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
366
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
367
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
368
+
369
+
370
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
371
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
372
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
373
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.0ms)
374
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (65.8ms)
375
+
376
+
377
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 15:12:20 +0200
378
+ Processing by Siringa::SiringaController#load as */*
379
+ Parameters: {"definition"=>"initial"}
380
+ Rendered text template (0.1ms)
381
+ Completed 405 Method Not Allowed in 5ms (Views: 3.7ms | ActiveRecord: 0.0ms)
382
+
383
+
384
+ Started GET "/siringa/load/initialm" for 127.0.0.1 at 2013-09-27 15:12:47 +0200
385
+ Processing by Siringa::SiringaController#load as */*
386
+ Parameters: {"definition"=>"initialm"}
387
+ Rendered text template (0.0ms)
388
+ Completed 405 Method Not Allowed in 39ms (Views: 0.9ms | ActiveRecord: 0.0ms)
389
+
390
+
391
+ Started GET "/siringa/load" for 127.0.0.1 at 2013-09-27 15:18:44 +0200
392
+
393
+ ActionController::RoutingError (No route matches [GET] "/siringa/load"):
394
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
395
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
396
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
397
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
398
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
399
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
400
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
401
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
402
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
403
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
404
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
405
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
406
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
407
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
408
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
409
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
410
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
411
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
412
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
413
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
414
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
415
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
416
+
417
+
418
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
419
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
420
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
421
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
422
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (19.7ms)
423
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
424
+
425
+
426
+ Started GET "/siringa?action=load" for 127.0.0.1 at 2013-09-27 15:37:31 +0200
427
+
428
+ AbstractController::ActionNotFound (The action 'index' could not be found for Siringa::SiringaController):
429
+ actionpack (4.0.0) lib/abstract_controller/base.rb:131:in `process'
430
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
431
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
432
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
433
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
434
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
435
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
436
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
437
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
438
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
439
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
440
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
441
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
442
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
443
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
444
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
445
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
446
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
447
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
448
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
449
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
450
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
451
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
452
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
453
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
454
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
455
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
456
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
457
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
458
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2156360839237943286__call__callbacks'
459
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
460
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
461
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
462
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
463
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
464
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
465
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
466
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
467
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
468
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
469
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
470
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
471
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
472
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
473
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
474
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
475
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
476
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
477
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
478
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
479
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
480
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
481
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
482
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
483
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
484
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
485
+
486
+
487
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (4.9ms)
488
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
489
+
490
+
491
+ Started GET "/siringa/load" for 127.0.0.1 at 2013-09-27 15:38:04 +0200
492
+
493
+ ActionController::RoutingError (No route matches [GET] "/siringa/load"):
494
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
495
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
496
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
497
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
498
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
499
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
500
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
501
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
502
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
503
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
504
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
505
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
506
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
507
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
508
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
509
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
510
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
511
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
512
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
513
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
514
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
515
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
516
+
517
+
518
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
519
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
520
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
521
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.8ms)
522
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (66.7ms)
523
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
524
+
525
+
526
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 17:39:30 +0200
527
+ Processing by Siringa::SiringaController#load as */*
528
+ Parameters: {"definition"=>"initial"}
529
+ Rendered text template (0.1ms)
530
+ Completed 500 Internal Server Error in 17ms (Views: 14.3ms | ActiveRecord: 0.0ms)
531
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
532
+
533
+
534
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 17:41:21 +0200
535
+ Processing by Siringa::SiringaController#load as */*
536
+ Parameters: {"definition"=>"initial"}
537
+ Rendered text template (0.0ms)
538
+ Completed 500 Internal Server Error in 12ms (Views: 9.3ms | ActiveRecord: 0.0ms)
539
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
540
+
541
+
542
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 17:48:13 +0200
543
+ Processing by Siringa::SiringaController#load as */*
544
+ Parameters: {"definition"=>"initial"}
545
+ Rendered text template (0.0ms)
546
+ Completed 500 Internal Server Error in 36ms (Views: 11.2ms | ActiveRecord: 0.0ms)
547
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
548
+
549
+
550
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 17:49:05 +0200
551
+ Processing by Siringa::SiringaController#load as */*
552
+ Parameters: {"definition"=>"initial"}
553
+ Rendered text template (0.0ms)
554
+ Completed 500 Internal Server Error in 12ms (Views: 9.3ms | ActiveRecord: 0.0ms)
555
+
556
+
557
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 17:49:42 +0200
558
+ Processing by Siringa::SiringaController#load as */*
559
+ Parameters: {"definition"=>"initial"}
560
+ Rendered text template (0.0ms)
561
+ Completed 500 Internal Server Error in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
562
+
563
+
564
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 17:49:44 +0200
565
+ Processing by Siringa::SiringaController#load as */*
566
+ Parameters: {"definition"=>"initial"}
567
+ Rendered text template (0.0ms)
568
+ Completed 500 Internal Server Error in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
569
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
570
+
571
+
572
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 17:49:52 +0200
573
+ Processing by Siringa::SiringaController#load as */*
574
+ Parameters: {"definition"=>"initial"}
575
+ Rendered text template (0.0ms)
576
+ Completed 500 Internal Server Error in 13ms (Views: 9.1ms | ActiveRecord: 0.0ms)
577
+
578
+
579
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 18:01:19 +0200
580
+ Processing by Siringa::SiringaController#load as */*
581
+ Parameters: {"definition"=>"initial"}
582
+ Rendered text template (0.0ms)
583
+ Completed 500 Internal Server Error in 3ms (Views: 0.9ms | ActiveRecord: 0.0ms)
584
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
585
+
586
+
587
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 18:01:39 +0200
588
+ Processing by Siringa::SiringaController#load as */*
589
+ Parameters: {"definition"=>"initial"}
590
+ Rendered text template (0.0ms)
591
+ Completed 500 Internal Server Error in 14ms (Views: 9.5ms | ActiveRecord: 1.9ms)
592
+  (144.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
593
+  (114.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
594
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
595
+ Migrating to CreateUserTable (20130927160355)
596
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
597
+ Migrating to CreateUserTable (20130927160355)
598
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
599
+  (0.1ms) SELECT version FROM schema_migrations
600
+  (0.1ms) SELECT version FROM schema_migrations
601
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
602
+ Migrating to CreateUserTable (20130927160355)
603
+  (0.3ms) SELECT version FROM "schema_migrations"
604
+  (138.9ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
605
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
606
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
607
+ Migrating to CreateUserTable (20130927160355)
608
+  (0.2ms) SELECT version FROM "schema_migrations"
609
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
610
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
611
+ Migrating to CreateUser (20130927161308)
612
+  (0.1ms) begin transaction
613
+  (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
614
+ SQL (1.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20130927161308"]]
615
+  (139.6ms) commit transaction
616
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
617
+  (141.2ms) DROP TABLE "users"
618
+  (122.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
619
+  (0.2ms) SELECT version FROM "schema_migrations"
620
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
621
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
622
+
623
+
624
+ Started GET "/siringa/load/initial" for 127.0.0.1 at 2013-09-27 18:16:08 +0200
625
+ Processing by Siringa::SiringaController#load as */*
626
+ Parameters: {"definition"=>"initial"}
627
+  (0.1ms) begin transaction
628
+ SQL (1.7ms) INSERT INTO "users" DEFAULT VALUES
629
+  (156.2ms) commit transaction
630
+ Rendered text template (0.0ms)
631
+ Completed 201 Created in 217ms (Views: 41.6ms | ActiveRecord: 160.6ms)
632
+
633
+
634
+ Started GET "/siringa/load/initia" for 127.0.0.1 at 2013-09-27 18:20:29 +0200
635
+ Processing by Siringa::SiringaController#load as */*
636
+ Parameters: {"definition"=>"initia"}
637
+ Rendered text template (0.0ms)
638
+ Completed 405 Method Not Allowed in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
639
+
640
+
641
+ Started GET "/siringa/load" for 127.0.0.1 at 2013-09-27 18:20:40 +0200
642
+
643
+ ActionController::RoutingError (No route matches [GET] "/siringa/load"):
644
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
645
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
646
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
647
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
648
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
649
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
650
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
651
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
652
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
653
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
654
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
655
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
656
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
657
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
658
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
659
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
660
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
661
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
662
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
663
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
664
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
665
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
666
+
667
+
668
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
669
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
670
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.3ms)
671
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.7ms)
672
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (28.8ms)
673
+  (140.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) 
674
+  (357.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
675
+  (164.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
676
+  (0.2ms) SELECT version FROM "schema_migrations"
677
+  (139.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20130927161308')
678
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
679
+
680
+
681
+ Started POST "/siringa/dump" for 127.0.0.1 at 2013-09-27 18:34:16 +0200
682
+ Processing by Siringa::SiringaController#dump as */*
683
+ Rendered text template (0.0ms)
684
+ Completed 500 Internal Server Error in 67ms (Views: 55.9ms | ActiveRecord: 0.0ms)
685
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
686
+
687
+
688
+ Started POST "/siringa/dump" for 127.0.0.1 at 2013-09-27 19:09:43 +0200
689
+ Processing by Siringa::SiringaController#dump as */*
690
+ Completed 500 Internal Server Error in 1ms
691
+
692
+ NoMethodError (undefined method `dumps_folder' for Siringa:Module):
693
+ /home/enrico/Sviluppo/siringa/lib/siringa/dumps.rb:7:in `dump_file_name'
694
+ /home/enrico/Sviluppo/siringa/app/controllers/siringa/siringa_controller.rb:16:in `dump'
695
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
696
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
697
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
698
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
699
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__93064342079911199__process_action__callbacks'
700
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
701
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
702
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
703
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
704
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
705
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
706
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
707
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
708
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
709
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
710
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
711
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
712
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
713
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
714
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
715
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
716
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
717
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
718
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
719
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
720
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
721
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
722
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
723
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
724
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
725
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
726
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
727
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
728
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
729
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
730
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
731
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
732
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
733
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
734
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
735
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
736
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
737
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
738
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
739
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2068030205361700715__call__callbacks'
740
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
741
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
742
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
743
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
744
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
745
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
746
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
747
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
748
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
749
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
750
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
751
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
752
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
753
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
754
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
755
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
756
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
757
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
758
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
759
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
760
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
761
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
762
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
763
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
764
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
765
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
766
+
767
+
768
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
769
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
770
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms)
771
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (27.3ms)
772
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
773
+
774
+
775
+ Started POST "/siringa/dump" for 127.0.0.1 at 2013-09-27 19:10:39 +0200
776
+ Processing by Siringa::SiringaController#dump as */*
777
+ Completed 500 Internal Server Error in 1ms
778
+
779
+ NoMethodError (undefined method `dumps_path' for Siringa:Module):
780
+ /home/enrico/Sviluppo/siringa/lib/siringa/dumps.rb:7:in `dump_file_name'
781
+ /home/enrico/Sviluppo/siringa/app/controllers/siringa/siringa_controller.rb:16:in `dump'
782
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
783
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
784
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
785
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
786
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3539749528922371552__process_action__callbacks'
787
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
788
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
789
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
790
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
791
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
792
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
793
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
794
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
795
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
796
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
797
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
798
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
799
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
800
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
801
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
802
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
803
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
804
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
805
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
806
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
807
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
808
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
809
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
810
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
811
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
812
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
813
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
814
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
815
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
816
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
817
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
818
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
819
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
820
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
821
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
822
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
823
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
824
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
825
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
826
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__3721885057685747473__call__callbacks'
827
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
828
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
829
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
830
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
831
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
832
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
833
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
834
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
835
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
836
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
837
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
838
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
839
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
840
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
841
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
842
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
843
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
844
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
845
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
846
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
847
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
848
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
849
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
850
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
851
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
852
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
853
+
854
+
855
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
856
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
857
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms)
858
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (19.5ms)
859
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
860
+
861
+
862
+ Started POST "/siringa/dump" for 127.0.0.1 at 2013-09-27 19:11:48 +0200
863
+ Processing by Siringa::SiringaController#dump as */*
864
+ Completed 500 Internal Server Error in 14135ms
865
+
866
+ NoMethodError (undefined method `dumps_path' for Siringa:Module):
867
+ /home/enrico/Sviluppo/siringa/lib/siringa/dumps.rb:8:in `dump_file_name'
868
+ /home/enrico/Sviluppo/siringa/app/controllers/siringa/siringa_controller.rb:16:in `dump'
869
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
870
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
871
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
872
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
873
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4529498251156050347__process_action__callbacks'
874
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
875
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
876
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
877
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
878
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
879
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
880
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
881
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
882
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
883
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
884
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
885
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
886
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
887
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
888
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
889
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
890
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
891
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
892
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
893
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
894
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
895
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
896
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
897
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
898
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
899
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
900
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
901
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
902
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
903
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
904
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
905
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
906
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
907
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
908
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
909
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
910
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
911
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
912
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
913
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4030112653507904282__call__callbacks'
914
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
915
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
916
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
917
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
918
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
919
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
920
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
921
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
922
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
923
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
924
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
925
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
926
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
927
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
928
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
929
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
930
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
931
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
932
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
933
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
934
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
935
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
936
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
937
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
938
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
939
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
940
+
941
+
942
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
943
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.5ms)
944
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms)
945
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (53.4ms)
946
+
947
+
948
+ Started POST "/siringa/dump" for 127.0.0.1 at 2013-09-27 19:12:25 +0200
949
+ Processing by Siringa::SiringaController#dump as */*
950
+ Completed 500 Internal Server Error in 18369ms
951
+
952
+ NoMethodError (undefined method `dumps_path' for Siringa:Module):
953
+ /home/enrico/Sviluppo/siringa/lib/siringa/dumps.rb:8:in `dump_file_name'
954
+ /home/enrico/Sviluppo/siringa/app/controllers/siringa/siringa_controller.rb:16:in `dump'
955
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
956
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
957
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
958
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
959
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4529498251156050347__process_action__callbacks'
960
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
961
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
962
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
963
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
964
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
965
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
966
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
967
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
968
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
969
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
970
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
971
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
972
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
973
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
974
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
975
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
976
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
977
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
978
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
979
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
980
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
981
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
982
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
983
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
984
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
985
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
986
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
987
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
988
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
989
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
990
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
991
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
992
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
993
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
994
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
995
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
996
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
997
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
998
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
999
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__4030112653507904282__call__callbacks'
1000
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
1001
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1002
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
1003
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1004
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1005
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1006
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
1007
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1008
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1009
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1010
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1011
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1012
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1013
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1014
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1015
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1016
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1017
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1018
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1019
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1020
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1021
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1022
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1023
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1024
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1025
+ /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1026
+
1027
+
1028
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.2ms)
1029
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.4ms)
1030
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.2ms)
1031
+ Rendered /home/enrico/.rvm/gems/ruby-1.9.3-p448/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.8ms)
1032
+
1033
+
1034
+ Started POST "/siringa/dump" for 127.0.0.1 at 2013-09-27 19:13:34 +0200
1035
+ Processing by Siringa::SiringaController#dump as */*
1036
+ DEPRECATION WARNING: You didn't set config.secret_key_base. Read the upgrade documentation to learn more about this new config option. (called from service at /home/enrico/.rvm/rubies/ruby-1.9.3-p448/lib/ruby/1.9.1/webrick/httpserver.rb:138)
1037
+
1038
+
1039
+ Started POST "/siringa/dump" for 127.0.0.1 at 2013-09-27 19:13:53 +0200
1040
+ Processing by Siringa::SiringaController#dump as */*
1041
+ Rendered text template (0.1ms)
1042
+ Completed 500 Internal Server Error in 6316ms (Views: 52.9ms | ActiveRecord: 0.0ms)
1043
+  (0.3ms) begin transaction
1044
+ SQL (0.5ms) INSERT INTO "users" DEFAULT VALUES
1045
+  (156.3ms) commit transaction
1046
+ User Load (0.5ms) SELECT "users".* FROM "users"
1047
+  (0.2ms) begin transaction
1048
+ SQL (0.4ms) INSERT INTO "users" DEFAULT VALUES
1049
+  (137.9ms) commit transaction
1050
+ User Load (0.3ms) SELECT "users".* FROM "users"
1051
+ User Load (0.8ms) SELECT "users".* FROM "users"
1052
+  (0.2ms) begin transaction
1053
+ SQL (13.2ms) INSERT INTO "users" DEFAULT VALUES
1054
+  (115.9ms) commit transaction
1055
+ User Load (0.1ms) SELECT "users".* FROM "users"
1056
+  (165.8ms) DROP TABLE "users"
1057
+  (139.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255))
1058
+  (0.1ms) SELECT version FROM "schema_migrations"
1059
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1060
+ User Load (0.1ms) SELECT "users".* FROM "users"
1061
+  (0.1ms) begin transaction
1062
+ SQL (0.5ms) INSERT INTO "users" DEFAULT VALUES
1063
+  (162.5ms) commit transaction
1064
+ User Load (0.1ms) SELECT "users".* FROM "users"
1065
+ User Load (0.4ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
1066
+ User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
1067
+  (0.1ms) begin transaction
1068
+ SQL (0.4ms) INSERT INTO "users" DEFAULT VALUES
1069
+  (131.1ms) commit transaction