web-console-rails3 0.2.0

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 (86) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.markdown +40 -0
  4. data/Rakefile +48 -0
  5. data/app/assets/javascripts/web_console/application.js +4 -0
  6. data/app/assets/javascripts/web_console/console_sessions.js +24 -0
  7. data/app/assets/stylesheets/web_console/application.css +13 -0
  8. data/app/assets/stylesheets/web_console/console_sessions.css +8 -0
  9. data/app/controllers/web_console/application_controller.rb +17 -0
  10. data/app/controllers/web_console/console_sessions_controller.rb +23 -0
  11. data/app/helpers/web_console/application_helper.rb +4 -0
  12. data/app/helpers/web_console/console_session_helper.rb +4 -0
  13. data/app/models/web_console/console_session.rb +110 -0
  14. data/app/views/layouts/web_console/application.html.erb +14 -0
  15. data/app/views/web_console/console_sessions/index.html.erb +4 -0
  16. data/config/routes.rb +5 -0
  17. data/lib/web-console-rails3.rb +1 -0
  18. data/lib/web-console.rb +1 -0
  19. data/lib/web_console.rb +21 -0
  20. data/lib/web_console/backport/active_model.rb +26 -0
  21. data/lib/web_console/engine.rb +40 -0
  22. data/lib/web_console/fiber.rb +48 -0
  23. data/lib/web_console/repl.rb +59 -0
  24. data/lib/web_console/repl/dummy.rb +38 -0
  25. data/lib/web_console/repl/irb.rb +62 -0
  26. data/lib/web_console/stream.rb +30 -0
  27. data/lib/web_console/version.rb +3 -0
  28. data/test/controllers/web_console/console_sessions_controller_test.rb +57 -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 +38 -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/schema.rb +16 -0
  54. data/test/dummy/db/test.sqlite3 +0 -0
  55. data/test/dummy/log/development.log +588 -0
  56. data/test/dummy/log/test.log +2122 -0
  57. data/test/dummy/public/404.html +26 -0
  58. data/test/dummy/public/422.html +26 -0
  59. data/test/dummy/public/500.html +25 -0
  60. data/test/dummy/public/favicon.ico +0 -0
  61. data/test/dummy/script/rails +6 -0
  62. data/test/dummy/tmp/cache/assets/C9E/AD0/sprockets%2F4a42d8916f3fa47867445f696497a92c +0 -0
  63. data/test/dummy/tmp/cache/assets/CA7/D70/sprockets%2F3e9e32bbc8c81a93002555265a36a852 +0 -0
  64. data/test/dummy/tmp/cache/assets/CBD/6E0/sprockets%2F3293dfc0984076f0e8371a9e7640f4a8 +0 -0
  65. data/test/dummy/tmp/cache/assets/CD0/FC0/sprockets%2Fbb2777627d42a216f3d9ced4322040b3 +0 -0
  66. data/test/dummy/tmp/cache/assets/CFA/E30/sprockets%2F35be1d26565dc0310c29f1a5e2f62f10 +0 -0
  67. data/test/dummy/tmp/cache/assets/D1D/FD0/sprockets%2Fa4a5ffe670666ce3d8d59179905201ef +0 -0
  68. data/test/dummy/tmp/cache/assets/D21/6B0/sprockets%2F9e242803fe56d6305274ff7e6487deda +0 -0
  69. data/test/dummy/tmp/cache/assets/D29/380/sprockets%2F92f1a0450bc4bea3364a07be42b4f645 +0 -0
  70. data/test/dummy/tmp/cache/assets/D3E/380/sprockets%2F434d98c8380bb9daf43810155aaf68ba +0 -0
  71. data/test/dummy/tmp/cache/assets/D69/670/sprockets%2Fc6b4a05846fd1b98fe9252ecdd1601c0 +0 -0
  72. data/test/dummy/tmp/cache/assets/D90/B30/sprockets%2Fe03fe93eb7fe888c9d21ee62816596ff +0 -0
  73. data/test/dummy/tmp/cache/assets/D95/C40/sprockets%2F09cb0a274209abf0391cbfce6ee67b82 +0 -0
  74. data/test/dummy/tmp/cache/assets/D9F/400/sprockets%2F7f60332f86073dc8ed80b4c2a9dfcbe1 +0 -0
  75. data/test/dummy/tmp/cache/assets/DB3/0C0/sprockets%2F689fb998e2a7add3e00db88df254c87a +0 -0
  76. data/test/dummy/tmp/cache/assets/DD4/440/sprockets%2Fa33d646ac00d8bc87a4a496af6eed96f +0 -0
  77. data/test/dummy/tmp/cache/assets/E5A/C40/sprockets%2F164cfa0fd9eb1ec1acdfaa278c83e9c5 +0 -0
  78. data/test/helpers/web_console/console_session_helper_test.rb +6 -0
  79. data/test/models/console_session_test.rb +111 -0
  80. data/test/test_helper.rb +15 -0
  81. data/test/web_console/repl/dummy_test.rb +54 -0
  82. data/test/web_console/repl/irb_test.rb +156 -0
  83. data/test/web_console/repl_test.rb +15 -0
  84. data/test/web_console_test.rb +93 -0
  85. data/vendor/assets/javascripts/jquery.console.js +727 -0
  86. metadata +249 -0
