web-console-pry 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (105) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.markdown +53 -0
  4. data/Rakefile +18 -0
  5. data/lib/web-console-pry.rb +1 -0
  6. data/lib/web_console/repl/pry/version.rb +7 -0
  7. data/lib/web_console/repl/pry.rb +57 -0
  8. data/lib/web_console_pry.rb +2 -0
  9. data/test/dummy/README.rdoc +28 -0
  10. data/test/dummy/Rakefile +6 -0
  11. data/test/dummy/app/assets/javascripts/application.js +13 -0
  12. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  13. data/test/dummy/app/controllers/application_controller.rb +5 -0
  14. data/test/dummy/app/helpers/application_helper.rb +2 -0
  15. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  16. data/test/dummy/bin/bundle +3 -0
  17. data/test/dummy/bin/rails +4 -0
  18. data/test/dummy/bin/rake +4 -0
  19. data/test/dummy/config/application.rb +14 -0
  20. data/test/dummy/config/boot.rb +5 -0
  21. data/test/dummy/config/database.yml +25 -0
  22. data/test/dummy/config/environment.rb +5 -0
  23. data/test/dummy/config/environments/development.rb +29 -0
  24. data/test/dummy/config/environments/production.rb +80 -0
  25. data/test/dummy/config/environments/test.rb +36 -0
  26. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  27. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  28. data/test/dummy/config/initializers/inflections.rb +16 -0
  29. data/test/dummy/config/initializers/mime_types.rb +5 -0
  30. data/test/dummy/config/initializers/secret_token.rb +12 -0
  31. data/test/dummy/config/initializers/session_store.rb +3 -0
  32. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  33. data/test/dummy/config/locales/en.yml +23 -0
  34. data/test/dummy/config/routes.rb +2 -0
  35. data/test/dummy/config.ru +4 -0
  36. data/test/dummy/db/development.sqlite3 +0 -0
  37. data/test/dummy/db/schema.rb +16 -0
  38. data/test/dummy/db/test.sqlite3 +0 -0
  39. data/test/dummy/log/development.log +2510 -0
  40. data/test/dummy/log/test.log +7423 -0
  41. data/test/dummy/public/404.html +58 -0
  42. data/test/dummy/public/422.html +58 -0
  43. data/test/dummy/public/500.html +57 -0
  44. data/test/dummy/public/favicon.ico +0 -0
  45. data/test/dummy/tmp/cache/assets/development/sprockets/013cd9dde061678035fd449602ed3dee +0 -0
  46. data/test/dummy/tmp/cache/assets/development/sprockets/0280bb38c5058cc31c4fcd8c392a5ec4 +0 -0
  47. data/test/dummy/tmp/cache/assets/development/sprockets/05bd7b24c0a86010ebb28b50ac7cad52 +0 -0
  48. data/test/dummy/tmp/cache/assets/development/sprockets/295d963a582a11a6815203dae93a7c79 +0 -0
  49. data/test/dummy/tmp/cache/assets/development/sprockets/3a37adb5ebd079cf67dae597b8c2e4f8 +0 -0
  50. data/test/dummy/tmp/cache/assets/development/sprockets/3a4877e6003e99861e71654d638a21e0 +0 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/3d01ce5517f0c10de9cf591640b37af2 +0 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/3da4ddb876e322e73b97548fa9066914 +0 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/4d7a5a07b0f10c39da3b16d1732c5d94 +0 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/4de538f1592e73a3a96aca4a204b0664 +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/521d63cea37a3868ee0cc4ecce244b5b +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/5adcb7569cdd03204d650e285f19351f +0 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/5b97a34a13e51ae5a7b579aba0cf3196 +0 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/5db5650c923557311407f58df98cd166 +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/654a1bde557d359b957dc0aa12b0dfa0 +0 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/67786c573ee3131d5b7efbca2d71bf44 +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/6b0a87b6bf10ebb5d7a6617baa1ad3dc +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/706cd58a61621d21c7d4963305ee4cb2 +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/71f57313d6c92f5483915a6c2d79a506 +0 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/7285cfef563d125008aca55469e09ca1 +0 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/7a52175179fd09c4064b0e33dc3dd08f +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/7ec0041a47c34b44e52e836c01454a1a +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/9de1a5b1420a794cf6084c393d47145e +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/a01a032614d49817ab20a9171b6bb7cd +0 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/a1534e0c08b73ad82c2edb8c364caa66 +0 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/a33d9f5eaf160e512ebae3d6d350179b +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/a59bd8ace61285ea7939759309f8490b +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/a810316ce75be3f56e46f562cbccba67 +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/a841a3af20a321912acfed87036438fb +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/ab9f090c432b5cbd32de0e877ec90fb2 +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/ac1e35855de82d64c80076a844243604 +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/b0741545b4917192ba7b5e803c2e323d +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/b3159b06164dd474ff8efc3c84aefbba +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/bbbe6a3ce382662666a355d708c83d2d +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/c18ba3c550539f8d42db587c7f552ddf +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/c52aa5859edffd7cd39a3a61dbacd79c +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/c60ffedbde9e80e6794ad1bd0896feb5 +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/ca53fb2717d5aac2f1c3939d9444fe3b +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/d6b37d10680a997662c379d0ff7cad27 +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/e1d89809967e81220dca66770c50aa67 +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/e3d5cafc071e8f9a8efc88fddf721947 +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/e783078d430c8e9abb61a79601230012 +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/f0872fadfe4f2aecfc09b8b8cb9e0649 +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/f4a21ed9cebe2c83a9d988504dc6720b +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/f4d45273ff5b44879dab0a16805f4309 +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/f9195f88e3e2d4e48c350ce84185809f +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/f9af7b613655292da7559109cfd010cf +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/f9fe1d844576802f622a9c329d4fbbdf +0 -0
  93. data/test/dummy/tmp/cache/assets/test/sprockets/0280bb38c5058cc31c4fcd8c392a5ec4 +0 -0
  94. data/test/dummy/tmp/cache/assets/test/sprockets/3a37adb5ebd079cf67dae597b8c2e4f8 +0 -0
  95. data/test/dummy/tmp/cache/assets/test/sprockets/5adcb7569cdd03204d650e285f19351f +0 -0
  96. data/test/dummy/tmp/cache/assets/test/sprockets/a841a3af20a321912acfed87036438fb +0 -0
  97. data/test/dummy/tmp/cache/assets/test/sprockets/bbbe6a3ce382662666a355d708c83d2d +0 -0
  98. data/test/dummy/tmp/cache/assets/test/sprockets/d6b37d10680a997662c379d0ff7cad27 +0 -0
  99. data/test/dummy/tmp/cache/assets/test/sprockets/e1d89809967e81220dca66770c50aa67 +0 -0
  100. data/test/dummy/tmp/cache/assets/test/sprockets/e3d5cafc071e8f9a8efc88fddf721947 +0 -0
  101. data/test/dummy/tmp/cache/assets/test/sprockets/f4a21ed9cebe2c83a9d988504dc6720b +0 -0
  102. data/test/dummy/tmp/cache/assets/test/sprockets/f4d45273ff5b44879dab0a16805f4309 +0 -0
  103. data/test/test_helper.rb +15 -0
  104. data/test/web_console/repl/pry_test.rb +77 -0
  105. metadata +301 -0
