aslon_settings 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (154) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +40 -0
  4. data/app/controllers/admin/item_params_controller.rb +5 -0
  5. data/app/controllers/admin/params_controller.rb +20 -0
  6. data/app/helpers/application_helper.rb +2 -0
  7. data/app/helpers/cheese/widgets_helper.rb +9 -0
  8. data/app/models/admin/item_param.rb +7 -0
  9. data/app/models/admin/param.rb +51 -0
  10. data/app/views/admin/params/index.html.haml +42 -0
  11. data/app/views/layouts/cheese.html.erb +12 -0
  12. data/config/routes.rb +17 -0
  13. data/lib/application_helper.rb +7 -0
  14. data/lib/aslon_settings.rb +5 -0
  15. data/lib/aslon_settings/engine.rb +4 -0
  16. data/lib/aslon_settings/version.rb +3 -0
  17. data/lib/engine.rb +30 -0
  18. data/lib/rails/generators/aslon_settings/aslon_settings_generator.rb +80 -0
  19. data/lib/rails/generators/aslon_settings/templates/initializer.rb +8 -0
  20. data/lib/rails/generators/aslon_settings/templates/migration_item_params.rb +14 -0
  21. data/lib/rails/generators/aslon_settings/templates/migration_params.rb +13 -0
  22. data/lib/rails/generators/aslon_settings/templates/schema.rb +11 -0
  23. data/lib/rails/generators/cheese/cheese_generator.rb +76 -0
  24. data/lib/rails/generators/cheese/templates/initializer.rb +8 -0
  25. data/lib/rails/generators/cheese/templates/migration.rb +9 -0
  26. data/lib/rails/generators/cheese/templates/schema.rb +11 -0
  27. data/lib/rails/railties/tasks.rake +8 -0
  28. data/lib/tasks/aslon_settings_tasks.rake +4 -0
  29. data/test/dummy/README.rdoc +261 -0
  30. data/test/dummy/Rakefile +7 -0
  31. data/test/dummy/app/assets/javascripts/application.js +15 -0
  32. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  33. data/test/dummy/app/controllers/application_controller.rb +3 -0
  34. data/test/dummy/app/helpers/application_helper.rb +2 -0
  35. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  36. data/test/dummy/config.ru +4 -0
  37. data/test/dummy/config/application.rb +56 -0
  38. data/test/dummy/config/boot.rb +10 -0
  39. data/test/dummy/config/database.yml +25 -0
  40. data/test/dummy/config/environment.rb +5 -0
  41. data/test/dummy/config/environments/development.rb +37 -0
  42. data/test/dummy/config/environments/production.rb +67 -0
  43. data/test/dummy/config/environments/test.rb +37 -0
  44. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  45. data/test/dummy/config/initializers/inflections.rb +15 -0
  46. data/test/dummy/config/initializers/mime_types.rb +5 -0
  47. data/test/dummy/config/initializers/secret_token.rb +7 -0
  48. data/test/dummy/config/initializers/session_store.rb +8 -0
  49. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  50. data/test/dummy/config/locales/en.yml +5 -0
  51. data/test/dummy/config/routes.rb +58 -0
  52. data/test/dummy/db/development.sqlite3 +0 -0
  53. data/test/dummy/db/migrate/20120128163432_create_admin_params.rb +13 -0
  54. data/test/dummy/db/migrate/20120128163433_create_admin_item_params.rb +14 -0
  55. data/test/dummy/db/schema.rb +32 -0
  56. data/test/dummy/db/test.sqlite3 +0 -0
  57. data/test/dummy/log/development.log +3299 -0
  58. data/test/dummy/log/test.log +2850 -0
  59. data/test/dummy/public/404.html +26 -0
  60. data/test/dummy/public/422.html +26 -0
  61. data/test/dummy/public/500.html +25 -0
  62. data/test/dummy/public/favicon.ico +0 -0
  63. data/test/dummy/script/rails +6 -0
  64. data/test/dummy/tmp/cache/assets/BCC/5B0/sprockets%2F5733f8e767312480746703524a418a79 +0 -0
  65. data/test/dummy/tmp/cache/assets/C53/630/sprockets%2F6a49c58413f067103663396cfc14733e +0 -0
  66. data/test/dummy/tmp/cache/assets/C59/3B0/sprockets%2Fa0246c6545e9e2991b6442d44d449626 +0 -0
  67. data/test/dummy/tmp/cache/assets/C59/DF0/sprockets%2F342cb85814c1e5d19119d51977379b53 +0 -0
  68. data/test/dummy/tmp/cache/assets/C5E/F10/sprockets%2F814724e31d051857764098acd739e6d5 +0 -0
  69. data/test/dummy/tmp/cache/assets/C61/700/sprockets%2F6015973875742d7f9e90171c57c2ae28 +0 -0
  70. data/test/dummy/tmp/cache/assets/C74/BB0/sprockets%2Fb6447d142b38d02c26f71500535d6d91 +0 -0
  71. data/test/dummy/tmp/cache/assets/C79/090/sprockets%2F24581eb40f651726790979541a1a2abb +0 -0
  72. data/test/dummy/tmp/cache/assets/C79/600/sprockets%2F2a1471848208108cd93b0a0738b587bf +0 -0
  73. data/test/dummy/tmp/cache/assets/C94/CB0/sprockets%2F9f5ac35951919094728289ae14b73b9c +0 -0
  74. data/test/dummy/tmp/cache/assets/C97/A90/sprockets%2Fa1245c33577047a7ca2a00f72c1402f9 +0 -0
  75. data/test/dummy/tmp/cache/assets/CA3/800/sprockets%2F057b5edb0602187ade51967da2071408 +0 -0
  76. data/test/dummy/tmp/cache/assets/CBA/6E0/sprockets%2F595448091f8f54fca0d7ae49583c5310 +0 -0
  77. data/test/dummy/tmp/cache/assets/CBC/9B0/sprockets%2F631fe91cf4327942178ac36d639c8e51 +0 -0
  78. data/test/dummy/tmp/cache/assets/CC0/4D0/sprockets%2Fcb0998c3697403b7ead2803674f95b74 +0 -0
  79. data/test/dummy/tmp/cache/assets/CC6/AE0/sprockets%2Ff89f761707147589b5f47f022ca719fb +0 -0
  80. data/test/dummy/tmp/cache/assets/CC9/DA0/sprockets%2Fe441ca6004a01e2596a43ad83011fd88 +0 -0
  81. data/test/dummy/tmp/cache/assets/CD0/DF0/sprockets%2Fc65f18995be46964904cefc5661c7288 +0 -0
  82. data/test/dummy/tmp/cache/assets/CD8/290/sprockets%2F408d7e3616ddd0cb440661e1e280693c +0 -0
  83. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  84. data/test/dummy/tmp/cache/assets/CDD/BD0/sprockets%2F1f47d7fc1332433150329165eece89cb +0 -0
  85. data/test/dummy/tmp/cache/assets/CE0/D00/sprockets%2Fbf6837369cd8cc10b0c7094b5604833d +0 -0
  86. data/test/dummy/tmp/cache/assets/CE6/620/sprockets%2Fa2981ce627d772ce0667751e453cba56 +0 -0
  87. data/test/dummy/tmp/cache/assets/CE6/FA0/sprockets%2F9b230a89231cfc0d276e598a48a969b0 +0 -0
  88. data/test/dummy/tmp/cache/assets/CF1/BC0/sprockets%2F479625960d61fdd20258eaff88c8632c +0 -0
  89. data/test/dummy/tmp/cache/assets/CFF/E60/sprockets%2Fa58238c280f20ab01f8b3514efc0e942 +0 -0
  90. data/test/dummy/tmp/cache/assets/D07/0B0/sprockets%2F8846cf8fbc635e7685179de8ed307577 +0 -0
  91. data/test/dummy/tmp/cache/assets/D08/670/sprockets%2F0875ba65d176c4c921e8b41a29bba508 +0 -0
  92. data/test/dummy/tmp/cache/assets/D0D/B80/sprockets%2Ff383023599ae3d35e361bd1d601f9fd2 +0 -0
  93. data/test/dummy/tmp/cache/assets/D10/580/sprockets%2F3a7f29575b8c1ea452f12859e4a7e11a +0 -0
  94. data/test/dummy/tmp/cache/assets/D1A/8D0/sprockets%2F734d455592e882d777f6af3ad3db5c11 +0 -0
  95. data/test/dummy/tmp/cache/assets/D1C/280/sprockets%2F2a9d99e40082e8e521e1e206e8afd598 +0 -0
  96. data/test/dummy/tmp/cache/assets/D1C/410/sprockets%2F890b33359c9617a577e5d9b40dcb77ac +0 -0
  97. data/test/dummy/tmp/cache/assets/D1F/1C0/sprockets%2F5649c4e4276905e7b29ed45aef514f5b +0 -0
  98. data/test/dummy/tmp/cache/assets/D27/7B0/sprockets%2F630e81aa5cbe5b2ea53a17743026ca54 +0 -0
  99. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  100. data/test/dummy/tmp/cache/assets/D32/D40/sprockets%2Fd111de3c2f7e42b071bff7a24d339931 +0 -0
  101. data/test/dummy/tmp/cache/assets/D36/970/sprockets%2Fb07457f5ec830e520174fad32e0af2d9 +0 -0
  102. data/test/dummy/tmp/cache/assets/D41/0D0/sprockets%2Fa3c38dacc196f180cba954870e44628e +0 -0
  103. data/test/dummy/tmp/cache/assets/D41/F90/sprockets%2F12881439ec81bc064ce5a88fa8cf2f21 +0 -0
  104. data/test/dummy/tmp/cache/assets/D4D/170/sprockets%2F9e0a7b35a8f612883e67094da63fd9db +0 -0
  105. data/test/dummy/tmp/cache/assets/D4D/770/sprockets%2F7ca933ff93149917e6d5dbdd67a3156a +0 -0
  106. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  107. data/test/dummy/tmp/cache/assets/D4F/010/sprockets%2Febb866a0ac284099087ca72688f7dcb9 +0 -0
  108. data/test/dummy/tmp/cache/assets/D58/920/sprockets%2F1604af936fd303cb22bfeba011f6067d +0 -0
  109. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  110. data/test/dummy/tmp/cache/assets/D5D/2D0/sprockets%2Fbc905eabf18385a476a20b6b630aa8a4 +0 -0
  111. data/test/dummy/tmp/cache/assets/D67/FB0/sprockets%2Fe3f94f2aca977fb0b583c6aa06232b08 +0 -0
  112. data/test/dummy/tmp/cache/assets/D6A/950/sprockets%2F3d4057d5bf3b4cd89542b1b2d3cff382 +0 -0
  113. data/test/dummy/tmp/cache/assets/D6E/3B0/sprockets%2F30777d43ead4cbe66ef0c40722c36e7f +0 -0
  114. data/test/dummy/tmp/cache/assets/D70/2D0/sprockets%2Ff5e345ffe14efbf923ba212a82565d91 +0 -0
  115. data/test/dummy/tmp/cache/assets/D70/590/sprockets%2F702ab96efc4eb4372857ea6d70a0c8d5 +0 -0
  116. data/test/dummy/tmp/cache/assets/D71/660/sprockets%2Fafe829133de1f4bb9799d613b1dba265 +0 -0
  117. data/test/dummy/tmp/cache/assets/D77/620/sprockets%2F170c6779fd2bd851eca6f1f7ed70870a +0 -0
  118. data/test/dummy/tmp/cache/assets/D7E/890/sprockets%2F1658f11cee60c9ee6e56b5dd0a9b3889 +0 -0
  119. data/test/dummy/tmp/cache/assets/D84/A90/sprockets%2Fd55887590d383f99d31cdfe6ae4d6da2 +0 -0
  120. data/test/dummy/tmp/cache/assets/D8B/BB0/sprockets%2Fe4548c2bded4c9f0655f49e45884d9fc +0 -0
  121. data/test/dummy/tmp/cache/assets/D91/E50/sprockets%2Fc9ec4aa8b2e302ca0612df7f0e8741e3 +0 -0
  122. data/test/dummy/tmp/cache/assets/D9A/730/sprockets%2Fbd03a9e4fb00b66a8ec6c39a360c96d6 +0 -0
  123. data/test/dummy/tmp/cache/assets/D9B/980/sprockets%2Fd04af0b6c9e95da413ad3229a989db5a +0 -0
  124. data/test/dummy/tmp/cache/assets/D9E/E60/sprockets%2Fbae9ec3bb9d6de1ec055fe8017209904 +0 -0
  125. data/test/dummy/tmp/cache/assets/DA8/C70/sprockets%2Fcd5d26f674c131dca89c92ac8a2f89b6 +0 -0
  126. data/test/dummy/tmp/cache/assets/DB6/FD0/sprockets%2F0683a6080b0eeaacf913f0ca4f0d5bc4 +0 -0
  127. data/test/dummy/tmp/cache/assets/DB7/E70/sprockets%2Fc59a9f5f8e74cf3ae75558bd08b7e45b +0 -0
  128. data/test/dummy/tmp/cache/assets/DCC/0C0/sprockets%2Fd32e3d754d680e0cd46badceb6d1f908 +0 -0
  129. data/test/dummy/tmp/cache/assets/DCD/5A0/sprockets%2F721f3fe33f410ca6febea71747af4af9 +0 -0
  130. data/test/dummy/tmp/cache/assets/DCD/F30/sprockets%2Fb6119edfb9d35da21df95076cd7fca21 +0 -0
  131. data/test/dummy/tmp/cache/assets/DCF/000/sprockets%2Fe0d33c959d2bee12d9dea3b2c39f509d +0 -0
  132. data/test/dummy/tmp/cache/assets/DD5/820/sprockets%2F43f5f16e45c0998ad71dc4bba79a8eac +0 -0
  133. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  134. data/test/dummy/tmp/cache/assets/DDD/9D0/sprockets%2Fc6e9db72ebedd8fdbd460016885fe608 +0 -0
  135. data/test/dummy/tmp/cache/assets/DE1/EE0/sprockets%2Fbde37f745f02f174dc98683cde69abcf +0 -0
  136. data/test/dummy/tmp/cache/assets/DE6/A90/sprockets%2Fbd9bd6a80dc4dc0930005072bebfaaf3 +0 -0
  137. data/test/dummy/tmp/cache/assets/DED/D10/sprockets%2Fb6043519fdd267af2933f1bcecb0abbc +0 -0
  138. data/test/dummy/tmp/cache/assets/DEF/A30/sprockets%2F821b3fabf05f7b057f6cbc1ba4c706ec +0 -0
  139. data/test/dummy/tmp/cache/assets/DF6/690/sprockets%2F66e59dbb54d1fb6d520cbddb815ba83a +0 -0
  140. data/test/dummy/tmp/cache/assets/DFA/230/sprockets%2F71b015bf3bdc9eaf63991a4a5e2d3dff +0 -0
  141. data/test/dummy/tmp/cache/assets/DFD/3D0/sprockets%2Fee2052df475f6b5e0addf8ff6404a3eb +0 -0
  142. data/test/dummy/tmp/cache/assets/DFD/900/sprockets%2F4c4a9a9c79c13ebc75d9eafdcc3311a6 +0 -0
  143. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  144. data/test/dummy/tmp/cache/assets/E23/5E0/sprockets%2F21cf86c525a97f28ac24abfebaa80fba +0 -0
  145. data/test/dummy/tmp/cache/assets/E51/FD0/sprockets%2F2e6f5b182b37f318d0d0a3cadeaebfef +0 -0
  146. data/test/dummy/tmp/cache/assets/E61/D10/sprockets%2Feaae3ade8634a2a0e7f8e07c9b35ffef +0 -0
  147. data/test/dummy/tmp/cache/assets/E92/410/sprockets%2Ff71cd6fd3f9aa76a65ee4abcdf38ad2d +0 -0
  148. data/test/generator/aslon_settings_generator_test.rb +16 -0
  149. data/test/integration/navigation_test.rb +21 -0
  150. data/test/test_helper.rb +13 -0
  151. data/test/tmp/db/migrate/20120202193559_create_admin_params.rb +13 -0
  152. data/test/tmp/db/migrate/20120202193560_create_admin_item_params.rb +14 -0
  153. data/test/unit/aslon_settings_test.rb +21 -0
  154. metadata +373 -0