File without changes
@@ -0,0 +1,588 @@
1
+ Connecting to database specified by database.yml
2
+ Connecting to database specified by database.yml
3
+  (0.3ms) select sqlite_version(*)
4
+  (190.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
5
+  (144.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
7
+ Connecting to database specified by database.yml
8
+  (0.1ms) SELECT version FROM "schema_migrations"
9
+  (183.1ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
10
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
+ Connecting to database specified by database.yml
12
+  (0.1ms) select sqlite_version(*)
13
+  (182.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
14
+  (144.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
15
+  (0.1ms) SELECT version FROM "schema_migrations"
16
+  (144.3ms) INSERT INTO "schema_migrations" (version) VALUES ('0')
17
+  (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
18
+
19
+
20
+ Started GET "/console" for 127.0.0.1 at 2013-08-05 15:09:17 +0300
21
+ Connecting to database specified by database.yml
22
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
23
+ Completed 500 Internal Server Error in 1ms
24
+
25
+ NoMethodError (undefined method `console' for #<Rails::Application::Configuration:0x007fb0cb58a3d0>):
26
+ railties (3.2.14) lib/rails/railtie/configuration.rb:85:in `method_missing'
27
+ /home/udf/Development/web-console-rails3/lib/web_console/repl.rb:47:in `default'
28
+ /home/udf/Development/web-console-rails3/app/models/web_console/console_session.rb:43:in `initialize'
29
+ /home/udf/Development/web-console-rails3/app/models/web_console/console_session.rb:38:in `new'
30
+ /home/udf/Development/web-console-rails3/app/models/web_console/console_session.rb:38:in `create'
31
+ /home/udf/Development/web-console-rails3/app/controllers/web_console/console_sessions_controller.rb:10:in `index'
32
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
33
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
34
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
35
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
36
+ activesupport (3.2.14) lib/active_support/callbacks.rb:414:in `_run__1427078602043802756__process_action__2288633262923340998__callbacks'
37
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
38
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
39
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
40
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
41
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
42
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
43
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
44
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
45
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
46
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
47
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
48
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
49
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
50
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
51
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
52
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
53
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
54
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
55
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
56
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
57
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
58
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
59
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
60
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
61
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
62
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
63
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
64
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
65
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
66
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
67
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
68
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
69
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
70
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
71
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
72
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
73
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
74
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
75
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
76
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
77
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
78
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
79
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1786339132122441013__call__2124749439959896052__callbacks'
80
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
81
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
82
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
83
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
84
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
85
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
86
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
87
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
88
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
89
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
90
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
91
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
92
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
93
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
94
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
95
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
96
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
97
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
98
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
99
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
100
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
101
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
102
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
103
+ /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
104
+ /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
105
+ /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
106
+
107
+
108
+ Rendered /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
109
+ Rendered /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
110
+ Rendered /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
111
+
112
+
113
+ Started GET "/console" for 127.0.0.1 at 2013-08-05 15:24:00 +0300
114
+ Connecting to database specified by database.yml
115
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
116
+ Rendered /home/udf/Development/web-console-rails3/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (28.1ms)
117
+ Compiled web_console/console_sessions.css (0ms) (pid 25078)
118
+ Compiled web_console/application.css (25ms) (pid 25078)
119
+ Compiled jquery.js (5ms) (pid 25078)
120
+ Compiled jquery_ujs.js (1ms) (pid 25078)
121
+ Compiled jquery.console.js (0ms) (pid 25078)
122
+ Compiled web_console/console_sessions.js (0ms) (pid 25078)
123
+ Compiled web_console/application.js (131ms) (pid 25078)
124
+ Completed 200 OK in 382ms (Views: 376.3ms | ActiveRecord: 0.0ms)
125
+
126
+
127
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-08-05 15:24:00 +0300
128
+ Served asset /web_console/console_sessions.css - 200 OK (12ms)
129
+
130
+
131
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-08-05 15:24:00 +0300
132
+ Served asset /web_console/application.css - 200 OK (4ms)
133
+
134
+
135
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-05 15:24:00 +0300
136
+ Served asset /jquery_ujs.js - 200 OK (3ms)
137
+
138
+
139
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-05 15:24:00 +0300
140
+ Served asset /jquery.js - 200 OK (4ms)
141
+
142
+
143
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-08-05 15:24:01 +0300
144
+ Served asset /jquery.console.js - 200 OK (2ms)
145
+
146
+
147
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-08-05 15:24:01 +0300
148
+ Served asset /web_console/console_sessions.js - 200 OK (1ms)
149
+
150
+
151
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-08-05 15:24:01 +0300
152
+ Served asset /web_console/application.js - 200 OK (10ms)
153
+
154
+
155
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:24:06 +0300
156
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
157
+ Parameters: {"input"=>"whats?", "id"=>"1"}
158
+ Completed 500 Internal Server Error in 1ms
159
+
160
+ NoMethodError (undefined method `permit' for #<ActiveSupport::HashWithIndifferentAccess:0x007f7ccf92efe8>):
161
+ /home/udf/Development/web-console-rails3/app/controllers/web_console/console_sessions_controller.rb:20:in `console_session_params'
162
+ /home/udf/Development/web-console-rails3/app/controllers/web_console/console_sessions_controller.rb:15:in `update'
163
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
164
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
165
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
166
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
167
+ activesupport (3.2.14) lib/active_support/callbacks.rb:414:in `_run__2463980424921000721__process_action__18522375557720111__callbacks'
168
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
169
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
170
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
171
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
172
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
173
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
174
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
175
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
176
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
177
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
178
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
179
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
180
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
181
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
182
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
183
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
184
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
185
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
186
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
187
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
188
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
189
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
190
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
191
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
192
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
193
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
194
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
195
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
196
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
197
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
198
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
199
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
200
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
201
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
202
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
203
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
204
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
205
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
206
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
207
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
208
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
209
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
210
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1092292678512864956__call__363474784729527315__callbacks'
211
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
212
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
213
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
214
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
215
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
216
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
217
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
218
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
219
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
220
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
221
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
222
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
223
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
224
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
225
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
226
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
227
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
228
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
229
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
230
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
231
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
232
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
233
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
234
+ /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
235
+ /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
236
+ /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
237
+
238
+
239
+ Rendered /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
240
+ Rendered /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
241
+ Rendered /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.3ms)
242
+
243
+
244
+ Started GET "/console" for 127.0.0.1 at 2013-08-05 15:25:15 +0300
245
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
246
+ Rendered /home/udf/Development/web-console-rails3/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (0.7ms)
247
+ Completed 200 OK in 16ms (Views: 8.0ms | ActiveRecord: 0.0ms)
248
+
249
+
250
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-08-05 15:25:18 +0300
251
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
252
+ Parameters: {"input"=>"methods", "id"=>"2"}
253
+ Completed 500 Internal Server Error in 0ms
254
+
255
+ NoMethodError (undefined method `permit' for #<ActiveSupport::HashWithIndifferentAccess:0x007f7ccfa6a510>):
256
+ /home/udf/Development/web-console-rails3/app/controllers/web_console/console_sessions_controller.rb:20:in `console_session_params'
257
+ /home/udf/Development/web-console-rails3/app/controllers/web_console/console_sessions_controller.rb:15:in `update'
258
+ actionpack (3.2.14) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
259
+ actionpack (3.2.14) lib/abstract_controller/base.rb:167:in `process_action'
260
+ actionpack (3.2.14) lib/action_controller/metal/rendering.rb:10:in `process_action'
261
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
262
+ activesupport (3.2.14) lib/active_support/callbacks.rb:414:in `_run__2463980424921000721__process_action__18522375557720111__callbacks'
263
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
264
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_process_action_callbacks'
265
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
266
+ actionpack (3.2.14) lib/abstract_controller/callbacks.rb:17:in `process_action'
267
+ actionpack (3.2.14) lib/action_controller/metal/rescue.rb:29:in `process_action'
268
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
269
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `block in instrument'
270
+ activesupport (3.2.14) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
271
+ activesupport (3.2.14) lib/active_support/notifications.rb:123:in `instrument'
272
+ actionpack (3.2.14) lib/action_controller/metal/instrumentation.rb:29:in `process_action'
273
+ actionpack (3.2.14) lib/action_controller/metal/params_wrapper.rb:207:in `process_action'
274
+ activerecord (3.2.14) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
275
+ actionpack (3.2.14) lib/abstract_controller/base.rb:121:in `process'
276
+ actionpack (3.2.14) lib/abstract_controller/rendering.rb:45:in `process'
277
+ actionpack (3.2.14) lib/action_controller/metal.rb:203:in `dispatch'
278
+ actionpack (3.2.14) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
279
+ actionpack (3.2.14) lib/action_controller/metal.rb:246:in `block in action'
280
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `call'
281
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
282
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:36:in `call'
283
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
284
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
285
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
286
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
287
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
288
+ railties (3.2.14) lib/rails/railtie/configurable.rb:30:in `method_missing'
289
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
290
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
291
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
292
+ actionpack (3.2.14) lib/action_dispatch/routing/route_set.rb:608:in `call'
293
+ actionpack (3.2.14) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
294
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
295
+ rack (1.4.5) lib/rack/conditionalget.rb:35:in `call'
296
+ actionpack (3.2.14) lib/action_dispatch/middleware/head.rb:14:in `call'
297
+ actionpack (3.2.14) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
298
+ actionpack (3.2.14) lib/action_dispatch/middleware/flash.rb:242:in `call'
299
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
300
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
301
+ actionpack (3.2.14) lib/action_dispatch/middleware/cookies.rb:341:in `call'
302
+ activerecord (3.2.14) lib/active_record/query_cache.rb:64:in `call'
303
+ activerecord (3.2.14) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
304
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
305
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `_run__1092292678512864956__call__363474784729527315__callbacks'
306
+ activesupport (3.2.14) lib/active_support/callbacks.rb:405:in `__run_callback'
307
+ activesupport (3.2.14) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
308
+ activesupport (3.2.14) lib/active_support/callbacks.rb:81:in `run_callbacks'
309
+ actionpack (3.2.14) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
310
+ actionpack (3.2.14) lib/action_dispatch/middleware/reloader.rb:65:in `call'
311
+ actionpack (3.2.14) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
312
+ actionpack (3.2.14) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
313
+ actionpack (3.2.14) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
314
+ railties (3.2.14) lib/rails/rack/logger.rb:32:in `call_app'
315
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `block in call'
316
+ activesupport (3.2.14) lib/active_support/tagged_logging.rb:22:in `tagged'
317
+ railties (3.2.14) lib/rails/rack/logger.rb:16:in `call'
318
+ actionpack (3.2.14) lib/action_dispatch/middleware/request_id.rb:22:in `call'
319
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
320
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
321
+ activesupport (3.2.14) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
322
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
323
+ actionpack (3.2.14) lib/action_dispatch/middleware/static.rb:63:in `call'
324
+ railties (3.2.14) lib/rails/engine.rb:484:in `call'
325
+ railties (3.2.14) lib/rails/application.rb:231:in `call'
326
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
327
+ railties (3.2.14) lib/rails/rack/log_tailer.rb:17:in `call'
328
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
329
+ /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
330
+ /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
331
+ /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
332
+
333
+
334
+ Rendered /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
335
+ Rendered /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
336
+ Rendered /home/udf/.rbenv/versions/2.0.0-p247/lib/ruby/gems/2.0.0/gems/actionpack-3.2.14/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms)
337
+
338
+
339
+ Started GET "/console" for 127.0.0.1 at 2013-08-05 15:40:13 +0300
340
+ Connecting to database specified by database.yml
341
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
342
+ Rendered /home/udf/Development/web-console-rails3/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (2.6ms)
343
+ Completed 200 OK in 98ms (Views: 91.5ms | ActiveRecord: 0.0ms)
344
+
345
+
346
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-05 15:40:14 +0300
347
+ Served asset /jquery.js - 304 Not Modified (11ms)
348
+
349
+
350
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-05 15:40:14 +0300
351
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
352
+
353
+
354
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-08-05 15:40:14 +0300
355
+ Served asset /jquery.console.js - 304 Not Modified (4ms)
356
+
357
+
358
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:40:17 +0300
359
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
360
+ Parameters: {"input"=>"methods", "id"=>"1"}
361
+ Unpermitted parameters: id
362
+ Completed 200 OK in 4ms (Views: 1.6ms | ActiveRecord: 0.0ms)
363
+ Connecting to database specified by database.yml
364
+
365
+
366
+ Started GET "/console" for 127.0.0.1 at 2013-08-05 15:48:12 +0300
367
+ Connecting to database specified by database.yml
368
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
369
+ Rendered /home/udf/Development/web-console-rails3/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (2.4ms)
370
+ Completed 200 OK in 73ms (Views: 66.2ms | ActiveRecord: 0.0ms)
371
+
372
+
373
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-05 15:48:12 +0300
374
+ Served asset /jquery.js - 304 Not Modified (11ms)
375
+
376
+
377
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-05 15:48:12 +0300
378
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
379
+
380
+
381
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-08-05 15:48:12 +0300
382
+ Served asset /jquery.console.js - 304 Not Modified (3ms)
383
+
384
+
385
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:48:14 +0300
386
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
387
+ Parameters: {"input"=>"methods", "id"=>"1"}
388
+ Unpermitted parameters: id
389
+ Completed 200 OK in 7ms (Views: 3.4ms | ActiveRecord: 0.0ms)
390
+ Connecting to database specified by database.yml
391
+ Connecting to database specified by database.yml
392
+ Connecting to database specified by database.yml
393
+
394
+
395
+ Started GET "/console" for 127.0.0.1 at 2013-08-05 15:57:49 +0300
396
+ Connecting to database specified by database.yml
397
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
398
+ Rendered /home/udf/Development/web-console-rails3/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (3.6ms)
399
+ Completed 200 OK in 78ms (Views: 72.2ms | ActiveRecord: 0.0ms)
400
+
401
+
402
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-08-05 15:57:50 +0300
403
+ Served asset /web_console/console_sessions.css - 304 Not Modified (13ms)
404
+
405
+
406
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-08-05 15:57:50 +0300
407
+ Served asset /web_console/application.css - 304 Not Modified (4ms)
408
+
409
+
410
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-08-05 15:57:50 +0300
411
+ Served asset /jquery.console.js - 304 Not Modified (3ms)
412
+
413
+
414
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-05 15:57:50 +0300
415
+ Served asset /jquery.js - 304 Not Modified (5ms)
416
+
417
+
418
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-05 15:57:50 +0300
419
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
420
+
421
+
422
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-08-05 15:57:50 +0300
423
+ Served asset /web_console/console_sessions.js - 304 Not Modified (3ms)
424
+
425
+
426
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-08-05 15:57:50 +0300
427
+ Served asset /web_console/application.js - 304 Not Modified (9ms)
428
+
429
+
430
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:57:52 +0300
431
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
432
+ Parameters: {"input"=>"methods", "id"=>"1"}
433
+ Unpermitted parameters: id
434
+ Completed 200 OK in 3ms (Views: 0.5ms | ActiveRecord: 0.0ms)
435
+
436
+
437
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:57:58 +0300
438
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
439
+ Parameters: {"input"=>"class A", "id"=>"1"}
440
+ Unpermitted parameters: id
441
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
442
+
443
+
444
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:58:00 +0300
445
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
446
+ Parameters: {"input"=>" def b", "id"=>"1"}
447
+ Unpermitted parameters: id
448
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
449
+
450
+
451
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:58:01 +0300
452
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
453
+ Parameters: {"input"=>" 2", "id"=>"1"}
454
+ Unpermitted parameters: id
455
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
456
+
457
+
458
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:58:02 +0300
459
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
460
+ Parameters: {"input"=>" end", "id"=>"1"}
461
+ Unpermitted parameters: id
462
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
463
+
464
+
465
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:58:03 +0300
466
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
467
+ Parameters: {"input"=>"end", "id"=>"1"}
468
+ Unpermitted parameters: id
469
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
470
+
471
+
472
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 15:58:05 +0300
473
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
474
+ Parameters: {"input"=>"A.new.b", "id"=>"1"}
475
+ Unpermitted parameters: id
476
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
477
+
478
+
479
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:00:30 +0300
480
+ Connecting to database specified by database.yml
481
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
482
+ Parameters: {"input"=>"methods", "id"=>"1"}
483
+ Completed 410 Gone in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
484
+
485
+
486
+ Started GET "/console" for 127.0.0.1 at 2013-08-05 16:04:27 +0300
487
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
488
+ Rendered /home/udf/Development/web-console-rails3/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (2.6ms)
489
+ Completed 200 OK in 78ms (Views: 69.2ms | ActiveRecord: 0.0ms)
490
+
491
+
492
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-08-05 16:04:27 +0300
493
+ Served asset /web_console/console_sessions.css - 304 Not Modified (7ms)
494
+
495
+
496
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-08-05 16:04:27 +0300
497
+ Served asset /jquery.js - 304 Not Modified (9ms)
498
+
499
+
500
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-08-05 16:04:27 +0300
501
+ Served asset /web_console/application.css - 304 Not Modified (5ms)
502
+
503
+
504
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-08-05 16:04:27 +0300
505
+ Served asset /jquery_ujs.js - 304 Not Modified (7ms)
506
+
507
+
508
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-08-05 16:04:27 +0300
509
+ Served asset /web_console/console_sessions.js - 304 Not Modified (2ms)
510
+
511
+
512
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-08-05 16:04:27 +0300
513
+ Served asset /jquery.console.js - 304 Not Modified (3ms)
514
+
515
+
516
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-08-05 16:04:27 +0300
517
+ Served asset /web_console/application.js - 304 Not Modified (10ms)
518
+
519
+
520
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:04:29 +0300
521
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
522
+ Parameters: {"input"=>"methods", "id"=>"1"}
523
+ Unpermitted parameters: id
524
+ Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 0.0ms)
525
+
526
+
527
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:04:33 +0300
528
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
529
+ Parameters: {"input"=>"console", "id"=>"1"}
530
+ Unpermitted parameters: id
531
+ Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.0ms)
532
+
533
+
534
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:04:37 +0300
535
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
536
+ Parameters: {"input"=>"Rails.application", "id"=>"1"}
537
+ Unpermitted parameters: id
538
+ Completed 200 OK in 57ms (Views: 12.8ms | ActiveRecord: 0.0ms)
539
+
540
+
541
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:04:59 +0300
542
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
543
+ Parameters: {"input"=>"Rails.application.config", "id"=>"1"}
544
+ Unpermitted parameters: id
545
+ Completed 200 OK in 6ms (Views: 2.6ms | ActiveRecord: 0.0ms)
546
+
547
+
548
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:05:05 +0300
549
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
550
+ Parameters: {"input"=>"Rails.application.config", "id"=>"1"}
551
+ Unpermitted parameters: id
552
+ Completed 200 OK in 5ms (Views: 2.0ms | ActiveRecord: 0.0ms)
553
+
554
+
555
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:05:07 +0300
556
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
557
+ Parameters: {"input"=>"require 'pp'", "id"=>"1"}
558
+ Unpermitted parameters: id
559
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.0ms)
560
+
561
+
562
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:05:10 +0300
563
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
564
+ Parameters: {"input"=>"pp Rails.application.config", "id"=>"1"}
565
+ Unpermitted parameters: id
566
+ Completed 200 OK in 18ms (Views: 1.9ms | ActiveRecord: 0.0ms)
567
+
568
+
569
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:05:18 +0300
570
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
571
+ Parameters: {"input"=>"pp Rails.application.config", "id"=>"1"}
572
+ Unpermitted parameters: id
573
+ Completed 200 OK in 14ms (Views: 3.2ms | ActiveRecord: 0.0ms)
574
+
575
+
576
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:05:22 +0300
577
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
578
+ Parameters: {"input"=>"pp Rails.application.config.inspect", "id"=>"1"}
579
+ Unpermitted parameters: id
580
+ Completed 200 OK in 14ms (Views: 6.5ms | ActiveRecord: 0.0ms)
581
+
582
+
583
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-08-05 16:05:28 +0300
584
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
585
+ Parameters: {"input"=>"pp Rails.application.config", "id"=>"1"}
586
+ Unpermitted parameters: id
587
+ Completed 200 OK in 22ms (Views: 3.6ms | ActiveRecord: 0.0ms)
588
+ Connecting to database specified by database.yml