@@ -0,0 +1,2510 @@
1
+
2
+
3
+ Started GET "/" for 127.0.0.1 at 2013-06-24 14:56:20 +0300
4
+ Processing by Rails::WelcomeController#index as HTML
5
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/railties-4.0.0.rc1/lib/rails/templates/rails/welcome/index.html.erb (1.3ms)
6
+ Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/console" for 127.0.0.1 at 2013-06-24 14:56:26 +0300
10
+ Processing by WebConsole::ConsoleController#index as HTML
11
+ Rendered /home/udf/Development/web-console/app/views/web_console/console/index.html.erb within layouts/web_console/application (0.6ms)
12
+ Completed 200 OK in 78ms (Views: 77.3ms | ActiveRecord: 0.0ms)
13
+
14
+
15
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-06-24 14:56:26 +0300
16
+
17
+
18
+ Started GET "/assets/web_console/console.css?body=1" for 127.0.0.1 at 2013-06-24 14:56:26 +0300
19
+
20
+
21
+ Started GET "/assets/web_console/console.js?body=1" for 127.0.0.1 at 2013-06-24 14:56:26 +0300
22
+
23
+
24
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-06-24 14:56:26 +0300
25
+
26
+
27
+ Started GET "/console" for 127.0.0.1 at 2013-06-24 18:34:32 +0300
28
+ Processing by WebConsole::ConsoleController#index as HTML
29
+ Rendered /home/udf/Development/web-console/app/views/web_console/console/index.html.erb within layouts/web_console/application (1.0ms)
30
+ Completed 200 OK in 35ms (Views: 34.7ms | ActiveRecord: 0.0ms)
31
+
32
+
33
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-06-24 18:34:33 +0300
34
+
35
+
36
+ Started GET "/assets/web_console/console.js?body=1" for 127.0.0.1 at 2013-06-24 18:34:33 +0300
37
+
38
+
39
+ Started GET "/assets/web_console/console.css?body=1" for 127.0.0.1 at 2013-06-24 18:34:33 +0300
40
+
41
+
42
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-06-24 18:34:33 +0300
43
+
44
+
45
+ Started GET "/console" for 127.0.0.1 at 2013-06-24 18:39:01 +0300
46
+ Processing by WebConsole::ConsoleController#index as HTML
47
+ Rendered /home/udf/Development/web-console/app/views/web_console/console/index.html.erb within layouts/web_console/application (33.8ms)
48
+ Completed 200 OK in 68ms (Views: 67.9ms | ActiveRecord: 0.0ms)
49
+
50
+
51
+ Started GET "/console" for 127.0.0.1 at 2013-07-26 16:34:51 +0300
52
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
53
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (2.6ms)
54
+ Completed 200 OK in 747ms (Views: 743.2ms | ActiveRecord: 0.0ms)
55
+
56
+
57
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-26 16:34:52 +0300
58
+
59
+
60
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-26 16:34:52 +0300
61
+
62
+
63
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-26 16:34:52 +0300
64
+
65
+
66
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-26 16:34:52 +0300
67
+
68
+
69
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-26 16:34:52 +0300
70
+
71
+
72
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-26 16:34:52 +0300
73
+
74
+
75
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-26 16:34:52 +0300
76
+
77
+
78
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:34:58 +0300
79
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
80
+ Parameters: {"input"=>"class A", "id"=>"1"}
81
+ Unpermitted parameters: id
82
+ Completed 200 OK in 46ms (Views: 0.6ms | ActiveRecord: 0.0ms)
83
+
84
+
85
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:34:59 +0300
86
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
87
+ Parameters: {"input"=>"end", "id"=>"1"}
88
+ Unpermitted parameters: id
89
+ Completed 200 OK in 62ms (Views: 0.7ms | ActiveRecord: 0.0ms)
90
+
91
+
92
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:07 +0300
93
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
94
+ Parameters: {"input"=>"p :a", "id"=>"1"}
95
+ Unpermitted parameters: id
96
+ Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.0ms)
97
+
98
+
99
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:08 +0300
100
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
101
+ Parameters: {"input"=>"", "id"=>"1"}
102
+ Unpermitted parameters: id
103
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
104
+
105
+
106
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:08 +0300
107
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
108
+ Parameters: {"input"=>"", "id"=>"1"}
109
+ Unpermitted parameters: id
110
+ Completed 200 OK in 51ms (Views: 0.4ms | ActiveRecord: 0.0ms)
111
+
112
+
113
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:09 +0300
114
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
115
+ Parameters: {"input"=>"", "id"=>"1"}
116
+ Unpermitted parameters: id
117
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
118
+
119
+
120
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:11 +0300
121
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
122
+ Parameters: {"input"=>"p :a", "id"=>"1"}
123
+ Unpermitted parameters: id
124
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
125
+
126
+
127
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:12 +0300
128
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
129
+ Parameters: {"input"=>"p :a", "id"=>"1"}
130
+ Unpermitted parameters: id
131
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
132
+
133
+
134
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:12 +0300
135
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
136
+ Parameters: {"input"=>"p :a", "id"=>"1"}
137
+ Unpermitted parameters: id
138
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
139
+
140
+
141
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:13 +0300
142
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
143
+ Parameters: {"input"=>"p :a", "id"=>"1"}
144
+ Unpermitted parameters: id
145
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
146
+
147
+
148
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:13 +0300
149
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
150
+ Parameters: {"input"=>"p :a", "id"=>"1"}
151
+ Unpermitted parameters: id
152
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
153
+
154
+
155
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:13 +0300
156
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
157
+ Parameters: {"input"=>"p :a", "id"=>"1"}
158
+ Unpermitted parameters: id
159
+ Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.0ms)
160
+
161
+
162
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:14 +0300
163
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
164
+ Parameters: {"input"=>"p :a", "id"=>"1"}
165
+ Unpermitted parameters: id
166
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
167
+
168
+
169
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:14 +0300
170
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
171
+ Parameters: {"input"=>"p :a", "id"=>"1"}
172
+ Unpermitted parameters: id
173
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
174
+
175
+
176
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:14 +0300
177
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
178
+ Parameters: {"input"=>"p :a", "id"=>"1"}
179
+ Unpermitted parameters: id
180
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
181
+
182
+
183
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:14 +0300
184
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
185
+ Parameters: {"input"=>"p :a", "id"=>"1"}
186
+ Unpermitted parameters: id
187
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
188
+
189
+
190
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:14 +0300
191
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
192
+ Parameters: {"input"=>"p :a", "id"=>"1"}
193
+ Unpermitted parameters: id
194
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
195
+
196
+
197
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:15 +0300
198
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
199
+ Parameters: {"input"=>"p :a", "id"=>"1"}
200
+ Unpermitted parameters: id
201
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
202
+
203
+
204
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:15 +0300
205
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
206
+ Parameters: {"input"=>"p :a", "id"=>"1"}
207
+ Unpermitted parameters: id
208
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
209
+
210
+
211
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:15 +0300
212
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
213
+ Parameters: {"input"=>"p :a", "id"=>"1"}
214
+ Unpermitted parameters: id
215
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
216
+
217
+
218
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:15 +0300
219
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
220
+ Parameters: {"input"=>"p :a", "id"=>"1"}
221
+ Unpermitted parameters: id
222
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
223
+
224
+
225
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 16:35:17 +0300
226
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
227
+ Parameters: {"input"=>"p :a", "id"=>"1"}
228
+ Unpermitted parameters: id
229
+ Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms)
230
+
231
+
232
+ Started GET "/console" for 127.0.0.1 at 2013-07-26 16:35:19 +0300
233
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
234
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (0.8ms)
235
+ Completed 200 OK in 12ms (Views: 7.1ms | ActiveRecord: 0.0ms)
236
+
237
+
238
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-26 16:35:19 +0300
239
+
240
+
241
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-26 16:35:19 +0300
242
+
243
+
244
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:19 +0300
245
+
246
+
247
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
248
+
249
+
250
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
251
+
252
+
253
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
254
+
255
+
256
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
257
+
258
+
259
+ Started GET "/console" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
260
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
261
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (1.4ms)
262
+ Completed 200 OK in 11ms (Views: 7.6ms | ActiveRecord: 0.0ms)
263
+
264
+
265
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
266
+
267
+
268
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
269
+
270
+
271
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
272
+
273
+
274
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
275
+
276
+
277
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
278
+
279
+
280
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
281
+
282
+
283
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:20 +0300
284
+
285
+
286
+ Started GET "/console" for 127.0.0.1 at 2013-07-26 16:35:21 +0300
287
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
288
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (1.4ms)
289
+ Completed 200 OK in 13ms (Views: 9.2ms | ActiveRecord: 0.0ms)
290
+
291
+
292
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:21 +0300
293
+
294
+
295
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-26 16:35:21 +0300
296
+
297
+
298
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:21 +0300
299
+
300
+
301
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:21 +0300
302
+
303
+
304
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:21 +0300
305
+
306
+
307
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:21 +0300
308
+
309
+
310
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-26 16:35:21 +0300
311
+
312
+
313
+ Started GET "/console" for 127.0.0.1 at 2013-07-26 16:35:21 +0300
314
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
315
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (0.6ms)
316
+ Completed 200 OK in 67ms (Views: 5.8ms | ActiveRecord: 0.0ms)
317
+
318
+
319
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-26 16:35:22 +0300
320
+
321
+
322
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:22 +0300
323
+
324
+
325
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-26 16:35:22 +0300
326
+
327
+
328
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:22 +0300
329
+
330
+
331
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:22 +0300
332
+
333
+
334
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:22 +0300
335
+
336
+
337
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-26 16:35:22 +0300
338
+
339
+
340
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:24 +0300
341
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
342
+ Parameters: {"input"=>"p :a", "id"=>"5"}
343
+ Unpermitted parameters: id
344
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
345
+
346
+
347
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:26 +0300
348
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
349
+ Parameters: {"input"=>"p :a", "id"=>"5"}
350
+ Unpermitted parameters: id
351
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
352
+
353
+
354
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:27 +0300
355
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
356
+ Parameters: {"input"=>"p :a", "id"=>"5"}
357
+ Unpermitted parameters: id
358
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
359
+
360
+
361
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:29 +0300
362
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
363
+ Parameters: {"input"=>"p :a", "id"=>"5"}
364
+ Unpermitted parameters: id
365
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
366
+
367
+
368
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:31 +0300
369
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
370
+ Parameters: {"input"=>"class A", "id"=>"5"}
371
+ Unpermitted parameters: id
372
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
373
+
374
+
375
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:32 +0300
376
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
377
+ Parameters: {"input"=>"", "id"=>"5"}
378
+ Unpermitted parameters: id
379
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
380
+
381
+
382
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:32 +0300
383
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
384
+ Parameters: {"input"=>"", "id"=>"5"}
385
+ Unpermitted parameters: id
386
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
387
+
388
+
389
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:32 +0300
390
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
391
+ Parameters: {"input"=>"", "id"=>"5"}
392
+ Unpermitted parameters: id
393
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
394
+
395
+
396
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:32 +0300
397
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
398
+ Parameters: {"input"=>"", "id"=>"5"}
399
+ Unpermitted parameters: id
400
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
401
+
402
+
403
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:33 +0300
404
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
405
+ Parameters: {"input"=>"end", "id"=>"5"}
406
+ Unpermitted parameters: id
407
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
408
+
409
+
410
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:34 +0300
411
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
412
+ Parameters: {"input"=>"class B", "id"=>"5"}
413
+ Unpermitted parameters: id
414
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
415
+
416
+
417
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:35 +0300
418
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
419
+ Parameters: {"input"=>"", "id"=>"5"}
420
+ Unpermitted parameters: id
421
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
422
+
423
+
424
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:35 +0300
425
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
426
+ Parameters: {"input"=>"", "id"=>"5"}
427
+ Unpermitted parameters: id
428
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
429
+
430
+
431
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:35 +0300
432
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
433
+ Parameters: {"input"=>"", "id"=>"5"}
434
+ Unpermitted parameters: id
435
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
436
+
437
+
438
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:36 +0300
439
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
440
+ Parameters: {"input"=>"end", "id"=>"5"}
441
+ Unpermitted parameters: id
442
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
443
+
444
+
445
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:37 +0300
446
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
447
+ Parameters: {"input"=>"class A", "id"=>"5"}
448
+ Unpermitted parameters: id
449
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
450
+
451
+
452
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:38 +0300
453
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
454
+ Parameters: {"input"=>"", "id"=>"5"}
455
+ Unpermitted parameters: id
456
+ Completed 200 OK in 7ms (Views: 0.8ms | ActiveRecord: 0.0ms)
457
+
458
+
459
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:38 +0300
460
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
461
+ Parameters: {"input"=>"", "id"=>"5"}
462
+ Unpermitted parameters: id
463
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
464
+
465
+
466
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:38 +0300
467
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
468
+ Parameters: {"input"=>"", "id"=>"5"}
469
+ Unpermitted parameters: id
470
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
471
+
472
+
473
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:38 +0300
474
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
475
+ Parameters: {"input"=>"end", "id"=>"5"}
476
+ Unpermitted parameters: id
477
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
478
+
479
+
480
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:40 +0300
481
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
482
+ Parameters: {"input"=>"class A", "id"=>"5"}
483
+ Unpermitted parameters: id
484
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
485
+
486
+
487
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:40 +0300
488
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
489
+ Parameters: {"input"=>"", "id"=>"5"}
490
+ Unpermitted parameters: id
491
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
492
+
493
+
494
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:40 +0300
495
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
496
+ Parameters: {"input"=>"", "id"=>"5"}
497
+ Unpermitted parameters: id
498
+ Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
499
+
500
+
501
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:40 +0300
502
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
503
+ Parameters: {"input"=>"", "id"=>"5"}
504
+ Unpermitted parameters: id
505
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
506
+
507
+
508
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:41 +0300
509
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
510
+ Parameters: {"input"=>"end", "id"=>"5"}
511
+ Unpermitted parameters: id
512
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
513
+
514
+
515
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:44 +0300
516
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
517
+ Parameters: {"input"=>"class B", "id"=>"5"}
518
+ Unpermitted parameters: id
519
+ Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
520
+
521
+
522
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:45 +0300
523
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
524
+ Parameters: {"input"=>"end", "id"=>"5"}
525
+ Unpermitted parameters: id
526
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
527
+
528
+
529
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:46 +0300
530
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
531
+ Parameters: {"input"=>"", "id"=>"5"}
532
+ Unpermitted parameters: id
533
+ Completed 200 OK in 60ms (Views: 0.3ms | ActiveRecord: 0.0ms)
534
+
535
+
536
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:46 +0300
537
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
538
+ Parameters: {"input"=>"", "id"=>"5"}
539
+ Unpermitted parameters: id
540
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
541
+
542
+
543
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:46 +0300
544
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
545
+ Parameters: {"input"=>"", "id"=>"5"}
546
+ Unpermitted parameters: id
547
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
548
+
549
+
550
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:46 +0300
551
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
552
+ Parameters: {"input"=>"", "id"=>"5"}
553
+ Unpermitted parameters: id
554
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
555
+
556
+
557
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:46 +0300
558
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
559
+ Parameters: {"input"=>"", "id"=>"5"}
560
+ Unpermitted parameters: id
561
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
562
+
563
+
564
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:46 +0300
565
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
566
+ Parameters: {"input"=>"", "id"=>"5"}
567
+ Unpermitted parameters: id
568
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
569
+
570
+
571
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:47 +0300
572
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
573
+ Parameters: {"input"=>"", "id"=>"5"}
574
+ Unpermitted parameters: id
575
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
576
+
577
+
578
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:47 +0300
579
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
580
+ Parameters: {"input"=>"", "id"=>"5"}
581
+ Unpermitted parameters: id
582
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
583
+
584
+
585
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:47 +0300
586
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
587
+ Parameters: {"input"=>"", "id"=>"5"}
588
+ Unpermitted parameters: id
589
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
590
+
591
+
592
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:47 +0300
593
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
594
+ Parameters: {"input"=>"", "id"=>"5"}
595
+ Unpermitted parameters: id
596
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
597
+
598
+
599
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:47 +0300
600
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
601
+ Parameters: {"input"=>"", "id"=>"5"}
602
+ Unpermitted parameters: id
603
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
604
+
605
+
606
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:48 +0300
607
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
608
+ Parameters: {"input"=>"", "id"=>"5"}
609
+ Unpermitted parameters: id
610
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
611
+
612
+
613
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:48 +0300
614
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
615
+ Parameters: {"input"=>"", "id"=>"5"}
616
+ Unpermitted parameters: id
617
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
618
+
619
+
620
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:48 +0300
621
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
622
+ Parameters: {"input"=>"", "id"=>"5"}
623
+ Unpermitted parameters: id
624
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
625
+
626
+
627
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:48 +0300
628
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
629
+ Parameters: {"input"=>"", "id"=>"5"}
630
+ Unpermitted parameters: id
631
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
632
+
633
+
634
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:49 +0300
635
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
636
+ Parameters: {"input"=>"", "id"=>"5"}
637
+ Unpermitted parameters: id
638
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
639
+
640
+
641
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:49 +0300
642
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
643
+ Parameters: {"input"=>"", "id"=>"5"}
644
+ Unpermitted parameters: id
645
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
646
+
647
+
648
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:49 +0300
649
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
650
+ Parameters: {"input"=>"", "id"=>"5"}
651
+ Unpermitted parameters: id
652
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
653
+
654
+
655
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:50 +0300
656
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
657
+ Parameters: {"input"=>"", "id"=>"5"}
658
+ Unpermitted parameters: id
659
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
660
+
661
+
662
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:50 +0300
663
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
664
+ Parameters: {"input"=>"", "id"=>"5"}
665
+ Unpermitted parameters: id
666
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
667
+
668
+
669
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:50 +0300
670
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
671
+ Parameters: {"input"=>"", "id"=>"5"}
672
+ Unpermitted parameters: id
673
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
674
+
675
+
676
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:50 +0300
677
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
678
+ Parameters: {"input"=>"", "id"=>"5"}
679
+ Unpermitted parameters: id
680
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
681
+
682
+
683
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:51 +0300
684
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
685
+ Parameters: {"input"=>"", "id"=>"5"}
686
+ Unpermitted parameters: id
687
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
688
+
689
+
690
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:51 +0300
691
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
692
+ Parameters: {"input"=>"", "id"=>"5"}
693
+ Unpermitted parameters: id
694
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
695
+
696
+
697
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:51 +0300
698
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
699
+ Parameters: {"input"=>"", "id"=>"5"}
700
+ Unpermitted parameters: id
701
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
702
+
703
+
704
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:51 +0300
705
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
706
+ Parameters: {"input"=>"", "id"=>"5"}
707
+ Unpermitted parameters: id
708
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
709
+
710
+
711
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:51 +0300
712
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
713
+ Parameters: {"input"=>"", "id"=>"5"}
714
+ Unpermitted parameters: id
715
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
716
+
717
+
718
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:51 +0300
719
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
720
+ Parameters: {"input"=>"", "id"=>"5"}
721
+ Unpermitted parameters: id
722
+ Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
723
+
724
+
725
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:52 +0300
726
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
727
+ Parameters: {"input"=>"", "id"=>"5"}
728
+ Unpermitted parameters: id
729
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
730
+
731
+
732
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:52 +0300
733
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
734
+ Parameters: {"input"=>"", "id"=>"5"}
735
+ Unpermitted parameters: id
736
+ Completed 200 OK in 62ms (Views: 0.4ms | ActiveRecord: 0.0ms)
737
+
738
+
739
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:52 +0300
740
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
741
+ Parameters: {"input"=>"", "id"=>"5"}
742
+ Unpermitted parameters: id
743
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
744
+
745
+
746
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:53 +0300
747
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
748
+ Parameters: {"input"=>"", "id"=>"5"}
749
+ Unpermitted parameters: id
750
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
751
+
752
+
753
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:53 +0300
754
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
755
+ Parameters: {"input"=>"", "id"=>"5"}
756
+ Unpermitted parameters: id
757
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
758
+
759
+
760
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:53 +0300
761
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
762
+ Parameters: {"input"=>"", "id"=>"5"}
763
+ Unpermitted parameters: id
764
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
765
+
766
+
767
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:54 +0300
768
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
769
+ Parameters: {"input"=>"", "id"=>"5"}
770
+ Unpermitted parameters: id
771
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
772
+
773
+
774
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:54 +0300
775
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
776
+ Parameters: {"input"=>"", "id"=>"5"}
777
+ Unpermitted parameters: id
778
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
779
+
780
+
781
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:54 +0300
782
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
783
+ Parameters: {"input"=>"", "id"=>"5"}
784
+ Unpermitted parameters: id
785
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
786
+
787
+
788
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:54 +0300
789
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
790
+ Parameters: {"input"=>"", "id"=>"5"}
791
+ Unpermitted parameters: id
792
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
793
+
794
+
795
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:54 +0300
796
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
797
+ Parameters: {"input"=>"", "id"=>"5"}
798
+ Unpermitted parameters: id
799
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
800
+
801
+
802
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:55 +0300
803
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
804
+ Parameters: {"input"=>"", "id"=>"5"}
805
+ Unpermitted parameters: id
806
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
807
+
808
+
809
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:55 +0300
810
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
811
+ Parameters: {"input"=>"", "id"=>"5"}
812
+ Unpermitted parameters: id
813
+ Completed 200 OK in 7ms (Views: 0.3ms | ActiveRecord: 0.0ms)
814
+
815
+
816
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:55 +0300
817
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
818
+ Parameters: {"input"=>"", "id"=>"5"}
819
+ Unpermitted parameters: id
820
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
821
+
822
+
823
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:58 +0300
824
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
825
+ Parameters: {"input"=>"class A", "id"=>"5"}
826
+ Unpermitted parameters: id
827
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
828
+
829
+
830
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:35:59 +0300
831
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
832
+ Parameters: {"input"=>"end", "id"=>"5"}
833
+ Unpermitted parameters: id
834
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
835
+
836
+
837
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:01 +0300
838
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
839
+ Parameters: {"input"=>"class B", "id"=>"5"}
840
+ Unpermitted parameters: id
841
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
842
+
843
+
844
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:01 +0300
845
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
846
+ Parameters: {"input"=>"end", "id"=>"5"}
847
+ Unpermitted parameters: id
848
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
849
+
850
+
851
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:23 +0300
852
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
853
+ Parameters: {"input"=>"ls", "id"=>"5"}
854
+ Unpermitted parameters: id
855
+ Completed 200 OK in 16ms (Views: 0.3ms | ActiveRecord: 0.0ms)
856
+
857
+
858
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:31 +0300
859
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
860
+ Parameters: {"input"=>"cd WebConsole", "id"=>"5"}
861
+ Unpermitted parameters: id
862
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
863
+
864
+
865
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:31 +0300
866
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
867
+ Parameters: {"input"=>"ls", "id"=>"5"}
868
+ Unpermitted parameters: id
869
+ Completed 200 OK in 18ms (Views: 0.3ms | ActiveRecord: 0.0ms)
870
+
871
+
872
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:38 +0300
873
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
874
+ Parameters: {"input"=>"cd REPL", "id"=>"5"}
875
+ Unpermitted parameters: id
876
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
877
+
878
+
879
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:38 +0300
880
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
881
+ Parameters: {"input"=>"ls", "id"=>"5"}
882
+ Unpermitted parameters: id
883
+ Completed 200 OK in 19ms (Views: 0.4ms | ActiveRecord: 0.0ms)
884
+
885
+
886
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:44 +0300
887
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
888
+ Parameters: {"input"=>"cd Pry", "id"=>"5"}
889
+ Unpermitted parameters: id
890
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
891
+
892
+
893
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:44 +0300
894
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
895
+ Parameters: {"input"=>"ls", "id"=>"5"}
896
+ Unpermitted parameters: id
897
+ Completed 200 OK in 79ms (Views: 0.5ms | ActiveRecord: 0.0ms)
898
+
899
+
900
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:49 +0300
901
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
902
+ Parameters: {"input"=>"cat ", "id"=>"5"}
903
+ Unpermitted parameters: id
904
+ Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
905
+
906
+
907
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:52 +0300
908
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
909
+ Parameters: {"input"=>"cd ..", "id"=>"5"}
910
+ Unpermitted parameters: id
911
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
912
+
913
+
914
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:53 +0300
915
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
916
+ Parameters: {"input"=>"ls", "id"=>"5"}
917
+ Unpermitted parameters: id
918
+ Completed 200 OK in 15ms (Views: 0.3ms | ActiveRecord: 0.0ms)
919
+
920
+
921
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:36:55 +0300
922
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
923
+ Parameters: {"input"=>"cat Pry", "id"=>"5"}
924
+ Unpermitted parameters: id
925
+ Completed 200 OK in 8ms (Views: 0.6ms | ActiveRecord: 0.0ms)
926
+
927
+
928
+ Started PUT "/console/console_sessions/5" for 127.0.0.1 at 2013-07-26 16:38:19 +0300
929
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
930
+ Parameters: {"input"=>"show-method send-input", "id"=>"5"}
931
+ Unpermitted parameters: id
932
+ Completed 500 Internal Server Error in 1ms
933
+
934
+ FiberError (fiber called across threads):
935
+ /home/udf/Development/web-console-pry/lib/web_console/repl/pry.rb:32:in `resume'
936
+ /home/udf/Development/web-console-pry/lib/web_console/repl/pry.rb:32:in `block in send_input'
937
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/lib/web_console/stream.rb:15:in `block in threadsafe_capture!'
938
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/lib/web_console/stream.rb:7:in `synchronize'
939
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/lib/web_console/stream.rb:7:in `threadsafe_capture!'
940
+ /home/udf/Development/web-console-pry/lib/web_console/repl/pry.rb:32:in `send_input'
941
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/models/web_console/console_session.rb:96:in `block in populate_repl_attributes!'
942
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/models/web_console/console_session.rb:93:in `synchronize'
943
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/models/web_console/console_session.rb:93:in `populate_repl_attributes!'
944
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/models/web_console/console_session.rb:53:in `save'
945
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/controllers/web_console/console_sessions_controller.rb:15:in `update'
946
+ actionpack (4.0.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
947
+ actionpack (4.0.0) lib/abstract_controller/base.rb:189:in `process_action'
948
+ actionpack (4.0.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
949
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:18:in `block in process_action'
950
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__1174799893358404065__process_action__callbacks'
951
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
952
+ actionpack (4.0.0) lib/abstract_controller/callbacks.rb:17:in `process_action'
953
+ actionpack (4.0.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
954
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
955
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `block in instrument'
956
+ activesupport (4.0.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
957
+ activesupport (4.0.0) lib/active_support/notifications.rb:159:in `instrument'
958
+ actionpack (4.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
959
+ actionpack (4.0.0) lib/action_controller/metal/params_wrapper.rb:245:in `process_action'
960
+ activerecord (4.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
961
+ actionpack (4.0.0) lib/abstract_controller/base.rb:136:in `process'
962
+ actionpack (4.0.0) lib/abstract_controller/rendering.rb:44:in `process'
963
+ actionpack (4.0.0) lib/action_controller/metal.rb:195:in `dispatch'
964
+ actionpack (4.0.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
965
+ actionpack (4.0.0) lib/action_controller/metal.rb:231:in `block in action'
966
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `call'
967
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
968
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:48:in `call'
969
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
970
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
971
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
972
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
973
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
974
+ railties (4.0.0) lib/rails/railtie/configurable.rb:30:in `method_missing'
975
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:71:in `block in call'
976
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `each'
977
+ actionpack (4.0.0) lib/action_dispatch/journey/router.rb:59:in `call'
978
+ actionpack (4.0.0) lib/action_dispatch/routing/route_set.rb:655:in `call'
979
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
980
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
981
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
982
+ actionpack (4.0.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
983
+ actionpack (4.0.0) lib/action_dispatch/middleware/flash.rb:241:in `call'
984
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
985
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
986
+ actionpack (4.0.0) lib/action_dispatch/middleware/cookies.rb:486:in `call'
987
+ activerecord (4.0.0) lib/active_record/query_cache.rb:36:in `call'
988
+ activerecord (4.0.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:626:in `call'
989
+ activerecord (4.0.0) lib/active_record/migration.rb:369:in `call'
990
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
991
+ activesupport (4.0.0) lib/active_support/callbacks.rb:373:in `_run__2783186651195690969__call__callbacks'
992
+ activesupport (4.0.0) lib/active_support/callbacks.rb:80:in `run_callbacks'
993
+ actionpack (4.0.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
994
+ actionpack (4.0.0) lib/action_dispatch/middleware/reloader.rb:64:in `call'
995
+ actionpack (4.0.0) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
996
+ actionpack (4.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
997
+ actionpack (4.0.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
998
+ railties (4.0.0) lib/rails/rack/logger.rb:38:in `call_app'
999
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `block in call'
1000
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `block in tagged'
1001
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:25:in `tagged'
1002
+ activesupport (4.0.0) lib/active_support/tagged_logging.rb:67:in `tagged'
1003
+ railties (4.0.0) lib/rails/rack/logger.rb:21:in `call'
1004
+ actionpack (4.0.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1005
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1006
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1007
+ activesupport (4.0.0) lib/active_support/cache/strategy/local_cache.rb:83:in `call'
1008
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1009
+ actionpack (4.0.0) lib/action_dispatch/middleware/static.rb:64:in `call'
1010
+ railties (4.0.0) lib/rails/engine.rb:511:in `call'
1011
+ railties (4.0.0) lib/rails/application.rb:97:in `call'
1012
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1013
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1014
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1015
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1016
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1017
+ /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1018
+
1019
+
1020
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
1021
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1022
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
1023
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/actionpack-4.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (32.9ms)
1024
+
1025
+
1026
+ Started GET "/console" for 127.0.0.1 at 2013-07-26 17:18:20 +0300
1027
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
1028
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (2.6ms)
1029
+ Completed 200 OK in 253ms (Views: 249.1ms | ActiveRecord: 0.0ms)
1030
+
1031
+
1032
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-26 17:18:21 +0300
1033
+
1034
+
1035
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-26 17:18:21 +0300
1036
+
1037
+
1038
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-26 17:18:21 +0300
1039
+
1040
+
1041
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-26 17:18:21 +0300
1042
+
1043
+
1044
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-26 17:18:21 +0300
1045
+
1046
+
1047
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-26 17:18:21 +0300
1048
+
1049
+
1050
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-26 17:18:21 +0300
1051
+
1052
+
1053
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:34 +0300
1054
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1055
+ Parameters: {"input"=>"class A", "id"=>"1"}
1056
+ Unpermitted parameters: id
1057
+ Completed 200 OK in 67ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1058
+
1059
+
1060
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:35 +0300
1061
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1062
+ Parameters: {"input"=>"", "id"=>"1"}
1063
+ Unpermitted parameters: id
1064
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1065
+
1066
+
1067
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:35 +0300
1068
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1069
+ Parameters: {"input"=>"", "id"=>"1"}
1070
+ Unpermitted parameters: id
1071
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1072
+
1073
+
1074
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:35 +0300
1075
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1076
+ Parameters: {"input"=>"", "id"=>"1"}
1077
+ Unpermitted parameters: id
1078
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1079
+
1080
+
1081
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:35 +0300
1082
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1083
+ Parameters: {"input"=>"", "id"=>"1"}
1084
+ Unpermitted parameters: id
1085
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1086
+
1087
+
1088
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:35 +0300
1089
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1090
+ Parameters: {"input"=>"", "id"=>"1"}
1091
+ Unpermitted parameters: id
1092
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1093
+
1094
+
1095
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:36 +0300
1096
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1097
+ Parameters: {"input"=>"", "id"=>"1"}
1098
+ Unpermitted parameters: id
1099
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1100
+
1101
+
1102
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:36 +0300
1103
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1104
+ Parameters: {"input"=>"", "id"=>"1"}
1105
+ Unpermitted parameters: id
1106
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1107
+
1108
+
1109
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:37 +0300
1110
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1111
+ Parameters: {"input"=>"end", "id"=>"1"}
1112
+ Unpermitted parameters: id
1113
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1114
+
1115
+
1116
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:55 +0300
1117
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1118
+ Parameters: {"input"=>"class B", "id"=>"1"}
1119
+ Unpermitted parameters: id
1120
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1121
+
1122
+
1123
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:55 +0300
1124
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1125
+ Parameters: {"input"=>"", "id"=>"1"}
1126
+ Unpermitted parameters: id
1127
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1128
+
1129
+
1130
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:55 +0300
1131
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1132
+ Parameters: {"input"=>"", "id"=>"1"}
1133
+ Unpermitted parameters: id
1134
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1135
+
1136
+
1137
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:56 +0300
1138
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1139
+ Parameters: {"input"=>"\\", "id"=>"1"}
1140
+ Unpermitted parameters: id
1141
+ Completed 200 OK in 6ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1142
+
1143
+
1144
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:56 +0300
1145
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1146
+ Parameters: {"input"=>"", "id"=>"1"}
1147
+ Unpermitted parameters: id
1148
+ Completed 200 OK in 7ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1149
+
1150
+
1151
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:56 +0300
1152
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1153
+ Parameters: {"input"=>"", "id"=>"1"}
1154
+ Unpermitted parameters: id
1155
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1156
+
1157
+
1158
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:56 +0300
1159
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1160
+ Parameters: {"input"=>"", "id"=>"1"}
1161
+ Unpermitted parameters: id
1162
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1163
+
1164
+
1165
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:57 +0300
1166
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1167
+ Parameters: {"input"=>"", "id"=>"1"}
1168
+ Unpermitted parameters: id
1169
+ Completed 200 OK in 53ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1170
+
1171
+
1172
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:57 +0300
1173
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1174
+ Parameters: {"input"=>"", "id"=>"1"}
1175
+ Unpermitted parameters: id
1176
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1177
+
1178
+
1179
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:57 +0300
1180
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1181
+ Parameters: {"input"=>"", "id"=>"1"}
1182
+ Unpermitted parameters: id
1183
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1184
+
1185
+
1186
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:57 +0300
1187
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1188
+ Parameters: {"input"=>"", "id"=>"1"}
1189
+ Unpermitted parameters: id
1190
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1191
+
1192
+
1193
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:57 +0300
1194
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1195
+ Parameters: {"input"=>"", "id"=>"1"}
1196
+ Unpermitted parameters: id
1197
+ Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1198
+
1199
+
1200
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:57 +0300
1201
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1202
+ Parameters: {"input"=>"", "id"=>"1"}
1203
+ Unpermitted parameters: id
1204
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1205
+
1206
+
1207
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:57 +0300
1208
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1209
+ Parameters: {"input"=>"", "id"=>"1"}
1210
+ Unpermitted parameters: id
1211
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1212
+
1213
+
1214
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:58 +0300
1215
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1216
+ Parameters: {"input"=>"", "id"=>"1"}
1217
+ Unpermitted parameters: id
1218
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1219
+
1220
+
1221
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:58 +0300
1222
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1223
+ Parameters: {"input"=>"", "id"=>"1"}
1224
+ Unpermitted parameters: id
1225
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1226
+
1227
+
1228
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:58 +0300
1229
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1230
+ Parameters: {"input"=>"", "id"=>"1"}
1231
+ Unpermitted parameters: id
1232
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1233
+
1234
+
1235
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:58 +0300
1236
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1237
+ Parameters: {"input"=>"", "id"=>"1"}
1238
+ Unpermitted parameters: id
1239
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1240
+
1241
+
1242
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:58 +0300
1243
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1244
+ Parameters: {"input"=>"", "id"=>"1"}
1245
+ Unpermitted parameters: id
1246
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1247
+
1248
+
1249
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:58 +0300
1250
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1251
+ Parameters: {"input"=>"", "id"=>"1"}
1252
+ Unpermitted parameters: id
1253
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1254
+
1255
+
1256
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:59 +0300
1257
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1258
+ Parameters: {"input"=>"", "id"=>"1"}
1259
+ Unpermitted parameters: id
1260
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1261
+
1262
+
1263
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:59 +0300
1264
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1265
+ Parameters: {"input"=>"", "id"=>"1"}
1266
+ Unpermitted parameters: id
1267
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1268
+
1269
+
1270
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:59 +0300
1271
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1272
+ Parameters: {"input"=>"", "id"=>"1"}
1273
+ Unpermitted parameters: id
1274
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1275
+
1276
+
1277
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:59 +0300
1278
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1279
+ Parameters: {"input"=>"", "id"=>"1"}
1280
+ Unpermitted parameters: id
1281
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1282
+
1283
+
1284
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:18:59 +0300
1285
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1286
+ Parameters: {"input"=>"", "id"=>"1"}
1287
+ Unpermitted parameters: id
1288
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1289
+
1290
+
1291
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:19:00 +0300
1292
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1293
+ Parameters: {"input"=>"", "id"=>"1"}
1294
+ Unpermitted parameters: id
1295
+ Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1296
+
1297
+
1298
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:19:00 +0300
1299
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1300
+ Parameters: {"input"=>"", "id"=>"1"}
1301
+ Unpermitted parameters: id
1302
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1303
+
1304
+
1305
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:19:00 +0300
1306
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1307
+ Parameters: {"input"=>"", "id"=>"1"}
1308
+ Unpermitted parameters: id
1309
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1310
+
1311
+
1312
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:19:01 +0300
1313
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1314
+ Parameters: {"input"=>"end", "id"=>"1"}
1315
+ Unpermitted parameters: id
1316
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1317
+
1318
+
1319
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:19:05 +0300
1320
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1321
+ Parameters: {"input"=>"def a", "id"=>"1"}
1322
+ Unpermitted parameters: id
1323
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1324
+
1325
+
1326
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:19:07 +0300
1327
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1328
+ Parameters: {"input"=>" end", "id"=>"1"}
1329
+ Unpermitted parameters: id
1330
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1331
+
1332
+
1333
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:19:09 +0300
1334
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1335
+ Parameters: {"input"=>"def", "id"=>"1"}
1336
+ Unpermitted parameters: id
1337
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1338
+
1339
+
1340
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:19:10 +0300
1341
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1342
+ Parameters: {"input"=>" a", "id"=>"1"}
1343
+ Unpermitted parameters: id
1344
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1345
+
1346
+
1347
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:19:12 +0300
1348
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1349
+ Parameters: {"input"=>"end", "id"=>"1"}
1350
+ Unpermitted parameters: id
1351
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1352
+
1353
+
1354
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:46 +0300
1355
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1356
+ Parameters: {"input"=>"", "id"=>"1"}
1357
+ Unpermitted parameters: id
1358
+ Completed 200 OK in 15ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1359
+
1360
+
1361
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:46 +0300
1362
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1363
+ Parameters: {"input"=>"", "id"=>"1"}
1364
+ Unpermitted parameters: id
1365
+ Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1366
+
1367
+
1368
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:46 +0300
1369
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1370
+ Parameters: {"input"=>"", "id"=>"1"}
1371
+ Unpermitted parameters: id
1372
+ Completed 200 OK in 56ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1373
+
1374
+
1375
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:46 +0300
1376
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1377
+ Parameters: {"input"=>"", "id"=>"1"}
1378
+ Unpermitted parameters: id
1379
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1380
+
1381
+
1382
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:47 +0300
1383
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1384
+ Parameters: {"input"=>"", "id"=>"1"}
1385
+ Unpermitted parameters: id
1386
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1387
+
1388
+
1389
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:47 +0300
1390
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1391
+ Parameters: {"input"=>"", "id"=>"1"}
1392
+ Unpermitted parameters: id
1393
+ Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1394
+
1395
+
1396
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:47 +0300
1397
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1398
+ Parameters: {"input"=>"", "id"=>"1"}
1399
+ Unpermitted parameters: id
1400
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1401
+
1402
+
1403
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:47 +0300
1404
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1405
+ Parameters: {"input"=>"", "id"=>"1"}
1406
+ Unpermitted parameters: id
1407
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1408
+
1409
+
1410
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:47 +0300
1411
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1412
+ Parameters: {"input"=>"", "id"=>"1"}
1413
+ Unpermitted parameters: id
1414
+ Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1415
+
1416
+
1417
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:47 +0300
1418
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1419
+ Parameters: {"input"=>"", "id"=>"1"}
1420
+ Unpermitted parameters: id
1421
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1422
+
1423
+
1424
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:48 +0300
1425
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1426
+ Parameters: {"input"=>"", "id"=>"1"}
1427
+ Unpermitted parameters: id
1428
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1429
+
1430
+
1431
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:48 +0300
1432
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1433
+ Parameters: {"input"=>"", "id"=>"1"}
1434
+ Unpermitted parameters: id
1435
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1436
+
1437
+
1438
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:48 +0300
1439
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1440
+ Parameters: {"input"=>"", "id"=>"1"}
1441
+ Unpermitted parameters: id
1442
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1443
+
1444
+
1445
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:48 +0300
1446
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1447
+ Parameters: {"input"=>"", "id"=>"1"}
1448
+ Unpermitted parameters: id
1449
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1450
+
1451
+
1452
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:48 +0300
1453
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1454
+ Parameters: {"input"=>"", "id"=>"1"}
1455
+ Unpermitted parameters: id
1456
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1457
+
1458
+
1459
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:48 +0300
1460
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1461
+ Parameters: {"input"=>"", "id"=>"1"}
1462
+ Unpermitted parameters: id
1463
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1464
+
1465
+
1466
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:48 +0300
1467
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1468
+ Parameters: {"input"=>"", "id"=>"1"}
1469
+ Unpermitted parameters: id
1470
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1471
+
1472
+
1473
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:48 +0300
1474
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1475
+ Parameters: {"input"=>"", "id"=>"1"}
1476
+ Unpermitted parameters: id
1477
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1478
+
1479
+
1480
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:48 +0300
1481
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1482
+ Parameters: {"input"=>"", "id"=>"1"}
1483
+ Unpermitted parameters: id
1484
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1485
+
1486
+
1487
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:50 +0300
1488
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1489
+ Parameters: {"input"=>"class C", "id"=>"1"}
1490
+ Unpermitted parameters: id
1491
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1492
+
1493
+
1494
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:50 +0300
1495
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1496
+ Parameters: {"input"=>"", "id"=>"1"}
1497
+ Unpermitted parameters: id
1498
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1499
+
1500
+
1501
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:50 +0300
1502
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1503
+ Parameters: {"input"=>"", "id"=>"1"}
1504
+ Unpermitted parameters: id
1505
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1506
+
1507
+
1508
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:50 +0300
1509
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1510
+ Parameters: {"input"=>"", "id"=>"1"}
1511
+ Unpermitted parameters: id
1512
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1513
+
1514
+
1515
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:50 +0300
1516
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1517
+ Parameters: {"input"=>"", "id"=>"1"}
1518
+ Unpermitted parameters: id
1519
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1520
+
1521
+
1522
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:50 +0300
1523
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1524
+ Parameters: {"input"=>"", "id"=>"1"}
1525
+ Unpermitted parameters: id
1526
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1527
+
1528
+
1529
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:50 +0300
1530
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1531
+ Parameters: {"input"=>"", "id"=>"1"}
1532
+ Unpermitted parameters: id
1533
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1534
+
1535
+
1536
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1537
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1538
+ Parameters: {"input"=>"", "id"=>"1"}
1539
+ Unpermitted parameters: id
1540
+ Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1541
+
1542
+
1543
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1544
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1545
+ Parameters: {"input"=>"", "id"=>"1"}
1546
+ Unpermitted parameters: id
1547
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1548
+
1549
+
1550
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1551
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1552
+ Parameters: {"input"=>"", "id"=>"1"}
1553
+ Unpermitted parameters: id
1554
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1555
+
1556
+
1557
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1558
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1559
+ Parameters: {"input"=>"", "id"=>"1"}
1560
+ Unpermitted parameters: id
1561
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1562
+
1563
+
1564
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1565
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1566
+ Parameters: {"input"=>"", "id"=>"1"}
1567
+ Unpermitted parameters: id
1568
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1569
+
1570
+
1571
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1572
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1573
+ Parameters: {"input"=>"", "id"=>"1"}
1574
+ Unpermitted parameters: id
1575
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1576
+
1577
+
1578
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1579
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1580
+ Parameters: {"input"=>"", "id"=>"1"}
1581
+ Unpermitted parameters: id
1582
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1583
+
1584
+
1585
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1586
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1587
+ Parameters: {"input"=>"", "id"=>"1"}
1588
+ Unpermitted parameters: id
1589
+ Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1590
+
1591
+
1592
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1593
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1594
+ Parameters: {"input"=>"", "id"=>"1"}
1595
+ Unpermitted parameters: id
1596
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1597
+
1598
+
1599
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:51 +0300
1600
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1601
+ Parameters: {"input"=>"", "id"=>"1"}
1602
+ Unpermitted parameters: id
1603
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1604
+
1605
+
1606
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:52 +0300
1607
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1608
+ Parameters: {"input"=>"", "id"=>"1"}
1609
+ Unpermitted parameters: id
1610
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1611
+
1612
+
1613
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:22:52 +0300
1614
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1615
+ Parameters: {"input"=>"end", "id"=>"1"}
1616
+ Unpermitted parameters: id
1617
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1618
+
1619
+
1620
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:51 +0300
1621
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1622
+ Parameters: {"input"=>"", "id"=>"1"}
1623
+ Unpermitted parameters: id
1624
+ Completed 200 OK in 9ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1625
+
1626
+
1627
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:51 +0300
1628
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1629
+ Parameters: {"input"=>"", "id"=>"1"}
1630
+ Unpermitted parameters: id
1631
+ Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1632
+
1633
+
1634
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:51 +0300
1635
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1636
+ Parameters: {"input"=>"", "id"=>"1"}
1637
+ Unpermitted parameters: id
1638
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1639
+
1640
+
1641
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:52 +0300
1642
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1643
+ Parameters: {"input"=>"", "id"=>"1"}
1644
+ Unpermitted parameters: id
1645
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1646
+
1647
+
1648
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:52 +0300
1649
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1650
+ Parameters: {"input"=>"", "id"=>"1"}
1651
+ Unpermitted parameters: id
1652
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1653
+
1654
+
1655
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:52 +0300
1656
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1657
+ Parameters: {"input"=>"", "id"=>"1"}
1658
+ Unpermitted parameters: id
1659
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1660
+
1661
+
1662
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:52 +0300
1663
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1664
+ Parameters: {"input"=>"", "id"=>"1"}
1665
+ Unpermitted parameters: id
1666
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1667
+
1668
+
1669
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:52 +0300
1670
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1671
+ Parameters: {"input"=>"", "id"=>"1"}
1672
+ Unpermitted parameters: id
1673
+ Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1674
+
1675
+
1676
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:53 +0300
1677
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1678
+ Parameters: {"input"=>"", "id"=>"1"}
1679
+ Unpermitted parameters: id
1680
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1681
+
1682
+
1683
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:53 +0300
1684
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1685
+ Parameters: {"input"=>"", "id"=>"1"}
1686
+ Unpermitted parameters: id
1687
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1688
+
1689
+
1690
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:53 +0300
1691
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1692
+ Parameters: {"input"=>"", "id"=>"1"}
1693
+ Unpermitted parameters: id
1694
+ Completed 200 OK in 7ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1695
+
1696
+
1697
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:53 +0300
1698
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1699
+ Parameters: {"input"=>"", "id"=>"1"}
1700
+ Unpermitted parameters: id
1701
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1702
+
1703
+
1704
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:55 +0300
1705
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1706
+ Parameters: {"input"=>"B.new", "id"=>"1"}
1707
+ Unpermitted parameters: id
1708
+ Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1709
+
1710
+
1711
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:32:59 +0300
1712
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1713
+ Parameters: {"input"=>"Whootz", "id"=>"1"}
1714
+ Unpermitted parameters: id
1715
+ Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1716
+
1717
+
1718
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:08 +0300
1719
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1720
+ Parameters: {"input"=>"class C", "id"=>"1"}
1721
+ Unpermitted parameters: id
1722
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1723
+
1724
+
1725
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:08 +0300
1726
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1727
+ Parameters: {"input"=>"", "id"=>"1"}
1728
+ Unpermitted parameters: id
1729
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1730
+
1731
+
1732
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:08 +0300
1733
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1734
+ Parameters: {"input"=>"", "id"=>"1"}
1735
+ Unpermitted parameters: id
1736
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1737
+
1738
+
1739
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:08 +0300
1740
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1741
+ Parameters: {"input"=>"", "id"=>"1"}
1742
+ Unpermitted parameters: id
1743
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1744
+
1745
+
1746
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:08 +0300
1747
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1748
+ Parameters: {"input"=>"", "id"=>"1"}
1749
+ Unpermitted parameters: id
1750
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1751
+
1752
+
1753
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:08 +0300
1754
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1755
+ Parameters: {"input"=>"", "id"=>"1"}
1756
+ Unpermitted parameters: id
1757
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1758
+
1759
+
1760
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1761
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1762
+ Parameters: {"input"=>"", "id"=>"1"}
1763
+ Unpermitted parameters: id
1764
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1765
+
1766
+
1767
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1768
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1769
+ Parameters: {"input"=>"", "id"=>"1"}
1770
+ Unpermitted parameters: id
1771
+ Completed 200 OK in 62ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1772
+
1773
+
1774
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1775
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1776
+ Parameters: {"input"=>"", "id"=>"1"}
1777
+ Unpermitted parameters: id
1778
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1779
+
1780
+
1781
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1782
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1783
+ Parameters: {"input"=>"", "id"=>"1"}
1784
+ Unpermitted parameters: id
1785
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1786
+
1787
+
1788
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1789
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1790
+ Parameters: {"input"=>"", "id"=>"1"}
1791
+ Unpermitted parameters: id
1792
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1793
+
1794
+
1795
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1796
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1797
+ Parameters: {"input"=>"", "id"=>"1"}
1798
+ Unpermitted parameters: id
1799
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1800
+
1801
+
1802
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1803
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1804
+ Parameters: {"input"=>"", "id"=>"1"}
1805
+ Unpermitted parameters: id
1806
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1807
+
1808
+
1809
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1810
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1811
+ Parameters: {"input"=>"", "id"=>"1"}
1812
+ Unpermitted parameters: id
1813
+ Completed 200 OK in 3ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1814
+
1815
+
1816
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1817
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1818
+ Parameters: {"input"=>"", "id"=>"1"}
1819
+ Unpermitted parameters: id
1820
+ Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1821
+
1822
+
1823
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:09 +0300
1824
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1825
+ Parameters: {"input"=>"", "id"=>"1"}
1826
+ Unpermitted parameters: id
1827
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1828
+
1829
+
1830
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1831
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1832
+ Parameters: {"input"=>"", "id"=>"1"}
1833
+ Unpermitted parameters: id
1834
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1835
+
1836
+
1837
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1838
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1839
+ Parameters: {"input"=>"", "id"=>"1"}
1840
+ Unpermitted parameters: id
1841
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1842
+
1843
+
1844
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1845
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1846
+ Parameters: {"input"=>"", "id"=>"1"}
1847
+ Unpermitted parameters: id
1848
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1849
+
1850
+
1851
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1852
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1853
+ Parameters: {"input"=>"", "id"=>"1"}
1854
+ Unpermitted parameters: id
1855
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1856
+
1857
+
1858
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1859
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1860
+ Parameters: {"input"=>"", "id"=>"1"}
1861
+ Unpermitted parameters: id
1862
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1863
+
1864
+
1865
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1866
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1867
+ Parameters: {"input"=>"", "id"=>"1"}
1868
+ Unpermitted parameters: id
1869
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1870
+
1871
+
1872
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1873
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1874
+ Parameters: {"input"=>"", "id"=>"1"}
1875
+ Unpermitted parameters: id
1876
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1877
+
1878
+
1879
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1880
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1881
+ Parameters: {"input"=>"", "id"=>"1"}
1882
+ Unpermitted parameters: id
1883
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1884
+
1885
+
1886
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1887
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1888
+ Parameters: {"input"=>"", "id"=>"1"}
1889
+ Unpermitted parameters: id
1890
+ Completed 200 OK in 5ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1891
+
1892
+
1893
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1894
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1895
+ Parameters: {"input"=>"", "id"=>"1"}
1896
+ Unpermitted parameters: id
1897
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1898
+
1899
+
1900
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1901
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1902
+ Parameters: {"input"=>"", "id"=>"1"}
1903
+ Unpermitted parameters: id
1904
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1905
+
1906
+
1907
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:10 +0300
1908
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1909
+ Parameters: {"input"=>"", "id"=>"1"}
1910
+ Unpermitted parameters: id
1911
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1912
+
1913
+
1914
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:11 +0300
1915
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1916
+ Parameters: {"input"=>"", "id"=>"1"}
1917
+ Unpermitted parameters: id
1918
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1919
+
1920
+
1921
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:11 +0300
1922
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1923
+ Parameters: {"input"=>"", "id"=>"1"}
1924
+ Unpermitted parameters: id
1925
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1926
+
1927
+
1928
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:11 +0300
1929
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1930
+ Parameters: {"input"=>"", "id"=>"1"}
1931
+ Unpermitted parameters: id
1932
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1933
+
1934
+
1935
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:11 +0300
1936
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1937
+ Parameters: {"input"=>"", "id"=>"1"}
1938
+ Unpermitted parameters: id
1939
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1940
+
1941
+
1942
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:11 +0300
1943
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1944
+ Parameters: {"input"=>"", "id"=>"1"}
1945
+ Unpermitted parameters: id
1946
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1947
+
1948
+
1949
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:11 +0300
1950
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1951
+ Parameters: {"input"=>"", "id"=>"1"}
1952
+ Unpermitted parameters: id
1953
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1954
+
1955
+
1956
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:11 +0300
1957
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1958
+ Parameters: {"input"=>"", "id"=>"1"}
1959
+ Unpermitted parameters: id
1960
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1961
+
1962
+
1963
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:12 +0300
1964
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1965
+ Parameters: {"input"=>"", "id"=>"1"}
1966
+ Unpermitted parameters: id
1967
+ Completed 200 OK in 5ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1968
+
1969
+
1970
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:12 +0300
1971
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1972
+ Parameters: {"input"=>"", "id"=>"1"}
1973
+ Unpermitted parameters: id
1974
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1975
+
1976
+
1977
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:12 +0300
1978
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1979
+ Parameters: {"input"=>"", "id"=>"1"}
1980
+ Unpermitted parameters: id
1981
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1982
+
1983
+
1984
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:12 +0300
1985
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1986
+ Parameters: {"input"=>"", "id"=>"1"}
1987
+ Unpermitted parameters: id
1988
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1989
+
1990
+
1991
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:12 +0300
1992
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
1993
+ Parameters: {"input"=>"", "id"=>"1"}
1994
+ Unpermitted parameters: id
1995
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1996
+
1997
+
1998
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:12 +0300
1999
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2000
+ Parameters: {"input"=>"", "id"=>"1"}
2001
+ Unpermitted parameters: id
2002
+ Completed 200 OK in 6ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2003
+
2004
+
2005
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:13 +0300
2006
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2007
+ Parameters: {"input"=>"", "id"=>"1"}
2008
+ Unpermitted parameters: id
2009
+ Completed 200 OK in 3ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2010
+
2011
+
2012
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:13 +0300
2013
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2014
+ Parameters: {"input"=>"", "id"=>"1"}
2015
+ Unpermitted parameters: id
2016
+ Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2017
+
2018
+
2019
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:13 +0300
2020
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2021
+ Parameters: {"input"=>"", "id"=>"1"}
2022
+ Unpermitted parameters: id
2023
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2024
+
2025
+
2026
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:13 +0300
2027
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2028
+ Parameters: {"input"=>"", "id"=>"1"}
2029
+ Unpermitted parameters: id
2030
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2031
+
2032
+
2033
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:13 +0300
2034
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2035
+ Parameters: {"input"=>"", "id"=>"1"}
2036
+ Unpermitted parameters: id
2037
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2038
+
2039
+
2040
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:13 +0300
2041
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2042
+ Parameters: {"input"=>"", "id"=>"1"}
2043
+ Unpermitted parameters: id
2044
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2045
+
2046
+
2047
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:13 +0300
2048
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2049
+ Parameters: {"input"=>"", "id"=>"1"}
2050
+ Unpermitted parameters: id
2051
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2052
+
2053
+
2054
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:13 +0300
2055
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2056
+ Parameters: {"input"=>"", "id"=>"1"}
2057
+ Unpermitted parameters: id
2058
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2059
+
2060
+
2061
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:13 +0300
2062
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2063
+ Parameters: {"input"=>"", "id"=>"1"}
2064
+ Unpermitted parameters: id
2065
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2066
+
2067
+
2068
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2069
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2070
+ Parameters: {"input"=>"", "id"=>"1"}
2071
+ Unpermitted parameters: id
2072
+ Completed 200 OK in 8ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2073
+
2074
+
2075
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2076
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2077
+ Parameters: {"input"=>"", "id"=>"1"}
2078
+ Unpermitted parameters: id
2079
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2080
+
2081
+
2082
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2083
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2084
+ Parameters: {"input"=>"", "id"=>"1"}
2085
+ Unpermitted parameters: id
2086
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2087
+
2088
+
2089
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2090
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2091
+ Parameters: {"input"=>"", "id"=>"1"}
2092
+ Unpermitted parameters: id
2093
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2094
+
2095
+
2096
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2097
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2098
+ Parameters: {"input"=>"", "id"=>"1"}
2099
+ Unpermitted parameters: id
2100
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2101
+
2102
+
2103
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2104
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2105
+ Parameters: {"input"=>"", "id"=>"1"}
2106
+ Unpermitted parameters: id
2107
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2108
+
2109
+
2110
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2111
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2112
+ Parameters: {"input"=>"", "id"=>"1"}
2113
+ Unpermitted parameters: id
2114
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2115
+
2116
+
2117
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2118
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2119
+ Parameters: {"input"=>"", "id"=>"1"}
2120
+ Unpermitted parameters: id
2121
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2122
+
2123
+
2124
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2125
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2126
+ Parameters: {"input"=>"", "id"=>"1"}
2127
+ Unpermitted parameters: id
2128
+ Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2129
+
2130
+
2131
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2132
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2133
+ Parameters: {"input"=>"", "id"=>"1"}
2134
+ Unpermitted parameters: id
2135
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2136
+
2137
+
2138
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:14 +0300
2139
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2140
+ Parameters: {"input"=>"", "id"=>"1"}
2141
+ Unpermitted parameters: id
2142
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2143
+
2144
+
2145
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:15 +0300
2146
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2147
+ Parameters: {"input"=>"", "id"=>"1"}
2148
+ Unpermitted parameters: id
2149
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2150
+
2151
+
2152
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:15 +0300
2153
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2154
+ Parameters: {"input"=>"", "id"=>"1"}
2155
+ Unpermitted parameters: id
2156
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2157
+
2158
+
2159
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:15 +0300
2160
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2161
+ Parameters: {"input"=>"end", "id"=>"1"}
2162
+ Unpermitted parameters: id
2163
+ Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2164
+
2165
+
2166
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:16 +0300
2167
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2168
+ Parameters: {"input"=>"", "id"=>"1"}
2169
+ Unpermitted parameters: id
2170
+ Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2171
+
2172
+
2173
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:16 +0300
2174
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2175
+ Parameters: {"input"=>"", "id"=>"1"}
2176
+ Unpermitted parameters: id
2177
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2178
+
2179
+
2180
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:16 +0300
2181
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2182
+ Parameters: {"input"=>"", "id"=>"1"}
2183
+ Unpermitted parameters: id
2184
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2185
+
2186
+
2187
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:16 +0300
2188
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2189
+ Parameters: {"input"=>"", "id"=>"1"}
2190
+ Unpermitted parameters: id
2191
+ Completed 200 OK in 6ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2192
+
2193
+
2194
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:17 +0300
2195
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2196
+ Parameters: {"input"=>"", "id"=>"1"}
2197
+ Unpermitted parameters: id
2198
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2199
+
2200
+
2201
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:17 +0300
2202
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2203
+ Parameters: {"input"=>"", "id"=>"1"}
2204
+ Unpermitted parameters: id
2205
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2206
+
2207
+
2208
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:19 +0300
2209
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2210
+ Parameters: {"input"=>"end", "id"=>"1"}
2211
+ Unpermitted parameters: id
2212
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2213
+
2214
+
2215
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:20 +0300
2216
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2217
+ Parameters: {"input"=>"", "id"=>"1"}
2218
+ Unpermitted parameters: id
2219
+ Completed 200 OK in 6ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2220
+
2221
+
2222
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:21 +0300
2223
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2224
+ Parameters: {"input"=>"ebd", "id"=>"1"}
2225
+ Unpermitted parameters: id
2226
+ Completed 200 OK in 72ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2227
+
2228
+
2229
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:33:24 +0300
2230
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2231
+ Parameters: {"input"=>"end", "id"=>"1"}
2232
+ Unpermitted parameters: id
2233
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2234
+
2235
+
2236
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-26 17:37:13 +0300
2237
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2238
+ Parameters: {"input"=>":w", "id"=>"1"}
2239
+ Unpermitted parameters: id
2240
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2241
+
2242
+
2243
+ Started GET "/console" for 127.0.0.1 at 2013-07-26 18:05:21 +0300
2244
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2245
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (0.7ms)
2246
+ Completed 200 OK in 55ms (Views: 50.3ms | ActiveRecord: 0.0ms)
2247
+
2248
+
2249
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-26 18:05:21 +0300
2250
+
2251
+
2252
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-26 18:05:21 +0300
2253
+
2254
+
2255
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-26 18:05:21 +0300
2256
+
2257
+
2258
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-26 18:05:21 +0300
2259
+
2260
+
2261
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-26 18:05:21 +0300
2262
+
2263
+
2264
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-26 18:05:21 +0300
2265
+
2266
+
2267
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-26 18:05:21 +0300
2268
+
2269
+
2270
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:24 +0300
2271
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2272
+ Parameters: {"input"=>"class A", "id"=>"2"}
2273
+ Unpermitted parameters: id
2274
+ Completed 200 OK in 5ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2275
+
2276
+
2277
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:24 +0300
2278
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2279
+ Parameters: {"input"=>"end", "id"=>"2"}
2280
+ Unpermitted parameters: id
2281
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2282
+
2283
+
2284
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:25 +0300
2285
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2286
+ Parameters: {"input"=>"", "id"=>"2"}
2287
+ Unpermitted parameters: id
2288
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2289
+
2290
+
2291
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:25 +0300
2292
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2293
+ Parameters: {"input"=>"", "id"=>"2"}
2294
+ Unpermitted parameters: id
2295
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2296
+
2297
+
2298
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:25 +0300
2299
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2300
+ Parameters: {"input"=>"", "id"=>"2"}
2301
+ Unpermitted parameters: id
2302
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2303
+
2304
+
2305
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:25 +0300
2306
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2307
+ Parameters: {"input"=>"", "id"=>"2"}
2308
+ Unpermitted parameters: id
2309
+ Completed 200 OK in 4ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2310
+
2311
+
2312
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:25 +0300
2313
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2314
+ Parameters: {"input"=>"", "id"=>"2"}
2315
+ Unpermitted parameters: id
2316
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2317
+
2318
+
2319
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:25 +0300
2320
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2321
+ Parameters: {"input"=>"", "id"=>"2"}
2322
+ Unpermitted parameters: id
2323
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2324
+
2325
+
2326
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:28 +0300
2327
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2328
+ Parameters: {"input"=>"wag", "id"=>"2"}
2329
+ Unpermitted parameters: id
2330
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2331
+
2332
+
2333
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:30 +0300
2334
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2335
+ Parameters: {"input"=>"wah?", "id"=>"2"}
2336
+ Unpermitted parameters: id
2337
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2338
+
2339
+
2340
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:38 +0300
2341
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2342
+ Parameters: {"input"=>"raise", "id"=>"2"}
2343
+ Unpermitted parameters: id
2344
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2345
+
2346
+
2347
+ Started PUT "/console/console_sessions/2" for 127.0.0.1 at 2013-07-26 18:05:45 +0300
2348
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2349
+ Parameters: {"input"=>"raise Whatever, Dude", "id"=>"2"}
2350
+ Unpermitted parameters: id
2351
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2352
+
2353
+
2354
+ Started GET "/console" for 127.0.0.1 at 2013-07-26 18:44:36 +0300
2355
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2356
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/bundler/gems/web-console-72eae61871ba/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (0.6ms)
2357
+ Completed 200 OK in 9ms (Views: 5.4ms | ActiveRecord: 0.0ms)
2358
+
2359
+
2360
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-26 18:44:37 +0300
2361
+
2362
+
2363
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-26 18:44:37 +0300
2364
+
2365
+
2366
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-26 18:44:37 +0300
2367
+
2368
+
2369
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-26 18:44:37 +0300
2370
+
2371
+
2372
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-26 18:44:37 +0300
2373
+
2374
+
2375
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-26 18:44:37 +0300
2376
+
2377
+
2378
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-26 18:44:37 +0300
2379
+
2380
+
2381
+ Started PUT "/console/console_sessions/3" for 127.0.0.1 at 2013-07-26 18:44:41 +0300
2382
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2383
+ Parameters: {"input"=>"p :whoots", "id"=>"3"}
2384
+ Unpermitted parameters: id
2385
+ Completed 200 OK in 60ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2386
+
2387
+
2388
+ Started PUT "/console/console_sessions/3" for 127.0.0.1 at 2013-07-26 18:44:47 +0300
2389
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2390
+ Parameters: {"input"=>"class Why; end", "id"=>"3"}
2391
+ Unpermitted parameters: id
2392
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2393
+
2394
+
2395
+ Started PUT "/console/console_sessions/3" for 127.0.0.1 at 2013-07-26 18:44:49 +0300
2396
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2397
+ Parameters: {"input"=>"Why?", "id"=>"3"}
2398
+ Unpermitted parameters: id
2399
+ Completed 200 OK in 14ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2400
+
2401
+
2402
+ Started PUT "/console/console_sessions/3" for 127.0.0.1 at 2013-07-26 18:44:53 +0300
2403
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2404
+ Parameters: {"input"=>"class Why?; end", "id"=>"3"}
2405
+ Unpermitted parameters: id
2406
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2407
+
2408
+
2409
+ Started PUT "/console/console_sessions/3" for 127.0.0.1 at 2013-07-26 18:44:56 +0300
2410
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2411
+ Parameters: {"input"=>"Why?", "id"=>"3"}
2412
+ Unpermitted parameters: id
2413
+ Completed 200 OK in 16ms (Views: 0.4ms | ActiveRecord: 0.0ms)
2414
+
2415
+
2416
+ Started GET "/console" for 127.0.0.1 at 2013-07-30 18:26:28 +0300
2417
+ Processing by WebConsole::ConsoleSessionsController#index as HTML
2418
+ Rendered /home/udf/.rbenv/versions/2.0.0-p195/lib/ruby/gems/2.0.0/gems/web-console-0.1.0/app/views/web_console/console_sessions/index.html.erb within layouts/web_console/application (18.8ms)
2419
+ Completed 200 OK in 172ms (Views: 167.2ms | ActiveRecord: 0.0ms)
2420
+
2421
+
2422
+ Started GET "/assets/web_console/application.css?body=1" for 127.0.0.1 at 2013-07-30 18:26:29 +0300
2423
+
2424
+
2425
+ Started GET "/assets/web_console/console_sessions.css?body=1" for 127.0.0.1 at 2013-07-30 18:26:29 +0300
2426
+
2427
+
2428
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-07-30 18:26:29 +0300
2429
+
2430
+
2431
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-07-30 18:26:29 +0300
2432
+
2433
+
2434
+ Started GET "/assets/jquery.console.js?body=1" for 127.0.0.1 at 2013-07-30 18:26:29 +0300
2435
+
2436
+
2437
+ Started GET "/assets/web_console/console_sessions.js?body=1" for 127.0.0.1 at 2013-07-30 18:26:29 +0300
2438
+
2439
+
2440
+ Started GET "/assets/web_console/application.js?body=1" for 127.0.0.1 at 2013-07-30 18:26:29 +0300
2441
+
2442
+
2443
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:35 +0300
2444
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2445
+ Parameters: {"input"=>"ls", "id"=>"1"}
2446
+ Unpermitted parameters: id
2447
+ Completed 200 OK in 140ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2448
+
2449
+
2450
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:36 +0300
2451
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2452
+ Parameters: {"input"=>"", "id"=>"1"}
2453
+ Unpermitted parameters: id
2454
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2455
+
2456
+
2457
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:40 +0300
2458
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2459
+ Parameters: {"input"=>"cd _ex_", "id"=>"1"}
2460
+ Unpermitted parameters: id
2461
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2462
+
2463
+
2464
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:40 +0300
2465
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2466
+ Parameters: {"input"=>"ls", "id"=>"1"}
2467
+ Unpermitted parameters: id
2468
+ Completed 200 OK in 17ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2469
+
2470
+
2471
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:42 +0300
2472
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2473
+ Parameters: {"input"=>"cd ..", "id"=>"1"}
2474
+ Unpermitted parameters: id
2475
+ Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2476
+
2477
+
2478
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:43 +0300
2479
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2480
+ Parameters: {"input"=>"ls", "id"=>"1"}
2481
+ Unpermitted parameters: id
2482
+ Completed 200 OK in 22ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2483
+
2484
+
2485
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:46 +0300
2486
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2487
+ Parameters: {"input"=>"cd _pry_", "id"=>"1"}
2488
+ Unpermitted parameters: id
2489
+ Completed 200 OK in 8ms (Views: 0.7ms | ActiveRecord: 0.0ms)
2490
+
2491
+
2492
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:47 +0300
2493
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2494
+ Parameters: {"input"=>"ls", "id"=>"1"}
2495
+ Unpermitted parameters: id
2496
+ Completed 200 OK in 73ms (Views: 0.6ms | ActiveRecord: 0.0ms)
2497
+
2498
+
2499
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:51 +0300
2500
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2501
+ Parameters: {"input"=>"cd ..", "id"=>"1"}
2502
+ Unpermitted parameters: id
2503
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 0.0ms)
2504
+
2505
+
2506
+ Started PUT "/console/console_sessions/1" for 127.0.0.1 at 2013-07-30 18:26:51 +0300
2507
+ Processing by WebConsole::ConsoleSessionsController#update as JSON
2508
+ Parameters: {"input"=>"ls", "id"=>"1"}
2509
+ Unpermitted parameters: id
2510
+ Completed 200 OK in 56ms (Views: 0.6ms | ActiveRecord: 0.0ms)