Binary file
@@ -0,0 +1,3299 @@
1
+  (0.9ms) select sqlite_version(*)
2
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateAdminParams (20120128163432)
7
+  (0.0ms) begin transaction
8
+  (0.4ms) CREATE TABLE "admin_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "pos" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120128163432')
10
+  (1.0ms) commit transaction
11
+ Migrating to CreateAdminItemParams (20120128163433)
12
+  (0.0ms) begin transaction
13
+  (0.3ms) CREATE TABLE "admin_item_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "value" varchar(255), "pos" integer, "param_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
14
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120128163433')
15
+  (1.3ms) commit transaction
16
+  (0.4ms) select sqlite_version(*)
17
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
18
+  (0.0ms) PRAGMA index_list("admin_item_params")
19
+  (0.0ms) PRAGMA index_list("admin_params")
20
+
21
+
22
+ Started GET "/" for 127.0.0.1 at 2012-01-28 17:35:19 +0100
23
+
24
+ ActionController::RoutingError (No route matches [GET] "/"):
25
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
26
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
27
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
28
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
29
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
30
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
31
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
32
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
33
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
34
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
35
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
36
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
37
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
38
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
39
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
40
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
41
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
42
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
43
+
44
+
45
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
46
+
47
+
48
+ Started GET "/admin/params" for 127.0.0.1 at 2012-01-28 17:35:28 +0100
49
+ Processing by Admin::ParamsController#index as HTML
50
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
51
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (5.5ms)
52
+ Compiled application.css (0ms) (pid 35127)
53
+ Compiled jquery.js (2ms) (pid 35127)
54
+ Compiled jquery_ujs.js (0ms) (pid 35127)
55
+ Compiled application.js (60ms) (pid 35127)
56
+ Completed 200 OK in 119ms (Views: 116.7ms | ActiveRecord: 0.2ms)
57
+
58
+
59
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 17:35:28 +0100
60
+ Served asset /application.css - 200 OK (3ms)
61
+
62
+
63
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 17:35:28 +0100
64
+ Served asset /jquery.js - 304 Not Modified (5ms)
65
+
66
+
67
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 17:35:29 +0100
68
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
69
+
70
+
71
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 17:35:29 +0100
72
+ Served asset /application.js - 200 OK (5ms)
73
+
74
+
75
+ Started GET "/admin/params" for 127.0.0.1 at 2012-01-28 17:36:31 +0100
76
+ Processing by Admin::ParamsController#index as HTML
77
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
78
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
79
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (182.3ms)
80
+ Completed 200 OK in 222ms (Views: 218.8ms | ActiveRecord: 0.5ms)
81
+
82
+
83
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 17:36:31 +0100
84
+ Served asset /application.css - 304 Not Modified (2ms)
85
+
86
+
87
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 17:36:31 +0100
88
+ Served asset /jquery.js - 304 Not Modified (8ms)
89
+
90
+
91
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 17:36:31 +0100
92
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
93
+
94
+
95
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 17:36:31 +0100
96
+ Served asset /application.js - 304 Not Modified (5ms)
97
+
98
+
99
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-01-28 17:36:41 +0100
100
+ Processing by Admin::ParamsController#update as HTML
101
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"bUV1fKGNiF4QqTU8CNv0wylLxuFZ4N2e9w/BGTNJ6sM=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"smtp.gmail.com", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
102
+ Admin::Param Load (0.3ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
103
+  (0.1ms) begin transaction
104
+ Admin::ItemParam Load (0.3ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
105
+  (0.1ms) commit transaction
106
+ Redirected to http://localhost:3000/admin/params
107
+ Completed 302 Found in 18ms (ActiveRecord: 0.7ms)
108
+
109
+
110
+ Started GET "/admin/params" for 127.0.0.1 at 2012-01-28 17:36:42 +0100
111
+ Processing by Admin::ParamsController#index as HTML
112
+ Admin::Param Load (0.3ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
113
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
114
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (10.7ms)
115
+ Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.5ms)
116
+
117
+
118
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 17:36:42 +0100
119
+ Served asset /application.css - 304 Not Modified (0ms)
120
+
121
+
122
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 17:36:42 +0100
123
+ Served asset /jquery.js - 304 Not Modified (0ms)
124
+
125
+
126
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 17:36:42 +0100
127
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
128
+
129
+
130
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 17:36:42 +0100
131
+ Served asset /application.js - 304 Not Modified (0ms)
132
+
133
+
134
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-01-28 17:36:47 +0100
135
+ Processing by Admin::ParamsController#update as HTML
136
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"bUV1fKGNiF4QqTU8CNv0wylLxuFZ4N2e9w/BGTNJ6sM=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"smtp.gmail.comdd", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
137
+ Admin::Param Load (0.1ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
138
+  (0.1ms) begin transaction
139
+ Admin::ItemParam Load (0.3ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
140
+  (0.3ms) UPDATE "admin_item_params" SET "value" = 'smtp.gmail.comdd', "updated_at" = '2012-01-28 16:36:47.191793' WHERE "admin_item_params"."id" = 1
141
+  (1.0ms) commit transaction
142
+ Redirected to http://localhost:3000/admin/params
143
+ Completed 302 Found in 20ms (ActiveRecord: 1.7ms)
144
+
145
+
146
+ Started GET "/admin/params" for 127.0.0.1 at 2012-01-28 17:36:47 +0100
147
+ Processing by Admin::ParamsController#index as HTML
148
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
149
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
150
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (9.6ms)
151
+ Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.3ms)
152
+
153
+
154
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 17:36:47 +0100
155
+ Served asset /application.css - 304 Not Modified (0ms)
156
+
157
+
158
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 17:36:47 +0100
159
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
160
+
161
+
162
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 17:36:47 +0100
163
+ Served asset /jquery.js - 304 Not Modified (0ms)
164
+
165
+
166
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 17:36:47 +0100
167
+ Served asset /application.js - 304 Not Modified (0ms)
168
+
169
+
170
+ Started GET "/admin/params" for 127.0.0.1 at 2012-01-28 17:37:06 +0100
171
+ Processing by Admin::ParamsController#index as HTML
172
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
173
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
174
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (14.8ms)
175
+ Completed 200 OK in 22ms (Views: 20.1ms | ActiveRecord: 0.4ms)
176
+
177
+
178
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 17:37:06 +0100
179
+ Served asset /application.css - 304 Not Modified (0ms)
180
+
181
+
182
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 17:37:06 +0100
183
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
184
+
185
+
186
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 17:37:06 +0100
187
+ Served asset /jquery.js - 304 Not Modified (0ms)
188
+
189
+
190
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 17:37:06 +0100
191
+ Served asset /application.js - 304 Not Modified (0ms)
192
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
193
+  (0.2ms) select sqlite_version(*)
194
+  (1.1ms) CREATE TABLE "admin_item_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "value" varchar(255), "pos" integer, "param_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
195
+  (0.9ms) CREATE TABLE "admin_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "pos" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
196
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
197
+  (0.0ms) PRAGMA index_list("schema_migrations")
198
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
199
+  (0.1ms) SELECT version FROM "schema_migrations"
200
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120128163433')
201
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20120128163432')
202
+
203
+
204
+ Started GET "/" for 127.0.0.1 at 2012-01-28 18:55:06 +0100
205
+
206
+ ActionController::RoutingError (No route matches [GET] "/"):
207
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
208
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
209
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
210
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
211
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
212
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
213
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
214
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
215
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
216
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
217
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
218
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
219
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
220
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
221
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
222
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
223
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
224
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
225
+
226
+
227
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
228
+
229
+
230
+ Started GET "/admin/params" for 127.0.0.1 at 2012-01-28 18:55:15 +0100
231
+ Processing by Admin::ParamsController#index as HTML
232
+ Admin::Param Load (1.8ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
233
+ Admin::ItemParam Load (1.7ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
234
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (194.7ms)
235
+ Completed 200 OK in 240ms (Views: 234.0ms | ActiveRecord: 3.8ms)
236
+
237
+
238
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-28 18:55:16 +0100
239
+ Served asset /application.css - 304 Not Modified (2ms)
240
+
241
+
242
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-28 18:55:16 +0100
243
+ Served asset /jquery.js - 304 Not Modified (9ms)
244
+
245
+
246
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-28 18:55:16 +0100
247
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
248
+
249
+
250
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-28 18:55:16 +0100
251
+ Served asset /application.js - 304 Not Modified (4ms)
252
+
253
+
254
+ Started GET "/" for 127.0.0.1 at 2012-02-01 18:58:25 +0100
255
+
256
+ ActionController::RoutingError (No route matches [GET] "/"):
257
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
258
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
259
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
260
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
261
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
262
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
263
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
264
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
265
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
266
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
267
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
268
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
269
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
270
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
271
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
272
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
273
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
274
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
275
+
276
+
277
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (29.9ms)
278
+
279
+
280
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 18:58:39 +0100
281
+
282
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
283
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
284
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
285
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
286
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
287
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
288
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
289
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
290
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
291
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
292
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
293
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
294
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
295
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
296
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
297
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
298
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
299
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
300
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
301
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
302
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
303
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
304
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
305
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
306
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
307
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
308
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__2490291836085780095__call__2039897993928398164__callbacks'
309
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
310
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
311
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
312
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
313
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
314
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
315
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
316
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
317
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
318
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
319
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
320
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
321
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
322
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
323
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
324
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
325
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
326
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
327
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
328
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
329
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
330
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
331
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
332
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
333
+
334
+
335
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
336
+
337
+
338
+ Started GET "/admin/params/1" for 127.0.0.1 at 2012-02-01 18:58:45 +0100
339
+
340
+ AbstractController::ActionNotFound (The action 'show' could not be found for Admin::ParamsController):
341
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
342
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
343
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
344
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
345
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
346
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
347
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
348
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
349
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
350
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
351
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
352
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
353
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
354
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
355
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
356
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
357
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
358
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
359
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
360
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
361
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
362
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
363
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
364
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
365
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
366
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__2490291836085780095__call__2039897993928398164__callbacks'
367
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
368
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
369
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
370
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
371
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
372
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
373
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
374
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
375
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
376
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
377
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
378
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
379
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
380
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
381
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
382
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
383
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
384
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
385
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
386
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
387
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
388
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
389
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
390
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
391
+
392
+
393
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
394
+
395
+
396
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 18:58:57 +0100
397
+
398
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
399
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
400
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
401
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
402
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
403
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
404
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
405
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
406
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
407
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
408
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
409
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
410
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
411
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
412
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
413
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
414
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
415
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
416
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
417
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
418
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
419
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
420
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
421
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
422
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
423
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
424
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__2490291836085780095__call__2039897993928398164__callbacks'
425
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
426
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
427
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
428
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
429
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
430
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
431
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
432
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
433
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
434
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
435
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
436
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
437
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
438
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
439
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
440
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
441
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
442
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
443
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
444
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
445
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
446
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
447
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
448
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
449
+
450
+
451
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.4ms)
452
+  (0.6ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
453
+  (0.2ms) select sqlite_version(*)
454
+  (1.0ms) CREATE TABLE "admin_item_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "value" varchar(255), "pos" integer, "param_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
455
+  (1.0ms) CREATE TABLE "admin_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "pos" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
456
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
457
+  (0.0ms) PRAGMA index_list("schema_migrations")
458
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
459
+  (0.1ms) SELECT version FROM "schema_migrations"
460
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120128163433')
461
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120128163432')
462
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
463
+  (0.3ms) select sqlite_version(*)
464
+  (2.5ms) CREATE TABLE "admin_item_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "value" varchar(255), "pos" integer, "param_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
465
+  (1.0ms) CREATE TABLE "admin_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "pos" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
466
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
467
+  (0.0ms) PRAGMA index_list("schema_migrations")
468
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
469
+  (0.1ms) SELECT version FROM "schema_migrations"
470
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120128163433')
471
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120128163432')
472
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
473
+  (0.3ms) select sqlite_version(*)
474
+  (2.3ms) CREATE TABLE "admin_item_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "value" varchar(255), "pos" integer, "param_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
475
+  (1.0ms) CREATE TABLE "admin_params" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "pos" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
476
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
477
+  (0.0ms) PRAGMA index_list("schema_migrations")
478
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
479
+  (0.1ms) SELECT version FROM "schema_migrations"
480
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120128163433')
481
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20120128163432')
482
+
483
+
484
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:24 +0100
485
+
486
+ ActionController::RoutingError (undefined local variable or method `aslon_scaffold' for Admin::ParamsController:Class):
487
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/controllers/admin/params_controller.rb:12:in `<class:ParamsController>'
488
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/controllers/admin/params_controller.rb:4:in `<module:AslonSettings>'
489
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/controllers/admin/params_controller.rb:1:in `<top (required)>'
490
+ activesupport (3.2.1) lib/active_support/dependencies.rb:469:in `load'
491
+ activesupport (3.2.1) lib/active_support/dependencies.rb:469:in `block in load_file'
492
+ activesupport (3.2.1) lib/active_support/dependencies.rb:639:in `new_constants_in'
493
+ activesupport (3.2.1) lib/active_support/dependencies.rb:468:in `load_file'
494
+ activesupport (3.2.1) lib/active_support/dependencies.rb:353:in `require_or_load'
495
+ activesupport (3.2.1) lib/active_support/dependencies.rb:502:in `load_missing_constant'
496
+ activesupport (3.2.1) lib/active_support/dependencies.rb:192:in `block in const_missing'
497
+ activesupport (3.2.1) lib/active_support/dependencies.rb:190:in `each'
498
+ activesupport (3.2.1) lib/active_support/dependencies.rb:190:in `const_missing'
499
+ activesupport (3.2.1) lib/active_support/inflector/methods.rb:229:in `block in constantize'
500
+ activesupport (3.2.1) lib/active_support/inflector/methods.rb:228:in `each'
501
+ activesupport (3.2.1) lib/active_support/inflector/methods.rb:228:in `constantize'
502
+ activesupport (3.2.1) lib/active_support/dependencies.rb:554:in `get'
503
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:62:in `controller_reference'
504
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:47:in `controller'
505
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:26:in `call'
506
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
507
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
508
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
509
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
510
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
511
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
512
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
513
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
514
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
515
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
516
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
517
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
518
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
519
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
520
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
521
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
522
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
523
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
524
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
525
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
526
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
527
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
528
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
529
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
530
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
531
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
532
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
533
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
534
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
535
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
536
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
537
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
538
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
539
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
540
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
541
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
542
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
543
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
544
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
545
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
546
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
547
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
548
+
549
+
550
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (8.9ms)
551
+
552
+
553
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:33 +0100
554
+
555
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
556
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
557
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
558
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
559
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
560
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
561
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
562
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
563
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
564
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
565
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
566
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
567
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
568
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
569
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
570
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
571
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
572
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
573
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
574
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
575
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
576
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
577
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
578
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
579
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
580
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
581
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
582
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
583
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
584
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
585
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
586
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
587
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
588
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
589
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
590
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
591
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
592
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
593
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
594
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
595
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
596
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
597
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
598
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
599
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
600
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
601
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
602
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
603
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
604
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
605
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
606
+
607
+
608
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
609
+
610
+
611
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:35 +0100
612
+
613
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
614
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
615
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
616
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
617
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
618
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
619
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
620
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
621
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
622
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
623
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
624
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
625
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
626
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
627
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
628
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
629
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
630
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
631
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
632
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
633
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
634
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
635
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
636
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
637
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
638
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
639
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
640
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
641
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
642
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
643
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
644
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
645
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
646
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
647
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
648
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
649
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
650
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
651
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
652
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
653
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
654
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
655
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
656
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
657
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
658
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
659
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
660
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
661
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
662
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
663
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
664
+
665
+
666
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
667
+
668
+
669
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:36 +0100
670
+
671
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
672
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
673
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
674
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
675
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
676
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
677
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
678
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
679
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
680
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
681
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
682
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
683
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
684
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
685
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
686
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
687
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
688
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
689
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
690
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
691
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
692
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
693
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
694
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
695
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
696
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
697
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
698
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
699
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
700
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
701
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
702
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
703
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
704
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
705
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
706
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
707
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
708
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
709
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
710
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
711
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
712
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
713
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
714
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
715
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
716
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
717
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
718
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
719
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
720
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
721
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
722
+
723
+
724
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
725
+
726
+
727
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:37 +0100
728
+
729
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
730
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
731
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
732
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
733
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
734
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
735
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
736
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
737
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
738
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
739
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
740
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
741
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
742
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
743
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
744
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
745
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
746
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
747
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
748
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
749
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
750
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
751
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
752
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
753
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
754
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
755
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
756
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
757
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
758
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
759
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
760
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
761
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
762
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
763
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
764
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
765
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
766
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
767
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
768
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
769
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
770
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
771
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
772
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
773
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
774
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
775
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
776
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
777
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
778
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
779
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
780
+
781
+
782
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
783
+
784
+
785
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:38 +0100
786
+
787
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
788
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
789
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
790
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
791
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
792
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
793
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
794
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
795
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
796
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
797
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
798
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
799
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
800
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
801
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
802
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
803
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
804
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
805
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
806
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
807
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
808
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
809
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
810
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
811
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
812
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
813
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
814
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
815
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
816
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
817
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
818
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
819
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
820
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
821
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
822
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
823
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
824
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
825
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
826
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
827
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
828
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
829
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
830
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
831
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
832
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
833
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
834
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
835
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
836
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
837
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
838
+
839
+
840
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
841
+
842
+
843
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:38 +0100
844
+
845
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
846
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
847
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
848
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
849
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
850
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
851
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
852
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
853
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
854
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
855
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
856
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
857
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
858
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
859
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
860
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
861
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
862
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
863
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
864
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
865
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
866
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
867
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
868
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
869
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
870
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
871
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
872
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
873
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
874
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
875
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
876
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
877
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
878
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
879
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
880
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
881
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
882
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
883
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
884
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
885
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
886
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
887
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
888
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
889
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
890
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
891
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
892
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
893
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
894
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
895
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
896
+
897
+
898
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
899
+
900
+
901
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:39 +0100
902
+
903
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
904
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
905
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
906
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
907
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
908
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
909
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
910
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
911
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
912
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
913
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
914
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
915
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
916
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
917
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
918
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
919
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
920
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
921
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
922
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
923
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
924
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
925
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
926
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
927
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
928
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
929
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
930
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
931
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
932
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
933
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
934
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
935
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
936
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
937
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
938
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
939
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
940
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
941
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
942
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
943
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
944
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
945
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
946
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
947
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
948
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
949
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
950
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
951
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
952
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
953
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
954
+
955
+
956
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
957
+
958
+
959
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:40 +0100
960
+
961
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
962
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
963
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
964
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
965
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
966
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
967
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
968
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
969
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
970
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
971
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
972
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
973
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
974
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
975
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
976
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
977
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
978
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
979
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
980
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
981
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
982
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
983
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
984
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
985
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
986
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
987
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
988
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
989
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
990
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
991
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
992
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
993
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
994
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
995
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
996
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
997
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
998
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
999
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1000
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1001
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1002
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1003
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
1004
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
1005
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
1006
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1007
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
1008
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1009
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1010
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1011
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1012
+
1013
+
1014
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
1015
+
1016
+
1017
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:03:41 +0100
1018
+
1019
+ AbstractController::ActionNotFound (The action 'index' could not be found for Admin::ParamsController):
1020
+ actionpack (3.2.1) lib/abstract_controller/base.rb:116:in `process'
1021
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
1022
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
1023
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
1024
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
1025
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
1026
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
1027
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
1028
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
1029
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
1030
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
1031
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
1032
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
1033
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1034
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1035
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1036
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
1037
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1038
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
1039
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1040
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1041
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
1042
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
1043
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
1044
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1045
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__4215200467426329240__call__2812990908259846331__callbacks'
1046
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
1047
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1048
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1049
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1050
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1051
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1052
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1053
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1054
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
1055
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
1056
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1057
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1058
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1059
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1060
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1061
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
1062
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
1063
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
1064
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1065
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
1066
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1067
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1068
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1069
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1070
+
1071
+
1072
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms)
1073
+
1074
+
1075
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:16:17 +0100
1076
+ Processing by Admin::ParamsController#index as HTML
1077
+ Compiled jquery-ui.js (24ms) (pid 46498)
1078
+ Admin::Param Load (0.6ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1079
+ Admin::ItemParam Load (1.8ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1080
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (258.8ms)
1081
+ Completed 200 OK in 311ms (Views: 306.0ms | ActiveRecord: 2.7ms)
1082
+
1083
+
1084
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:16:17 +0100
1085
+ Served asset /application.css - 304 Not Modified (2ms)
1086
+
1087
+
1088
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:16:18 +0100
1089
+ Served asset /jquery.js - 304 Not Modified (5ms)
1090
+
1091
+
1092
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:16:18 +0100
1093
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1094
+
1095
+
1096
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:16:18 +0100
1097
+ Served asset /application.js - 304 Not Modified (5ms)
1098
+
1099
+
1100
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:16:18 +0100
1101
+ Served asset /jquery-ui.js - 200 OK (3ms)
1102
+
1103
+
1104
+ Started GET "/" for 127.0.0.1 at 2012-02-01 19:17:27 +0100
1105
+
1106
+ ActionController::RoutingError (No route matches [GET] "/"):
1107
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1108
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1109
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
1110
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
1111
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1112
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1113
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1114
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1115
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1116
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
1117
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
1118
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
1119
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1120
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
1121
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1122
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1123
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1124
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1125
+
1126
+
1127
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
1128
+
1129
+
1130
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:17:34 +0100
1131
+ Processing by Admin::ParamsController#index as HTML
1132
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1133
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1134
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (14.4ms)
1135
+ Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.4ms)
1136
+
1137
+
1138
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:17:34 +0100
1139
+ Served asset /application.css - 304 Not Modified (0ms)
1140
+
1141
+
1142
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:17:34 +0100
1143
+ Served asset /jquery.js - 304 Not Modified (0ms)
1144
+
1145
+
1146
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:17:34 +0100
1147
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1148
+
1149
+
1150
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:17:34 +0100
1151
+ Served asset /application.js - 304 Not Modified (0ms)
1152
+
1153
+
1154
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:17:34 +0100
1155
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1156
+
1157
+
1158
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1159
+ Processing by Admin::ParamsController#index as HTML
1160
+ Compiled smoothness/jquery-ui-1.8.16.custom.css (0ms) (pid 46498)
1161
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1162
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1163
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (61.6ms)
1164
+ Completed 200 OK in 67ms (Views: 65.5ms | ActiveRecord: 0.3ms)
1165
+
1166
+
1167
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1168
+ Served asset /application.css - 304 Not Modified (0ms)
1169
+
1170
+
1171
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1172
+ Served asset /jquery.js - 304 Not Modified (0ms)
1173
+
1174
+
1175
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1176
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1177
+
1178
+
1179
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1180
+ Served asset /application.js - 304 Not Modified (0ms)
1181
+
1182
+
1183
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1184
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 200 OK (3ms)
1185
+
1186
+
1187
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1188
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1189
+
1190
+
1191
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1192
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 200 OK (9ms)
1193
+
1194
+
1195
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1196
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 200 OK (10ms)
1197
+
1198
+
1199
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:20:19 +0100
1200
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 200 OK (11ms)
1201
+
1202
+
1203
+ Started GET "/assets/smoothness/images/ui-bg_glass_75_dadada_1x400.png" for 127.0.0.1 at 2012-02-01 19:20:23 +0100
1204
+ Served asset /smoothness/images/ui-bg_glass_75_dadada_1x400.png - 200 OK (36ms)
1205
+
1206
+
1207
+ Started GET "/assets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-02-01 19:21:08 +0100
1208
+ Served asset /smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (14ms)
1209
+
1210
+
1211
+ Started GET "/assets/smoothness/images/ui-icons_888888_256x240.png" for 127.0.0.1 at 2012-02-01 19:21:08 +0100
1212
+ Served asset /smoothness/images/ui-icons_888888_256x240.png - 200 OK (8ms)
1213
+
1214
+
1215
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:39:25 +0100
1216
+ Processing by Admin::ParamsController#index as HTML
1217
+ Compiled smoothness/jquery-ui-1.8.16.custom.css (0ms) (pid 49565)
1218
+ Admin::Param Load (0.3ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1219
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1220
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (234.8ms)
1221
+ Completed 200 OK in 300ms (Views: 297.8ms | ActiveRecord: 0.6ms)
1222
+
1223
+
1224
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:39:25 +0100
1225
+ Served asset /application.css - 304 Not Modified (3ms)
1226
+
1227
+
1228
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:39:25 +0100
1229
+ Served asset /jquery.js - 304 Not Modified (12ms)
1230
+
1231
+
1232
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:39:25 +0100
1233
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
1234
+
1235
+
1236
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:39:25 +0100
1237
+ Served asset /application.js - 304 Not Modified (6ms)
1238
+
1239
+
1240
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:39:26 +0100
1241
+ Served asset /jquery-ui.js - 304 Not Modified (28ms)
1242
+
1243
+
1244
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:39:26 +0100
1245
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (4ms)
1246
+
1247
+
1248
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:39:26 +0100
1249
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (13ms)
1250
+
1251
+
1252
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:39:26 +0100
1253
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (9ms)
1254
+
1255
+
1256
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:39:26 +0100
1257
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (8ms)
1258
+
1259
+
1260
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1261
+ Processing by Admin::ParamsController#index as HTML
1262
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1263
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1264
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (13.3ms)
1265
+ Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 0.4ms)
1266
+
1267
+
1268
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1269
+ Served asset /application.css - 304 Not Modified (0ms)
1270
+
1271
+
1272
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1273
+ Served asset /jquery.js - 304 Not Modified (0ms)
1274
+
1275
+
1276
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1277
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1278
+
1279
+
1280
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1281
+ Served asset /application.js - 304 Not Modified (0ms)
1282
+
1283
+
1284
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1285
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1286
+
1287
+
1288
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1289
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1290
+
1291
+
1292
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1293
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1294
+
1295
+
1296
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1297
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1298
+
1299
+
1300
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:39:28 +0100
1301
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1302
+
1303
+
1304
+ Started GET "/assets/smoothness/images/ui-bg_glass_75_dadada_1x400.png" for 127.0.0.1 at 2012-02-01 19:39:30 +0100
1305
+ Served asset /smoothness/images/ui-bg_glass_75_dadada_1x400.png - 304 Not Modified (7ms)
1306
+
1307
+
1308
+ Started GET "/assets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-02-01 19:39:39 +0100
1309
+ Served asset /smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png - 304 Not Modified (8ms)
1310
+
1311
+
1312
+ Started GET "/assets/smoothness/images/ui-icons_888888_256x240.png" for 127.0.0.1 at 2012-02-01 19:39:39 +0100
1313
+ Served asset /smoothness/images/ui-icons_888888_256x240.png - 304 Not Modified (6ms)
1314
+
1315
+
1316
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-02-01 19:45:19 +0100
1317
+ Processing by Admin::ParamsController#update as HTML
1318
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+zSAhaYVE7e5pvqzxuqLTSGl/N6Tgad7Um4yjsrS0g=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"smtp.gmail.comdd", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
1319
+ Admin::Param Load (0.3ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
1320
+  (0.0ms) begin transaction
1321
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
1322
+  (0.1ms) commit transaction
1323
+ Redirected to http://localhost:3000/admin/params
1324
+ Completed 302 Found in 13ms (ActiveRecord: 0.6ms)
1325
+
1326
+
1327
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:45:19 +0100
1328
+ Processing by Admin::ParamsController#index as HTML
1329
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1330
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1331
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (11.8ms)
1332
+ Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.3ms)
1333
+
1334
+
1335
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:19 +0100
1336
+ Served asset /application.css - 304 Not Modified (0ms)
1337
+
1338
+
1339
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:19 +0100
1340
+ Served asset /jquery.js - 304 Not Modified (0ms)
1341
+
1342
+
1343
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:19 +0100
1344
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1345
+
1346
+
1347
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:19 +0100
1348
+ Served asset /application.js - 304 Not Modified (0ms)
1349
+
1350
+
1351
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:19 +0100
1352
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1353
+
1354
+
1355
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:19 +0100
1356
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1357
+
1358
+
1359
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:45:19 +0100
1360
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1361
+
1362
+
1363
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:45:20 +0100
1364
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1365
+
1366
+
1367
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:45:20 +0100
1368
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1369
+
1370
+
1371
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1372
+ Processing by Admin::ParamsController#update as HTML
1373
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+zSAhaYVE7e5pvqzxuqLTSGl/N6Tgad7Um4yjsrS0g=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"smtp.gmail.comddaaa", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
1374
+ Admin::Param Load (0.1ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
1375
+  (0.1ms) begin transaction
1376
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
1377
+  (0.3ms) UPDATE "admin_item_params" SET "value" = 'smtp.gmail.comddaaa', "updated_at" = '2012-02-01 18:45:23.396372' WHERE "admin_item_params"."id" = 1
1378
+  (5.2ms) commit transaction
1379
+ Redirected to http://localhost:3000/admin/params
1380
+ Completed 302 Found in 28ms (ActiveRecord: 6.0ms)
1381
+
1382
+
1383
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1384
+ Processing by Admin::ParamsController#index as HTML
1385
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1386
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1387
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (10.9ms)
1388
+ Completed 200 OK in 17ms (Views: 14.9ms | ActiveRecord: 0.3ms)
1389
+
1390
+
1391
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1392
+ Served asset /application.css - 304 Not Modified (0ms)
1393
+
1394
+
1395
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1396
+ Served asset /jquery.js - 304 Not Modified (0ms)
1397
+
1398
+
1399
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1400
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1401
+
1402
+
1403
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1404
+ Served asset /application.js - 304 Not Modified (0ms)
1405
+
1406
+
1407
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1408
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1409
+
1410
+
1411
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1412
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1413
+
1414
+
1415
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1416
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1417
+
1418
+
1419
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1420
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1421
+
1422
+
1423
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:45:23 +0100
1424
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1425
+
1426
+
1427
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1428
+ Processing by Admin::ParamsController#update as HTML
1429
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+zSAhaYVE7e5pvqzxuqLTSGl/N6Tgad7Um4yjsrS0g=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"smt", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
1430
+ Admin::Param Load (0.1ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
1431
+  (0.0ms) begin transaction
1432
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
1433
+  (0.2ms) UPDATE "admin_item_params" SET "value" = 'smt', "updated_at" = '2012-02-01 18:45:29.071438' WHERE "admin_item_params"."id" = 1
1434
+  (0.7ms) commit transaction
1435
+ Redirected to http://localhost:3000/admin/params
1436
+ Completed 302 Found in 6ms (ActiveRecord: 1.3ms)
1437
+
1438
+
1439
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1440
+ Processing by Admin::ParamsController#index as HTML
1441
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1442
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1443
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (42.6ms)
1444
+ Completed 200 OK in 48ms (Views: 46.2ms | ActiveRecord: 0.3ms)
1445
+
1446
+
1447
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1448
+ Served asset /application.css - 304 Not Modified (0ms)
1449
+
1450
+
1451
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1452
+ Served asset /jquery.js - 304 Not Modified (0ms)
1453
+
1454
+
1455
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1456
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1457
+
1458
+
1459
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1460
+ Served asset /application.js - 304 Not Modified (0ms)
1461
+
1462
+
1463
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1464
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1465
+
1466
+
1467
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1468
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1469
+
1470
+
1471
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1472
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1473
+
1474
+
1475
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1476
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1477
+
1478
+
1479
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:45:29 +0100
1480
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1481
+
1482
+
1483
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-02-01 19:45:32 +0100
1484
+ Processing by Admin::ParamsController#update as HTML
1485
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+zSAhaYVE7e5pvqzxuqLTSGl/N6Tgad7Um4yjsrS0g=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"smtazeazeaze", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
1486
+ Admin::Param Load (0.1ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
1487
+  (0.0ms) begin transaction
1488
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
1489
+  (0.3ms) UPDATE "admin_item_params" SET "value" = 'smtazeazeaze', "updated_at" = '2012-02-01 18:45:32.895574' WHERE "admin_item_params"."id" = 1
1490
+  (0.8ms) commit transaction
1491
+ Redirected to http://localhost:3000/admin/params
1492
+ Completed 302 Found in 6ms (ActiveRecord: 1.4ms)
1493
+
1494
+
1495
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:45:32 +0100
1496
+ Processing by Admin::ParamsController#index as HTML
1497
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1498
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1499
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (10.4ms)
1500
+ Completed 200 OK in 16ms (Views: 14.1ms | ActiveRecord: 0.3ms)
1501
+
1502
+
1503
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:32 +0100
1504
+ Served asset /application.css - 304 Not Modified (0ms)
1505
+
1506
+
1507
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:33 +0100
1508
+ Served asset /jquery.js - 304 Not Modified (0ms)
1509
+
1510
+
1511
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:33 +0100
1512
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1513
+
1514
+
1515
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:33 +0100
1516
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1517
+
1518
+
1519
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:33 +0100
1520
+ Served asset /application.js - 304 Not Modified (0ms)
1521
+
1522
+
1523
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:33 +0100
1524
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1525
+
1526
+
1527
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:45:33 +0100
1528
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1529
+
1530
+
1531
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:45:33 +0100
1532
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1533
+
1534
+
1535
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:45:33 +0100
1536
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1537
+
1538
+
1539
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1540
+ Processing by Admin::ParamsController#update as HTML
1541
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+zSAhaYVE7e5pvqzxuqLTSGl/N6Tgad7Um4yjsrS0g=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"smtazeazeazesmfùqlmdùqlsd", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
1542
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
1543
+  (0.1ms) begin transaction
1544
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
1545
+  (0.2ms) UPDATE "admin_item_params" SET "value" = 'smtazeazeazesmfùqlmdùqlsd', "updated_at" = '2012-02-01 18:45:36.024257' WHERE "admin_item_params"."id" = 1
1546
+  (0.6ms) commit transaction
1547
+ Redirected to http://localhost:3000/admin/params
1548
+ Completed 302 Found in 7ms (ActiveRecord: 1.3ms)
1549
+
1550
+
1551
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1552
+ Processing by Admin::ParamsController#index as HTML
1553
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1554
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1555
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (11.5ms)
1556
+ Completed 200 OK in 18ms (Views: 16.2ms | ActiveRecord: 0.3ms)
1557
+
1558
+
1559
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1560
+ Served asset /application.css - 304 Not Modified (0ms)
1561
+
1562
+
1563
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1564
+ Served asset /jquery.js - 304 Not Modified (0ms)
1565
+
1566
+
1567
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1568
+ Served asset /application.js - 304 Not Modified (0ms)
1569
+
1570
+
1571
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1572
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1573
+
1574
+
1575
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1576
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1577
+
1578
+
1579
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1580
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1581
+
1582
+
1583
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1584
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1585
+
1586
+
1587
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1588
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1589
+
1590
+
1591
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:45:36 +0100
1592
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1593
+
1594
+
1595
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1596
+ Processing by Admin::ParamsController#update as HTML
1597
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+zSAhaYVE7e5pvqzxuqLTSGl/N6Tgad7Um4yjsrS0g=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"qqmùsldùqldsùmqD", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
1598
+ Admin::Param Load (0.1ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
1599
+  (0.1ms) begin transaction
1600
+ Admin::ItemParam Load (0.3ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
1601
+  (0.3ms) UPDATE "admin_item_params" SET "value" = 'qqmùsldùqldsùmqD', "updated_at" = '2012-02-01 18:45:41.092582' WHERE "admin_item_params"."id" = 1
1602
+  (0.8ms) commit transaction
1603
+ Redirected to http://localhost:3000/admin/params
1604
+ Completed 302 Found in 8ms (ActiveRecord: 1.5ms)
1605
+
1606
+
1607
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1608
+ Processing by Admin::ParamsController#index as HTML
1609
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1610
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1611
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (11.3ms)
1612
+ Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.4ms)
1613
+
1614
+
1615
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1616
+ Served asset /application.css - 304 Not Modified (0ms)
1617
+
1618
+
1619
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1620
+ Served asset /jquery.js - 304 Not Modified (0ms)
1621
+
1622
+
1623
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1624
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1625
+
1626
+
1627
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1628
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1629
+
1630
+
1631
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1632
+ Served asset /application.js - 304 Not Modified (0ms)
1633
+
1634
+
1635
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1636
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1637
+
1638
+
1639
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1640
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1641
+
1642
+
1643
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1644
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1645
+
1646
+
1647
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:45:41 +0100
1648
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1649
+
1650
+
1651
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1652
+ Processing by Admin::ParamsController#update as HTML
1653
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+zSAhaYVE7e5pvqzxuqLTSGl/N6Tgad7Um4yjsrS0g=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"MKMLK", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
1654
+ Admin::Param Load (0.1ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
1655
+  (0.1ms) begin transaction
1656
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
1657
+  (0.2ms) UPDATE "admin_item_params" SET "value" = 'MKMLK', "updated_at" = '2012-02-01 18:46:31.068566' WHERE "admin_item_params"."id" = 1
1658
+  (0.6ms) commit transaction
1659
+ Redirected to http://localhost:3000/admin/params
1660
+ Completed 302 Found in 7ms (ActiveRecord: 1.2ms)
1661
+
1662
+
1663
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1664
+ Processing by Admin::ParamsController#index as HTML
1665
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1666
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1667
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (10.8ms)
1668
+ Completed 200 OK in 17ms (Views: 15.7ms | ActiveRecord: 0.3ms)
1669
+
1670
+
1671
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1672
+ Served asset /application.css - 304 Not Modified (0ms)
1673
+
1674
+
1675
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1676
+ Served asset /jquery.js - 304 Not Modified (0ms)
1677
+
1678
+
1679
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1680
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1681
+
1682
+
1683
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1684
+ Served asset /application.js - 304 Not Modified (0ms)
1685
+
1686
+
1687
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1688
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1689
+
1690
+
1691
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1692
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1693
+
1694
+
1695
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1696
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1697
+
1698
+
1699
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1700
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1701
+
1702
+
1703
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:46:31 +0100
1704
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1705
+
1706
+
1707
+ Started GET "/assets/smoothness/images/ui-bg_glass_75_dadada_1x400.png" for 127.0.0.1 at 2012-02-01 19:46:47 +0100
1708
+ Served asset /smoothness/images/ui-bg_glass_75_dadada_1x400.png - 304 Not Modified (0ms)
1709
+
1710
+
1711
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-02-01 19:46:52 +0100
1712
+ Processing by Admin::ParamsController#update as HTML
1713
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+zSAhaYVE7e5pvqzxuqLTSGl/N6Tgad7Um4yjsrS0g=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"MKMLK", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
1714
+ Admin::Param Load (0.1ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
1715
+  (0.1ms) begin transaction
1716
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
1717
+  (0.1ms) commit transaction
1718
+ Redirected to http://localhost:3000/admin/params
1719
+ Completed 302 Found in 6ms (ActiveRecord: 0.5ms)
1720
+
1721
+
1722
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:46:52 +0100
1723
+ Processing by Admin::ParamsController#index as HTML
1724
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1725
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1726
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (11.6ms)
1727
+ Completed 200 OK in 17ms (Views: 15.4ms | ActiveRecord: 0.4ms)
1728
+
1729
+
1730
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:46:52 +0100
1731
+ Served asset /application.css - 304 Not Modified (0ms)
1732
+
1733
+
1734
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:46:52 +0100
1735
+ Served asset /jquery.js - 304 Not Modified (0ms)
1736
+
1737
+
1738
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:46:52 +0100
1739
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1740
+
1741
+
1742
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:46:52 +0100
1743
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1744
+
1745
+
1746
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:46:52 +0100
1747
+ Served asset /application.js - 304 Not Modified (0ms)
1748
+
1749
+
1750
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:46:52 +0100
1751
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1752
+
1753
+
1754
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:46:53 +0100
1755
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1756
+
1757
+
1758
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:46:53 +0100
1759
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1760
+
1761
+
1762
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:46:53 +0100
1763
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1764
+
1765
+
1766
+ Started GET "/assets/smoothness/images/ui-bg_glass_75_dadada_1x400.png" for 127.0.0.1 at 2012-02-01 19:47:09 +0100
1767
+ Served asset /smoothness/images/ui-bg_glass_75_dadada_1x400.png - 304 Not Modified (0ms)
1768
+
1769
+
1770
+ Started PUT "/admin/params/1" for 127.0.0.1 at 2012-02-01 19:47:11 +0100
1771
+ Processing by Admin::ParamsController#update as HTML
1772
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"l+zSAhaYVE7e5pvqzxuqLTSGl/N6Tgad7Um4yjsrS0g=", "admin_param"=>{"items_attributes"=>{"0"=>{"value"=>"MKMLK", "id"=>"1"}}}, "commit"=>"Update Param", "id"=>"1"}
1773
+ Admin::Param Load (0.1ms) SELECT "admin_params".* FROM "admin_params" WHERE "admin_params"."id" = ? LIMIT 1 [["id", "1"]]
1774
+  (0.1ms) begin transaction
1775
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1 AND "admin_item_params"."id" IN (1)
1776
+  (0.1ms) commit transaction
1777
+ Redirected to http://localhost:3000/admin/params
1778
+ Completed 302 Found in 6ms (ActiveRecord: 0.5ms)
1779
+
1780
+
1781
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:47:11 +0100
1782
+ Processing by Admin::ParamsController#index as HTML
1783
+ Admin::Param Load (0.1ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1784
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1785
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (10.6ms)
1786
+ Completed 200 OK in 16ms (Views: 14.3ms | ActiveRecord: 0.3ms)
1787
+
1788
+
1789
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:47:11 +0100
1790
+ Served asset /application.css - 304 Not Modified (0ms)
1791
+
1792
+
1793
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:47:11 +0100
1794
+ Served asset /jquery.js - 304 Not Modified (0ms)
1795
+
1796
+
1797
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:47:11 +0100
1798
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1799
+
1800
+
1801
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:47:11 +0100
1802
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1803
+
1804
+
1805
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:47:11 +0100
1806
+ Served asset /application.js - 304 Not Modified (0ms)
1807
+
1808
+
1809
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css?body=1" for 127.0.0.1 at 2012-02-01 19:47:11 +0100
1810
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 304 Not Modified (0ms)
1811
+
1812
+
1813
+ Started GET "/assets/smoothness/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:47:12 +0100
1814
+ Served asset /smoothness/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
1815
+
1816
+
1817
+ Started GET "/assets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:47:12 +0100
1818
+ Served asset /smoothness/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
1819
+
1820
+
1821
+ Started GET "/assets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:47:12 +0100
1822
+ Served asset /smoothness/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
1823
+
1824
+
1825
+ Started GET "/assets/smoothness/images/ui-bg_glass_75_dadada_1x400.png" for 127.0.0.1 at 2012-02-01 19:47:14 +0100
1826
+ Served asset /smoothness/images/ui-bg_glass_75_dadada_1x400.png - 304 Not Modified (0ms)
1827
+
1828
+
1829
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:51:44 +0100
1830
+ Processing by Admin::ParamsController#index as HTML
1831
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1832
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1833
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (16.5ms)
1834
+ Completed 200 OK in 22ms (Views: 20.6ms | ActiveRecord: 0.3ms)
1835
+
1836
+
1837
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:51:45 +0100
1838
+ Served asset /application.css - 304 Not Modified (0ms)
1839
+
1840
+
1841
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:51:45 +0100
1842
+ Served asset /jquery.js - 304 Not Modified (0ms)
1843
+
1844
+
1845
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:51:45 +0100
1846
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1847
+
1848
+
1849
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:51:45 +0100
1850
+ Served asset /application.js - 304 Not Modified (0ms)
1851
+
1852
+
1853
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:51:45 +0100
1854
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1855
+
1856
+
1857
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css" for 127.0.0.1 at 2012-02-01 19:51:45 +0100
1858
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 404 Not Found (5ms)
1859
+
1860
+ ActionController::RoutingError (No route matches [GET] "/assets/smoothness/jquery-ui-1.8.16.custom.css"):
1861
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1862
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1863
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
1864
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
1865
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1866
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1867
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1868
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1869
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1870
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
1871
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
1872
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
1873
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1874
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
1875
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1876
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1877
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1878
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1879
+
1880
+
1881
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms)
1882
+
1883
+
1884
+ Started GET "/assets/smoothness/jquery-ui-1.8.16.custom.css" for 127.0.0.1 at 2012-02-01 19:51:45 +0100
1885
+ Served asset /smoothness/jquery-ui-1.8.16.custom.css - 404 Not Found (6ms)
1886
+
1887
+ ActionController::RoutingError (No route matches [GET] "/assets/smoothness/jquery-ui-1.8.16.custom.css"):
1888
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1889
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1890
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
1891
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
1892
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1893
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1894
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1895
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1896
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1897
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
1898
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
1899
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
1900
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1901
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
1902
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1903
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1904
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1905
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1906
+
1907
+
1908
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
1909
+
1910
+
1911
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 19:52:37 +0100
1912
+ Processing by Admin::ParamsController#index as HTML
1913
+ Compiled aslon_jquery_ui_css/jquery-ui.css (0ms) (pid 49565)
1914
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1915
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1916
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (28.1ms)
1917
+ Completed 200 OK in 59ms (Views: 57.7ms | ActiveRecord: 0.3ms)
1918
+
1919
+
1920
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 19:52:37 +0100
1921
+ Served asset /application.css - 304 Not Modified (0ms)
1922
+
1923
+
1924
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 19:52:37 +0100
1925
+ Served asset /jquery.js - 304 Not Modified (0ms)
1926
+
1927
+
1928
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 19:52:37 +0100
1929
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1930
+
1931
+
1932
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 19:52:37 +0100
1933
+ Served asset /application.js - 304 Not Modified (0ms)
1934
+
1935
+
1936
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 19:52:37 +0100
1937
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
1938
+
1939
+
1940
+ Started GET "/assets/aslon_jquery_ui_css/jquery-ui.css?body=1" for 127.0.0.1 at 2012-02-01 19:52:37 +0100
1941
+ Served asset /aslon_jquery_ui_css/jquery-ui.css - 200 OK (4ms)
1942
+
1943
+
1944
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 19:52:38 +0100
1945
+ Served asset /aslon_jquery_ui_css/images/ui-icons_454545_256x240.png - 200 OK (11ms)
1946
+
1947
+
1948
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 19:52:38 +0100
1949
+ Served asset /aslon_jquery_ui_css/images/ui-bg_glass_65_ffffff_1x400.png - 200 OK (11ms)
1950
+
1951
+
1952
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 19:52:38 +0100
1953
+ Served asset /aslon_jquery_ui_css/images/ui-bg_flat_75_ffffff_40x100.png - 200 OK (13ms)
1954
+
1955
+
1956
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_glass_75_dadada_1x400.png" for 127.0.0.1 at 2012-02-01 19:52:40 +0100
1957
+ Served asset /aslon_jquery_ui_css/images/ui-bg_glass_75_dadada_1x400.png - 200 OK (6ms)
1958
+
1959
+
1960
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 20:13:36 +0100
1961
+ Processing by Admin::ParamsController#index as HTML
1962
+ Compiled aslon_jquery_ui_css/jquery-ui.css (0ms) (pid 53844)
1963
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
1964
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
1965
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (251.2ms)
1966
+ Completed 200 OK in 296ms (Views: 293.4ms | ActiveRecord: 0.6ms)
1967
+
1968
+
1969
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 20:13:36 +0100
1970
+ Served asset /application.css - 304 Not Modified (2ms)
1971
+
1972
+
1973
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 20:13:36 +0100
1974
+ Served asset /jquery.js - 304 Not Modified (30ms)
1975
+
1976
+
1977
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 20:13:36 +0100
1978
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
1979
+
1980
+
1981
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 20:13:36 +0100
1982
+ Served asset /application.js - 304 Not Modified (4ms)
1983
+
1984
+
1985
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 20:13:36 +0100
1986
+ Served asset /jquery-ui.js - 304 Not Modified (4ms)
1987
+
1988
+
1989
+ Started GET "/assets/aslon_jquery_ui_css/jquery-ui.css?body=1" for 127.0.0.1 at 2012-02-01 20:13:36 +0100
1990
+ Served asset /aslon_jquery_ui_css/jquery-ui.css - 200 OK (3ms)
1991
+
1992
+
1993
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 20:13:37 +0100
1994
+ Served asset /aslon_jquery_ui_css/images/ui-bg_glass_65_ffffff_1x400.png - 200 OK (8ms)
1995
+
1996
+
1997
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 20:13:37 +0100
1998
+ Served asset /aslon_jquery_ui_css/images/ui-icons_454545_256x240.png - 200 OK (8ms)
1999
+
2000
+
2001
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 20:13:37 +0100
2002
+ Served asset /aslon_jquery_ui_css/images/ui-bg_flat_75_ffffff_40x100.png - 200 OK (8ms)
2003
+
2004
+
2005
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 20:13:38 +0100
2006
+ Processing by Admin::ParamsController#index as HTML
2007
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
2008
+ Admin::ItemParam Load (0.2ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
2009
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (12.4ms)
2010
+ Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 0.4ms)
2011
+
2012
+
2013
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 20:13:39 +0100
2014
+ Served asset /application.css - 304 Not Modified (0ms)
2015
+
2016
+
2017
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 20:13:39 +0100
2018
+ Served asset /jquery.js - 304 Not Modified (0ms)
2019
+
2020
+
2021
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 20:13:39 +0100
2022
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2023
+
2024
+
2025
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 20:13:39 +0100
2026
+ Served asset /application.js - 304 Not Modified (0ms)
2027
+
2028
+
2029
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 20:13:39 +0100
2030
+ Served asset /jquery-ui.js - 304 Not Modified (0ms)
2031
+
2032
+
2033
+ Started GET "/assets/aslon_jquery_ui_css/jquery-ui.css?body=1" for 127.0.0.1 at 2012-02-01 20:13:39 +0100
2034
+ Served asset /aslon_jquery_ui_css/jquery-ui.css - 304 Not Modified (0ms)
2035
+
2036
+
2037
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 20:13:39 +0100
2038
+ Served asset /aslon_jquery_ui_css/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (0ms)
2039
+
2040
+
2041
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 20:13:39 +0100
2042
+ Served asset /aslon_jquery_ui_css/images/ui-icons_454545_256x240.png - 304 Not Modified (0ms)
2043
+
2044
+
2045
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 20:13:39 +0100
2046
+ Served asset /aslon_jquery_ui_css/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (0ms)
2047
+
2048
+
2049
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_glass_75_dadada_1x400.png" for 127.0.0.1 at 2012-02-01 20:13:56 +0100
2050
+ Served asset /aslon_jquery_ui_css/images/ui-bg_glass_75_dadada_1x400.png - 200 OK (8ms)
2051
+
2052
+
2053
+ Started GET "/admin" for 127.0.0.1 at 2012-02-01 22:17:44 +0100
2054
+
2055
+ ActionController::RoutingError (No route matches [GET] "/admin"):
2056
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2057
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2058
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
2059
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
2060
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2061
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2062
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2063
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2064
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2065
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2066
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
2067
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
2068
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2069
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
2070
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2071
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2072
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2073
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2074
+
2075
+
2076
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
2077
+
2078
+
2079
+ Started GET "/admin/params" for 127.0.0.1 at 2012-02-01 22:17:51 +0100
2080
+ Processing by Admin::ParamsController#index as HTML
2081
+ Compiled jquery-ui.css (0ms) (pid 56553)
2082
+ Admin::Param Load (0.7ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
2083
+ Admin::ItemParam Load (0.5ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
2084
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (287.1ms)
2085
+ Completed 200 OK in 314ms (Views: 309.6ms | ActiveRecord: 1.6ms)
2086
+
2087
+
2088
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 22:17:52 +0100
2089
+ Served asset /application.css - 304 Not Modified (2ms)
2090
+
2091
+
2092
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 22:17:52 +0100
2093
+ Served asset /jquery.js - 304 Not Modified (40ms)
2094
+
2095
+
2096
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 22:17:52 +0100
2097
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
2098
+
2099
+
2100
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 22:17:52 +0100
2101
+ Served asset /application.js - 304 Not Modified (6ms)
2102
+
2103
+
2104
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 22:17:52 +0100
2105
+ Served asset /jquery-ui.js - 304 Not Modified (4ms)
2106
+
2107
+
2108
+ Started GET "/assets/jquery-ui.css?body=1" for 127.0.0.1 at 2012-02-01 22:17:52 +0100
2109
+ Served asset /jquery-ui.css - 200 OK (3ms)
2110
+
2111
+
2112
+ Started GET "/assets/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 22:17:52 +0100
2113
+ Served asset /images/ui-icons_454545_256x240.png - 200 OK (11ms)
2114
+
2115
+
2116
+ Started GET "/assets/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 22:17:52 +0100
2117
+ Served asset /images/ui-bg_glass_65_ffffff_1x400.png - 200 OK (10ms)
2118
+
2119
+
2120
+ Started GET "/assets/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 22:17:52 +0100
2121
+ Served asset /images/ui-bg_flat_75_ffffff_40x100.png - 200 OK (9ms)
2122
+
2123
+
2124
+ Started GET "/assets/images/ui-bg_glass_75_dadada_1x400.png" for 127.0.0.1 at 2012-02-01 22:17:54 +0100
2125
+ Served asset /images/ui-bg_glass_75_dadada_1x400.png - 200 OK (11ms)
2126
+
2127
+
2128
+ Started GET "/assets/images/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-02-01 22:18:02 +0100
2129
+ Served asset /images/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (7ms)
2130
+
2131
+
2132
+ Started GET "/assets/images/ui-icons_888888_256x240.png" for 127.0.0.1 at 2012-02-01 22:18:02 +0100
2133
+ Served asset /images/ui-icons_888888_256x240.png - 200 OK (8ms)
2134
+
2135
+
2136
+ Started GET "/" for 127.0.0.1 at 2012-02-01 23:00:36 +0100
2137
+
2138
+ ActionController::RoutingError (No route matches [GET] "/"):
2139
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2140
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2141
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
2142
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
2143
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2144
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2145
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2146
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2147
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2148
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2149
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
2150
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
2151
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2152
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
2153
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2154
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2155
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2156
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2157
+
2158
+
2159
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
2160
+
2161
+
2162
+ Started GET "/admin/params/" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2163
+ Processing by Admin::ParamsController#index as HTML
2164
+ Admin::Param Load (0.2ms) SELECT "admin_params".* FROM "admin_params" WHERE (1=1) LIMIT 30 OFFSET 0
2165
+ Admin::ItemParam Load (0.1ms) SELECT "admin_item_params".* FROM "admin_item_params" WHERE "admin_item_params"."param_id" = 1
2166
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (213.4ms)
2167
+ Completed 200 OK in 229ms (Views: 226.9ms | ActiveRecord: 0.6ms)
2168
+
2169
+
2170
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2171
+ Served asset /application.css - 304 Not Modified (29ms)
2172
+
2173
+
2174
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2175
+ Served asset /jquery.js - 304 Not Modified (9ms)
2176
+
2177
+
2178
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2179
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
2180
+
2181
+
2182
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2183
+ Served asset /application.js - 304 Not Modified (8ms)
2184
+
2185
+
2186
+ Started GET "/assets/jquery-ui.js?body=1" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2187
+ Served asset /jquery-ui.js - 304 Not Modified (4ms)
2188
+
2189
+
2190
+ Started GET "/assets/aslon_jquery_ui_css/jquery-ui.css?body=1" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2191
+ Served asset /aslon_jquery_ui_css/jquery-ui.css - 304 Not Modified (31ms)
2192
+
2193
+
2194
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_glass_65_ffffff_1x400.png" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2195
+ Served asset /aslon_jquery_ui_css/images/ui-bg_glass_65_ffffff_1x400.png - 304 Not Modified (5ms)
2196
+
2197
+
2198
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_flat_75_ffffff_40x100.png" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2199
+ Served asset /aslon_jquery_ui_css/images/ui-bg_flat_75_ffffff_40x100.png - 304 Not Modified (2ms)
2200
+
2201
+
2202
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-icons_454545_256x240.png" for 127.0.0.1 at 2012-02-01 23:01:06 +0100
2203
+ Served asset /aslon_jquery_ui_css/images/ui-icons_454545_256x240.png - 304 Not Modified (3ms)
2204
+
2205
+
2206
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-bg_glass_75_e6e6e6_1x400.png" for 127.0.0.1 at 2012-02-01 23:01:56 +0100
2207
+ Served asset /aslon_jquery_ui_css/images/ui-bg_glass_75_e6e6e6_1x400.png - 200 OK (10ms)
2208
+
2209
+
2210
+ Started GET "/assets/aslon_jquery_ui_css/images/ui-icons_888888_256x240.png" for 127.0.0.1 at 2012-02-01 23:01:56 +0100
2211
+ Served asset /aslon_jquery_ui_css/images/ui-icons_888888_256x240.png - 200 OK (12ms)
2212
+
2213
+
2214
+ Started GET "/admin/params/" for 127.0.0.1 at 2012-02-01 23:13:20 +0100
2215
+ Processing by Admin::ParamsController#index as HTML
2216
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (38.3ms)
2217
+ Completed 500 Internal Server Error in 69ms
2218
+
2219
+ ActionView::Template::Error (Could not find table 'params'):
2220
+ 15:
2221
+ 16:
2222
+ 17: #accordion
2223
+ 18: - @admin_params.each do |p|
2224
+ 19: %h3
2225
+ 20: %a{:href=>"#"}=p.name
2226
+ 21: %div
2227
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:470:in `table_structure'
2228
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:351:in `columns'
2229
+ activerecord (3.2.1) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
2230
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `yield'
2231
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `default'
2232
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `columns'
2233
+ activerecord (3.2.1) lib/active_record/model_schema.rb:237:in `columns_hash'
2234
+ activerecord (3.2.1) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
2235
+ activerecord (3.2.1) lib/active_record/relation.rb:169:in `exec_queries'
2236
+ activerecord (3.2.1) lib/active_record/relation.rb:159:in `block in to_a'
2237
+ activerecord (3.2.1) lib/active_record/explain.rb:33:in `logging_query_plan'
2238
+ activerecord (3.2.1) lib/active_record/relation.rb:158:in `to_a'
2239
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:107:in `block in to_a'
2240
+ will_paginate (3.0.2) lib/will_paginate/collection.rb:96:in `create'
2241
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:106:in `to_a'
2242
+ activerecord (3.2.1) lib/active_record/relation/delegation.rb:6:in `each'
2243
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml:18:in `___sers_alban__ubymine_rojects_plugs_aslon_settings_app_views_admin_params_index_html_haml__4492901554210864373_70146474655700'
2244
+ actionpack (3.2.1) lib/action_view/template.rb:143:in `block in render'
2245
+ activesupport (3.2.1) lib/active_support/notifications.rb:125:in `instrument'
2246
+ actionpack (3.2.1) lib/action_view/template.rb:141:in `render'
2247
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:41:in `block (2 levels) in render_template'
2248
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2249
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2250
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2251
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2252
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2253
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:40:in `block in render_template'
2254
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:48:in `render_with_layout'
2255
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:39:in `render_template'
2256
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:12:in `render'
2257
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:36:in `render_template'
2258
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:17:in `render'
2259
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:109:in `_render_template'
2260
+ actionpack (3.2.1) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2261
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2262
+ actionpack (3.2.1) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2263
+ actionpack (3.2.1) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2264
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:88:in `render'
2265
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
2266
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2267
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2268
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
2269
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2270
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2271
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2272
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2273
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:39:in `render'
2274
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:214:in `aslon_render'
2275
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:116:in `index'
2276
+ actionpack (3.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2277
+ actionpack (3.2.1) lib/abstract_controller/base.rb:167:in `process_action'
2278
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2279
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2280
+ activesupport (3.2.1) lib/active_support/callbacks.rb:414:in `_run__748514626484749999__process_action__731597055608260857__callbacks'
2281
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2282
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2283
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2284
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
2285
+ actionpack (3.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2286
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2287
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2288
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2289
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2290
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2291
+ actionpack (3.2.1) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
2292
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2293
+ actionpack (3.2.1) lib/abstract_controller/base.rb:121:in `process'
2294
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
2295
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
2296
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2297
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
2298
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
2299
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
2300
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
2301
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
2302
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
2303
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
2304
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
2305
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2306
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2307
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2308
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2309
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
2310
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2311
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
2312
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2313
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2314
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2315
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
2316
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
2317
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2318
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__2133289785593040218__call__2345223901545553849__callbacks'
2319
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2320
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2321
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2322
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2323
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2324
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2325
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2326
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2327
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
2328
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
2329
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2330
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2331
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2332
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2333
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2334
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2335
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
2336
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
2337
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2338
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
2339
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2340
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2341
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2342
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2343
+
2344
+
2345
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
2346
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
2347
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.2ms)
2348
+
2349
+
2350
+ Started GET "/admin/params/" for 127.0.0.1 at 2012-02-01 23:13:25 +0100
2351
+ Processing by Admin::ParamsController#index as HTML
2352
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (8.6ms)
2353
+ Completed 500 Internal Server Error in 12ms
2354
+
2355
+ ActionView::Template::Error (Could not find table 'params'):
2356
+ 15:
2357
+ 16:
2358
+ 17: #accordion
2359
+ 18: - @admin_params.each do |p|
2360
+ 19: %h3
2361
+ 20: %a{:href=>"#"}=p.name
2362
+ 21: %div
2363
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:470:in `table_structure'
2364
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:351:in `columns'
2365
+ activerecord (3.2.1) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
2366
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `yield'
2367
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `default'
2368
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `columns'
2369
+ activerecord (3.2.1) lib/active_record/model_schema.rb:237:in `columns_hash'
2370
+ activerecord (3.2.1) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
2371
+ activerecord (3.2.1) lib/active_record/relation.rb:169:in `exec_queries'
2372
+ activerecord (3.2.1) lib/active_record/relation.rb:159:in `block in to_a'
2373
+ activerecord (3.2.1) lib/active_record/explain.rb:33:in `logging_query_plan'
2374
+ activerecord (3.2.1) lib/active_record/relation.rb:158:in `to_a'
2375
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:107:in `block in to_a'
2376
+ will_paginate (3.0.2) lib/will_paginate/collection.rb:96:in `create'
2377
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:106:in `to_a'
2378
+ activerecord (3.2.1) lib/active_record/relation/delegation.rb:6:in `each'
2379
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml:18:in `___sers_alban__ubymine_rojects_plugs_aslon_settings_app_views_admin_params_index_html_haml__4492901554210864373_70146474655700'
2380
+ actionpack (3.2.1) lib/action_view/template.rb:143:in `block in render'
2381
+ activesupport (3.2.1) lib/active_support/notifications.rb:125:in `instrument'
2382
+ actionpack (3.2.1) lib/action_view/template.rb:141:in `render'
2383
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:41:in `block (2 levels) in render_template'
2384
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2385
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2386
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2387
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2388
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2389
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:40:in `block in render_template'
2390
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:48:in `render_with_layout'
2391
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:39:in `render_template'
2392
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:12:in `render'
2393
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:36:in `render_template'
2394
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:17:in `render'
2395
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:109:in `_render_template'
2396
+ actionpack (3.2.1) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2397
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2398
+ actionpack (3.2.1) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2399
+ actionpack (3.2.1) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2400
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:88:in `render'
2401
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
2402
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2403
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2404
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
2405
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2406
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2407
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2408
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2409
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:39:in `render'
2410
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:214:in `aslon_render'
2411
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:116:in `index'
2412
+ actionpack (3.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2413
+ actionpack (3.2.1) lib/abstract_controller/base.rb:167:in `process_action'
2414
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2415
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2416
+ activesupport (3.2.1) lib/active_support/callbacks.rb:414:in `_run__748514626484749999__process_action__731597055608260857__callbacks'
2417
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2418
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2419
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2420
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
2421
+ actionpack (3.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2422
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2423
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2424
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2425
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2426
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2427
+ actionpack (3.2.1) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
2428
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2429
+ actionpack (3.2.1) lib/abstract_controller/base.rb:121:in `process'
2430
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
2431
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
2432
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2433
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
2434
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
2435
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
2436
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
2437
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
2438
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
2439
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
2440
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
2441
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2442
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2443
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2444
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2445
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
2446
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2447
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
2448
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2449
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2450
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2451
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
2452
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
2453
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2454
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__2133289785593040218__call__2345223901545553849__callbacks'
2455
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2456
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2457
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2458
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2459
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2460
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2461
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2462
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2463
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
2464
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
2465
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2466
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2467
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2468
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2469
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2470
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2471
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
2472
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
2473
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2474
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
2475
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2476
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2477
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2478
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2479
+
2480
+
2481
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.4ms)
2482
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
2483
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.9ms)
2484
+
2485
+
2486
+ Started GET "/admin/params/" for 127.0.0.1 at 2012-02-01 23:13:26 +0100
2487
+ Processing by Admin::ParamsController#index as HTML
2488
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (9.8ms)
2489
+ Completed 500 Internal Server Error in 13ms
2490
+
2491
+ ActionView::Template::Error (Could not find table 'params'):
2492
+ 15:
2493
+ 16:
2494
+ 17: #accordion
2495
+ 18: - @admin_params.each do |p|
2496
+ 19: %h3
2497
+ 20: %a{:href=>"#"}=p.name
2498
+ 21: %div
2499
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:470:in `table_structure'
2500
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:351:in `columns'
2501
+ activerecord (3.2.1) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
2502
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `yield'
2503
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `default'
2504
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `columns'
2505
+ activerecord (3.2.1) lib/active_record/model_schema.rb:237:in `columns_hash'
2506
+ activerecord (3.2.1) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
2507
+ activerecord (3.2.1) lib/active_record/relation.rb:169:in `exec_queries'
2508
+ activerecord (3.2.1) lib/active_record/relation.rb:159:in `block in to_a'
2509
+ activerecord (3.2.1) lib/active_record/explain.rb:33:in `logging_query_plan'
2510
+ activerecord (3.2.1) lib/active_record/relation.rb:158:in `to_a'
2511
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:107:in `block in to_a'
2512
+ will_paginate (3.0.2) lib/will_paginate/collection.rb:96:in `create'
2513
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:106:in `to_a'
2514
+ activerecord (3.2.1) lib/active_record/relation/delegation.rb:6:in `each'
2515
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml:18:in `___sers_alban__ubymine_rojects_plugs_aslon_settings_app_views_admin_params_index_html_haml__4492901554210864373_70146474655700'
2516
+ actionpack (3.2.1) lib/action_view/template.rb:143:in `block in render'
2517
+ activesupport (3.2.1) lib/active_support/notifications.rb:125:in `instrument'
2518
+ actionpack (3.2.1) lib/action_view/template.rb:141:in `render'
2519
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:41:in `block (2 levels) in render_template'
2520
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2521
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2522
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2523
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2524
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2525
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:40:in `block in render_template'
2526
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:48:in `render_with_layout'
2527
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:39:in `render_template'
2528
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:12:in `render'
2529
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:36:in `render_template'
2530
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:17:in `render'
2531
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:109:in `_render_template'
2532
+ actionpack (3.2.1) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2533
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2534
+ actionpack (3.2.1) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2535
+ actionpack (3.2.1) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2536
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:88:in `render'
2537
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
2538
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2539
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2540
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
2541
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2542
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2543
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2544
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2545
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:39:in `render'
2546
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:214:in `aslon_render'
2547
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:116:in `index'
2548
+ actionpack (3.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2549
+ actionpack (3.2.1) lib/abstract_controller/base.rb:167:in `process_action'
2550
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2551
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2552
+ activesupport (3.2.1) lib/active_support/callbacks.rb:414:in `_run__748514626484749999__process_action__731597055608260857__callbacks'
2553
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2554
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2555
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2556
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
2557
+ actionpack (3.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2558
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2559
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2560
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2561
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2562
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2563
+ actionpack (3.2.1) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
2564
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2565
+ actionpack (3.2.1) lib/abstract_controller/base.rb:121:in `process'
2566
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
2567
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
2568
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2569
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
2570
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
2571
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
2572
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
2573
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
2574
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
2575
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
2576
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
2577
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2578
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2579
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2580
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2581
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
2582
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2583
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
2584
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2585
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2586
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2587
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
2588
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
2589
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2590
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__2133289785593040218__call__2345223901545553849__callbacks'
2591
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2592
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2593
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2594
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2595
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2596
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2597
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2598
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2599
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
2600
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
2601
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2602
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2603
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2604
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2605
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2606
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2607
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
2608
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
2609
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2610
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
2611
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2612
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2613
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2614
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2615
+
2616
+
2617
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.9ms)
2618
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
2619
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms)
2620
+
2621
+
2622
+ Started GET "/admin/params/" for 127.0.0.1 at 2012-02-01 23:13:27 +0100
2623
+ Processing by Admin::ParamsController#index as HTML
2624
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (9.7ms)
2625
+ Completed 500 Internal Server Error in 13ms
2626
+
2627
+ ActionView::Template::Error (Could not find table 'params'):
2628
+ 15:
2629
+ 16:
2630
+ 17: #accordion
2631
+ 18: - @admin_params.each do |p|
2632
+ 19: %h3
2633
+ 20: %a{:href=>"#"}=p.name
2634
+ 21: %div
2635
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:470:in `table_structure'
2636
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:351:in `columns'
2637
+ activerecord (3.2.1) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
2638
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `yield'
2639
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `default'
2640
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `columns'
2641
+ activerecord (3.2.1) lib/active_record/model_schema.rb:237:in `columns_hash'
2642
+ activerecord (3.2.1) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
2643
+ activerecord (3.2.1) lib/active_record/relation.rb:169:in `exec_queries'
2644
+ activerecord (3.2.1) lib/active_record/relation.rb:159:in `block in to_a'
2645
+ activerecord (3.2.1) lib/active_record/explain.rb:33:in `logging_query_plan'
2646
+ activerecord (3.2.1) lib/active_record/relation.rb:158:in `to_a'
2647
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:107:in `block in to_a'
2648
+ will_paginate (3.0.2) lib/will_paginate/collection.rb:96:in `create'
2649
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:106:in `to_a'
2650
+ activerecord (3.2.1) lib/active_record/relation/delegation.rb:6:in `each'
2651
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml:18:in `___sers_alban__ubymine_rojects_plugs_aslon_settings_app_views_admin_params_index_html_haml__4492901554210864373_70146474655700'
2652
+ actionpack (3.2.1) lib/action_view/template.rb:143:in `block in render'
2653
+ activesupport (3.2.1) lib/active_support/notifications.rb:125:in `instrument'
2654
+ actionpack (3.2.1) lib/action_view/template.rb:141:in `render'
2655
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:41:in `block (2 levels) in render_template'
2656
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2657
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2658
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2659
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2660
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2661
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:40:in `block in render_template'
2662
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:48:in `render_with_layout'
2663
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:39:in `render_template'
2664
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:12:in `render'
2665
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:36:in `render_template'
2666
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:17:in `render'
2667
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:109:in `_render_template'
2668
+ actionpack (3.2.1) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2669
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2670
+ actionpack (3.2.1) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2671
+ actionpack (3.2.1) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2672
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:88:in `render'
2673
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
2674
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2675
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2676
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
2677
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2678
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2679
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2680
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2681
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:39:in `render'
2682
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:214:in `aslon_render'
2683
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:116:in `index'
2684
+ actionpack (3.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2685
+ actionpack (3.2.1) lib/abstract_controller/base.rb:167:in `process_action'
2686
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2687
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2688
+ activesupport (3.2.1) lib/active_support/callbacks.rb:414:in `_run__748514626484749999__process_action__731597055608260857__callbacks'
2689
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2690
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2691
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2692
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
2693
+ actionpack (3.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2694
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2695
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2696
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2697
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2698
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2699
+ actionpack (3.2.1) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
2700
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2701
+ actionpack (3.2.1) lib/abstract_controller/base.rb:121:in `process'
2702
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
2703
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
2704
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2705
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
2706
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
2707
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
2708
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
2709
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
2710
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
2711
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
2712
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
2713
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2714
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2715
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2716
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2717
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
2718
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2719
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
2720
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2721
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2722
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2723
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
2724
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
2725
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2726
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__2133289785593040218__call__2345223901545553849__callbacks'
2727
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2728
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2729
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2730
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2731
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2732
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2733
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2734
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2735
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
2736
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
2737
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2738
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2739
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2740
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2741
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2742
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2743
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
2744
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
2745
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2746
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
2747
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2748
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2749
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2750
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2751
+
2752
+
2753
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.2ms)
2754
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
2755
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.0ms)
2756
+
2757
+
2758
+ Started GET "/admin/params/" for 127.0.0.1 at 2012-02-01 23:14:38 +0100
2759
+ Processing by Admin::ParamsController#index as HTML
2760
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (36.8ms)
2761
+ Completed 500 Internal Server Error in 67ms
2762
+
2763
+ ActionView::Template::Error (Could not find table 'params'):
2764
+ 15:
2765
+ 16:
2766
+ 17: #accordion
2767
+ 18: - @admin_params.each do |p|
2768
+ 19: %h3
2769
+ 20: %a{:href=>"#"}=p.name
2770
+ 21: %div
2771
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:470:in `table_structure'
2772
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:351:in `columns'
2773
+ activerecord (3.2.1) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
2774
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `yield'
2775
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `default'
2776
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `columns'
2777
+ activerecord (3.2.1) lib/active_record/model_schema.rb:237:in `columns_hash'
2778
+ activerecord (3.2.1) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
2779
+ activerecord (3.2.1) lib/active_record/relation.rb:169:in `exec_queries'
2780
+ activerecord (3.2.1) lib/active_record/relation.rb:159:in `block in to_a'
2781
+ activerecord (3.2.1) lib/active_record/explain.rb:33:in `logging_query_plan'
2782
+ activerecord (3.2.1) lib/active_record/relation.rb:158:in `to_a'
2783
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:107:in `block in to_a'
2784
+ will_paginate (3.0.2) lib/will_paginate/collection.rb:96:in `create'
2785
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:106:in `to_a'
2786
+ activerecord (3.2.1) lib/active_record/relation/delegation.rb:6:in `each'
2787
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml:18:in `___sers_alban__ubymine_rojects_plugs_aslon_settings_app_views_admin_params_index_html_haml___131541694793245343_70181833908820'
2788
+ actionpack (3.2.1) lib/action_view/template.rb:143:in `block in render'
2789
+ activesupport (3.2.1) lib/active_support/notifications.rb:125:in `instrument'
2790
+ actionpack (3.2.1) lib/action_view/template.rb:141:in `render'
2791
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:41:in `block (2 levels) in render_template'
2792
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2793
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2794
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2795
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2796
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2797
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:40:in `block in render_template'
2798
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:48:in `render_with_layout'
2799
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:39:in `render_template'
2800
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:12:in `render'
2801
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:36:in `render_template'
2802
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:17:in `render'
2803
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:109:in `_render_template'
2804
+ actionpack (3.2.1) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2805
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2806
+ actionpack (3.2.1) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2807
+ actionpack (3.2.1) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2808
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:88:in `render'
2809
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
2810
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2811
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2812
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
2813
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2814
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2815
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2816
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2817
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:39:in `render'
2818
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:214:in `aslon_render'
2819
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:116:in `index'
2820
+ actionpack (3.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2821
+ actionpack (3.2.1) lib/abstract_controller/base.rb:167:in `process_action'
2822
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2823
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2824
+ activesupport (3.2.1) lib/active_support/callbacks.rb:414:in `_run__458498800238289973__process_action__1575484800922588410__callbacks'
2825
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2826
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2827
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2828
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
2829
+ actionpack (3.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2830
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2831
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2832
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2833
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2834
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2835
+ actionpack (3.2.1) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
2836
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2837
+ actionpack (3.2.1) lib/abstract_controller/base.rb:121:in `process'
2838
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
2839
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
2840
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2841
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
2842
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
2843
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
2844
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
2845
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
2846
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
2847
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
2848
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
2849
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2850
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2851
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2852
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2853
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
2854
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2855
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
2856
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2857
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2858
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2859
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
2860
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
2861
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2862
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__3409712941013711358__call__643485136426127316__callbacks'
2863
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2864
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2865
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2866
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2867
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2868
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2869
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2870
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2871
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
2872
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
2873
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2874
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2875
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2876
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2877
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2878
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2879
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
2880
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
2881
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2882
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
2883
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2884
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2885
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2886
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2887
+
2888
+
2889
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.5ms)
2890
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
2891
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.7ms)
2892
+
2893
+
2894
+ Started GET "/admin/params/" for 127.0.0.1 at 2012-02-01 23:14:39 +0100
2895
+ Processing by Admin::ParamsController#index as HTML
2896
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (10.4ms)
2897
+ Completed 500 Internal Server Error in 14ms
2898
+
2899
+ ActionView::Template::Error (Could not find table 'params'):
2900
+ 15:
2901
+ 16:
2902
+ 17: #accordion
2903
+ 18: - @admin_params.each do |p|
2904
+ 19: %h3
2905
+ 20: %a{:href=>"#"}=p.name
2906
+ 21: %div
2907
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:470:in `table_structure'
2908
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:351:in `columns'
2909
+ activerecord (3.2.1) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
2910
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `yield'
2911
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `default'
2912
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `columns'
2913
+ activerecord (3.2.1) lib/active_record/model_schema.rb:237:in `columns_hash'
2914
+ activerecord (3.2.1) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
2915
+ activerecord (3.2.1) lib/active_record/relation.rb:169:in `exec_queries'
2916
+ activerecord (3.2.1) lib/active_record/relation.rb:159:in `block in to_a'
2917
+ activerecord (3.2.1) lib/active_record/explain.rb:33:in `logging_query_plan'
2918
+ activerecord (3.2.1) lib/active_record/relation.rb:158:in `to_a'
2919
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:107:in `block in to_a'
2920
+ will_paginate (3.0.2) lib/will_paginate/collection.rb:96:in `create'
2921
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:106:in `to_a'
2922
+ activerecord (3.2.1) lib/active_record/relation/delegation.rb:6:in `each'
2923
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml:18:in `___sers_alban__ubymine_rojects_plugs_aslon_settings_app_views_admin_params_index_html_haml___131541694793245343_70181833908820'
2924
+ actionpack (3.2.1) lib/action_view/template.rb:143:in `block in render'
2925
+ activesupport (3.2.1) lib/active_support/notifications.rb:125:in `instrument'
2926
+ actionpack (3.2.1) lib/action_view/template.rb:141:in `render'
2927
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:41:in `block (2 levels) in render_template'
2928
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
2929
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2930
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2931
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2932
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
2933
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:40:in `block in render_template'
2934
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:48:in `render_with_layout'
2935
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:39:in `render_template'
2936
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:12:in `render'
2937
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:36:in `render_template'
2938
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:17:in `render'
2939
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:109:in `_render_template'
2940
+ actionpack (3.2.1) lib/action_controller/metal/streaming.rb:225:in `_render_template'
2941
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:103:in `render_to_body'
2942
+ actionpack (3.2.1) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
2943
+ actionpack (3.2.1) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
2944
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:88:in `render'
2945
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
2946
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
2947
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
2948
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
2949
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
2950
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
2951
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
2952
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
2953
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:39:in `render'
2954
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:214:in `aslon_render'
2955
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:116:in `index'
2956
+ actionpack (3.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2957
+ actionpack (3.2.1) lib/abstract_controller/base.rb:167:in `process_action'
2958
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2959
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
2960
+ activesupport (3.2.1) lib/active_support/callbacks.rb:414:in `_run__458498800238289973__process_action__1575484800922588410__callbacks'
2961
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
2962
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
2963
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2964
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
2965
+ actionpack (3.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2966
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
2967
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
2968
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2969
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
2970
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
2971
+ actionpack (3.2.1) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
2972
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2973
+ actionpack (3.2.1) lib/abstract_controller/base.rb:121:in `process'
2974
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
2975
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
2976
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
2977
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
2978
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
2979
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
2980
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
2981
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
2982
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
2983
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
2984
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
2985
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
2986
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2987
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2988
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2989
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
2990
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2991
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
2992
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2993
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2994
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
2995
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
2996
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
2997
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2998
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__3409712941013711358__call__643485136426127316__callbacks'
2999
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
3000
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3001
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3002
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3003
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3004
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3005
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3006
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3007
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
3008
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
3009
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3010
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
3011
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
3012
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3013
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
3014
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
3015
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
3016
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
3017
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
3018
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
3019
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
3020
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
3021
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
3022
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
3023
+
3024
+
3025
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (6.0ms)
3026
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
3027
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms)
3028
+
3029
+
3030
+ Started GET "/admin/params/" for 127.0.0.1 at 2012-02-01 23:14:40 +0100
3031
+ Processing by Admin::ParamsController#index as HTML
3032
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (9.0ms)
3033
+ Completed 500 Internal Server Error in 12ms
3034
+
3035
+ ActionView::Template::Error (Could not find table 'params'):
3036
+ 15:
3037
+ 16:
3038
+ 17: #accordion
3039
+ 18: - @admin_params.each do |p|
3040
+ 19: %h3
3041
+ 20: %a{:href=>"#"}=p.name
3042
+ 21: %div
3043
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:470:in `table_structure'
3044
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:351:in `columns'
3045
+ activerecord (3.2.1) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
3046
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `yield'
3047
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `default'
3048
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `columns'
3049
+ activerecord (3.2.1) lib/active_record/model_schema.rb:237:in `columns_hash'
3050
+ activerecord (3.2.1) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
3051
+ activerecord (3.2.1) lib/active_record/relation.rb:169:in `exec_queries'
3052
+ activerecord (3.2.1) lib/active_record/relation.rb:159:in `block in to_a'
3053
+ activerecord (3.2.1) lib/active_record/explain.rb:33:in `logging_query_plan'
3054
+ activerecord (3.2.1) lib/active_record/relation.rb:158:in `to_a'
3055
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:107:in `block in to_a'
3056
+ will_paginate (3.0.2) lib/will_paginate/collection.rb:96:in `create'
3057
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:106:in `to_a'
3058
+ activerecord (3.2.1) lib/active_record/relation/delegation.rb:6:in `each'
3059
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml:18:in `___sers_alban__ubymine_rojects_plugs_aslon_settings_app_views_admin_params_index_html_haml___131541694793245343_70181833908820'
3060
+ actionpack (3.2.1) lib/action_view/template.rb:143:in `block in render'
3061
+ activesupport (3.2.1) lib/active_support/notifications.rb:125:in `instrument'
3062
+ actionpack (3.2.1) lib/action_view/template.rb:141:in `render'
3063
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:41:in `block (2 levels) in render_template'
3064
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3065
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
3066
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3067
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
3068
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3069
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:40:in `block in render_template'
3070
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:48:in `render_with_layout'
3071
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:39:in `render_template'
3072
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:12:in `render'
3073
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:36:in `render_template'
3074
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:17:in `render'
3075
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:109:in `_render_template'
3076
+ actionpack (3.2.1) lib/action_controller/metal/streaming.rb:225:in `_render_template'
3077
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:103:in `render_to_body'
3078
+ actionpack (3.2.1) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
3079
+ actionpack (3.2.1) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
3080
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:88:in `render'
3081
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
3082
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
3083
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
3084
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
3085
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
3086
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
3087
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
3088
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
3089
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:39:in `render'
3090
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:214:in `aslon_render'
3091
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:116:in `index'
3092
+ actionpack (3.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
3093
+ actionpack (3.2.1) lib/abstract_controller/base.rb:167:in `process_action'
3094
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
3095
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3096
+ activesupport (3.2.1) lib/active_support/callbacks.rb:414:in `_run__458498800238289973__process_action__1575484800922588410__callbacks'
3097
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
3098
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3099
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3100
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
3101
+ actionpack (3.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
3102
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3103
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
3104
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3105
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
3106
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3107
+ actionpack (3.2.1) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
3108
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3109
+ actionpack (3.2.1) lib/abstract_controller/base.rb:121:in `process'
3110
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
3111
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
3112
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3113
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
3114
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
3115
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
3116
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
3117
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
3118
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
3119
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
3120
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
3121
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
3122
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3123
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
3124
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
3125
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
3126
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3127
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
3128
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
3129
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
3130
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
3131
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
3132
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
3133
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3134
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__3409712941013711358__call__643485136426127316__callbacks'
3135
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
3136
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3137
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3138
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3139
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3140
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3141
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3142
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3143
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
3144
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
3145
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3146
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
3147
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
3148
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3149
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
3150
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
3151
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
3152
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
3153
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
3154
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
3155
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
3156
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
3157
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
3158
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
3159
+
3160
+
3161
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.7ms)
3162
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
3163
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.2ms)
3164
+
3165
+
3166
+ Started GET "/admin/params/" for 127.0.0.1 at 2012-02-01 23:14:40 +0100
3167
+ Processing by Admin::ParamsController#index as HTML
3168
+ Rendered /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml within layouts/application (8.3ms)
3169
+ Completed 500 Internal Server Error in 11ms
3170
+
3171
+ ActionView::Template::Error (Could not find table 'params'):
3172
+ 15:
3173
+ 16:
3174
+ 17: #accordion
3175
+ 18: - @admin_params.each do |p|
3176
+ 19: %h3
3177
+ 20: %a{:href=>"#"}=p.name
3178
+ 21: %div
3179
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:470:in `table_structure'
3180
+ activerecord (3.2.1) lib/active_record/connection_adapters/sqlite_adapter.rb:351:in `columns'
3181
+ activerecord (3.2.1) lib/active_record/connection_adapters/schema_cache.rb:12:in `block in initialize'
3182
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `yield'
3183
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `default'
3184
+ activerecord (3.2.1) lib/active_record/model_schema.rb:228:in `columns'
3185
+ activerecord (3.2.1) lib/active_record/model_schema.rb:237:in `columns_hash'
3186
+ activerecord (3.2.1) lib/active_record/locking/optimistic.rb:129:in `locking_enabled?'
3187
+ activerecord (3.2.1) lib/active_record/relation.rb:169:in `exec_queries'
3188
+ activerecord (3.2.1) lib/active_record/relation.rb:159:in `block in to_a'
3189
+ activerecord (3.2.1) lib/active_record/explain.rb:33:in `logging_query_plan'
3190
+ activerecord (3.2.1) lib/active_record/relation.rb:158:in `to_a'
3191
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:107:in `block in to_a'
3192
+ will_paginate (3.0.2) lib/will_paginate/collection.rb:96:in `create'
3193
+ will_paginate (3.0.2) lib/will_paginate/active_record.rb:106:in `to_a'
3194
+ activerecord (3.2.1) lib/active_record/relation/delegation.rb:6:in `each'
3195
+ /Users/alban/RubymineProjects/plugs/aslon_settings/app/views/admin/params/index.html.haml:18:in `___sers_alban__ubymine_rojects_plugs_aslon_settings_app_views_admin_params_index_html_haml___131541694793245343_70181833908820'
3196
+ actionpack (3.2.1) lib/action_view/template.rb:143:in `block in render'
3197
+ activesupport (3.2.1) lib/active_support/notifications.rb:125:in `instrument'
3198
+ actionpack (3.2.1) lib/action_view/template.rb:141:in `render'
3199
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:41:in `block (2 levels) in render_template'
3200
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `block in instrument'
3201
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
3202
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3203
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
3204
+ actionpack (3.2.1) lib/action_view/renderer/abstract_renderer.rb:38:in `instrument'
3205
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:40:in `block in render_template'
3206
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:48:in `render_with_layout'
3207
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:39:in `render_template'
3208
+ actionpack (3.2.1) lib/action_view/renderer/template_renderer.rb:12:in `render'
3209
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:36:in `render_template'
3210
+ actionpack (3.2.1) lib/action_view/renderer/renderer.rb:17:in `render'
3211
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:109:in `_render_template'
3212
+ actionpack (3.2.1) lib/action_controller/metal/streaming.rb:225:in `_render_template'
3213
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:103:in `render_to_body'
3214
+ actionpack (3.2.1) lib/action_controller/metal/renderers.rb:28:in `render_to_body'
3215
+ actionpack (3.2.1) lib/action_controller/metal/compatibility.rb:50:in `render_to_body'
3216
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:88:in `render'
3217
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
3218
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
3219
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
3220
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/benchmark.rb:310:in `realtime'
3221
+ activesupport (3.2.1) lib/active_support/core_ext/benchmark.rb:5:in `ms'
3222
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:40:in `block in render'
3223
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:83:in `cleanup_view_runtime'
3224
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
3225
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:39:in `render'
3226
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:214:in `aslon_render'
3227
+ /Users/alban/RubymineProjects/plugs/aslon_scaffold/lib/aslon_scaffold/aslon_scaffold.rb:116:in `index'
3228
+ actionpack (3.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
3229
+ actionpack (3.2.1) lib/abstract_controller/base.rb:167:in `process_action'
3230
+ actionpack (3.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
3231
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
3232
+ activesupport (3.2.1) lib/active_support/callbacks.rb:414:in `_run__458498800238289973__process_action__1575484800922588410__callbacks'
3233
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
3234
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
3235
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3236
+ actionpack (3.2.1) lib/abstract_controller/callbacks.rb:17:in `process_action'
3237
+ actionpack (3.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
3238
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
3239
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `block in instrument'
3240
+ activesupport (3.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3241
+ activesupport (3.2.1) lib/active_support/notifications.rb:123:in `instrument'
3242
+ actionpack (3.2.1) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
3243
+ actionpack (3.2.1) lib/action_controller/metal/params_wrapper.rb:205:in `process_action'
3244
+ activerecord (3.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3245
+ actionpack (3.2.1) lib/abstract_controller/base.rb:121:in `process'
3246
+ actionpack (3.2.1) lib/abstract_controller/rendering.rb:45:in `process'
3247
+ actionpack (3.2.1) lib/action_controller/metal.rb:203:in `dispatch'
3248
+ actionpack (3.2.1) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
3249
+ actionpack (3.2.1) lib/action_controller/metal.rb:246:in `block in action'
3250
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `call'
3251
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:66:in `dispatch'
3252
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:30:in `call'
3253
+ journey (1.0.1) lib/journey/router.rb:68:in `block in call'
3254
+ journey (1.0.1) lib/journey/router.rb:56:in `each'
3255
+ journey (1.0.1) lib/journey/router.rb:56:in `call'
3256
+ actionpack (3.2.1) lib/action_dispatch/routing/route_set.rb:589:in `call'
3257
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
3258
+ actionpack (3.2.1) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
3259
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
3260
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
3261
+ actionpack (3.2.1) lib/action_dispatch/middleware/head.rb:14:in `call'
3262
+ actionpack (3.2.1) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
3263
+ actionpack (3.2.1) lib/action_dispatch/middleware/flash.rb:242:in `call'
3264
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
3265
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
3266
+ actionpack (3.2.1) lib/action_dispatch/middleware/cookies.rb:338:in `call'
3267
+ activerecord (3.2.1) lib/active_record/query_cache.rb:64:in `call'
3268
+ activerecord (3.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:443:in `call'
3269
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
3270
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `_run__3409712941013711358__call__643485136426127316__callbacks'
3271
+ activesupport (3.2.1) lib/active_support/callbacks.rb:405:in `__run_callback'
3272
+ activesupport (3.2.1) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
3273
+ activesupport (3.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3274
+ actionpack (3.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3275
+ actionpack (3.2.1) lib/action_dispatch/middleware/reloader.rb:65:in `call'
3276
+ actionpack (3.2.1) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
3277
+ actionpack (3.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
3278
+ actionpack (3.2.1) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
3279
+ railties (3.2.1) lib/rails/rack/logger.rb:26:in `call_app'
3280
+ railties (3.2.1) lib/rails/rack/logger.rb:16:in `call'
3281
+ actionpack (3.2.1) lib/action_dispatch/middleware/request_id.rb:22:in `call'
3282
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
3283
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
3284
+ activesupport (3.2.1) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
3285
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
3286
+ actionpack (3.2.1) lib/action_dispatch/middleware/static.rb:53:in `call'
3287
+ railties (3.2.1) lib/rails/engine.rb:479:in `call'
3288
+ railties (3.2.1) lib/rails/application.rb:220:in `call'
3289
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
3290
+ railties (3.2.1) lib/rails/rack/log_tailer.rb:14:in `call'
3291
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
3292
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
3293
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
3294
+ /Users/alban/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
3295
+
3296
+
3297
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (3.3ms)
3298
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
3299
+ Rendered /Users/alban/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (36.9ms)