netzke-core 0.8.2 → 0.8.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: ece4a46f4a0c3492187c9ae655f1eeca26dfdd55
4
+ data.tar.gz: 7cd2bbee3fc83355f8d3f043706d5849646a093d
5
+ SHA512:
6
+ metadata.gz: 4011ff3d2e6a8990b4a52f354eb8dea35b5bcc45d88870deb240d883835ed0796268fe540fdaec46ad5587934864165a8da7ef7dc655f47d32d635ba35c70671
7
+ data.tar.gz: 0acff09f2bd2eadfec95b50a337067234ec62cd6b453f16432edb4ef17c11218143ddc8c4e081cbeb30b7a75950e976a9b560027173f27f24c85f4ec2db31171
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ # v0.8.3 - 2013-03-22
2
+ * support Rails 3.2.13
3
+
1
4
  # v0.8.2 - 2013-03-12
2
5
  * bug fix
3
6
  * RuntimeError "can't add a new key into hash during iteration" in Composition in some scenarious (thanks @wupdiwup)
@@ -8,6 +8,13 @@ module Netzke
8
8
  send(:before_filter, :set_controller_and_session)
9
9
  end
10
10
 
11
+ module ClassMethods
12
+ # inform AbstractController::Base that methods direct, ext, and dispatcher are actually actions
13
+ def action_methods
14
+ super.merge(%w[ext direct dispatcher].to_set)
15
+ end
16
+ end
17
+
11
18
  # Handles Ext.Direct RPC calls
12
19
  def direct
13
20
  if params['_json'] # this is a batched request
@@ -98,13 +105,6 @@ module Netzke
98
105
  Netzke::Base.controller = self
99
106
  Netzke::Base.session = session
100
107
  end
101
-
102
- private
103
-
104
- # inform AbstractController::Base that methods direct, ext, and dispatcher are actually actions
105
- def action_method?(name)
106
- %w(direct ext dispatcher).include?(name.to_s) || super
107
- end
108
108
  end
109
109
  end
110
110
  end
@@ -3,7 +3,7 @@ module Netzke
3
3
  module Version
4
4
  MAJOR = 0
5
5
  MINOR = 8
6
- PATCH = 2
6
+ PATCH = 3
7
7
 
8
8
  STRING = [MAJOR, MINOR, PATCH].compact.join('.')
9
9
  end
@@ -78044,3 +78044,594 @@ Processing by NetzkeController#direct as */*
78044
78044
  Parameters: {"act"=>"haml_panel", "method"=>"whatsUp", "data"=>nil, "type"=>"rpc", "tid"=>1, "authenticity_token"=>"vssNAJigkQ7wGl8/hp7xxP0MHtJwY1A5fdg+oPdXfZ0="}
78045
78045
  Rendered text template (0.0ms)
78046
78046
  Completed 200 OK in 4ms (Views: 0.4ms | ActiveRecord: 0.0ms)
78047
+
78048
+
78049
+ Started GET "/components/Endpoints" for 127.0.0.1 at 2013-03-14 19:18:41 +0700
78050
+ Connecting to database specified by database.yml
78051
+ Processing by ComponentsController#index as HTML
78052
+ Parameters: {"component"=>"Endpoints"}
78053
+ Rendered inline template within layouts/application (43.4ms)
78054
+ Completed 200 OK in 62ms (Views: 61.5ms | ActiveRecord: 0.0ms)
78055
+
78056
+
78057
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-14 19:18:42 +0700
78058
+ Processing by NetzkeController#ext as JS
78059
+ Rendered text template (0.0ms)
78060
+ Completed 200 OK in 8ms (Views: 3.9ms | ActiveRecord: 0.0ms)
78061
+
78062
+
78063
+ Started GET "/netzke/ext.css" for 127.0.0.1 at 2013-03-14 19:18:45 +0700
78064
+ Connecting to database specified by database.yml
78065
+ Processing by NetzkeController#ext as CSS
78066
+ Rendered text template (0.0ms)
78067
+ Completed 200 OK in 30ms (Views: 28.3ms | ActiveRecord: 0.0ms)
78068
+
78069
+
78070
+ Started POST "/netzke/direct/?authenticity_token=xM9yqIDqm7%2Fi484MfSStdQJtQK7Y2KKAAdAJnzjseaI%3D" for 127.0.0.1 at 2013-03-14 19:18:47 +0700
78071
+ Processing by NetzkeController#direct as */*
78072
+ Parameters: {"act"=>"endpoints", "method"=>"whatsUp", "data"=>nil, "type"=>"rpc", "tid"=>1, "authenticity_token"=>"xM9yqIDqm7/i484MfSStdQJtQK7Y2KKAAdAJnzjseaI="}
78073
+ Rendered text template (0.0ms)
78074
+ Completed 200 OK in 3ms (Views: 0.6ms | ActiveRecord: 0.0ms)
78075
+
78076
+
78077
+ Started POST "/netzke/direct/?authenticity_token=xM9yqIDqm7%2Fi484MfSStdQJtQK7Y2KKAAdAJnzjseaI%3D" for 127.0.0.1 at 2013-03-14 19:18:48 +0700
78078
+ Processing by NetzkeController#direct as */*
78079
+ Parameters: {"act"=>"endpoints", "method"=>"noResponse", "data"=>[{}], "type"=>"rpc", "tid"=>2, "authenticity_token"=>"xM9yqIDqm7/i484MfSStdQJtQK7Y2KKAAdAJnzjseaI="}
78080
+ Rendered text template (0.0ms)
78081
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
78082
+
78083
+
78084
+ Started POST "/netzke/direct/?authenticity_token=xM9yqIDqm7%2Fi484MfSStdQJtQK7Y2KKAAdAJnzjseaI%3D" for 127.0.0.1 at 2013-03-14 19:18:49 +0700
78085
+ Processing by NetzkeController#direct as */*
78086
+ Parameters: {"act"=>"endpoints", "method"=>"multipleArguments", "data"=>nil, "type"=>"rpc", "tid"=>3, "authenticity_token"=>"xM9yqIDqm7/i484MfSStdQJtQK7Y2KKAAdAJnzjseaI="}
78087
+ Rendered text template (0.0ms)
78088
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
78089
+
78090
+
78091
+ Started POST "/netzke/direct/?authenticity_token=xM9yqIDqm7%2Fi484MfSStdQJtQK7Y2KKAAdAJnzjseaI%3D" for 127.0.0.1 at 2013-03-14 19:18:49 +0700
78092
+ Processing by NetzkeController#direct as */*
78093
+ Parameters: {"act"=>"endpoints", "method"=>"arrayAsArgument", "data"=>nil, "type"=>"rpc", "tid"=>4, "authenticity_token"=>"xM9yqIDqm7/i484MfSStdQJtQK7Y2KKAAdAJnzjseaI="}
78094
+ Rendered text template (0.0ms)
78095
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
78096
+
78097
+
78098
+ Started POST "/netzke/direct/?authenticity_token=xM9yqIDqm7%2Fi484MfSStdQJtQK7Y2KKAAdAJnzjseaI%3D" for 127.0.0.1 at 2013-03-14 19:18:50 +0700
78099
+ Processing by NetzkeController#direct as */*
78100
+ Parameters: {"act"=>"endpoints", "method"=>"doNothing", "data"=>[{}], "type"=>"rpc", "tid"=>5, "authenticity_token"=>"xM9yqIDqm7/i484MfSStdQJtQK7Y2KKAAdAJnzjseaI="}
78101
+ Rendered text template (0.0ms)
78102
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
78103
+
78104
+
78105
+ Started POST "/netzke/direct/?authenticity_token=xM9yqIDqm7%2Fi484MfSStdQJtQK7Y2KKAAdAJnzjseaI%3D" for 127.0.0.1 at 2013-03-14 19:18:50 +0700
78106
+ Processing by NetzkeController#direct as */*
78107
+ Parameters: {"act"=>"endpoints", "method"=>"getAnswer", "data"=>nil, "type"=>"rpc", "tid"=>6, "authenticity_token"=>"xM9yqIDqm7/i484MfSStdQJtQK7Y2KKAAdAJnzjseaI="}
78108
+ Rendered text template (0.0ms)
78109
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
78110
+
78111
+
78112
+ Started GET "/components/LocalizationExtended?spec=localization_extended" for 127.0.0.1 at 2013-03-14 19:21:51 +0700
78113
+ Processing by ComponentsController#index as HTML
78114
+ Parameters: {"spec"=>"localization_extended", "component"=>"LocalizationExtended"}
78115
+ Rendered inline template within layouts/application (38.4ms)
78116
+ Completed 200 OK in 62ms (Views: 60.5ms | ActiveRecord: 0.0ms)
78117
+
78118
+
78119
+ Started GET "/specs/localization_extended.js" for 127.0.0.1 at 2013-03-14 19:21:51 +0700
78120
+
78121
+
78122
+ Started GET "/specs/support__action_helper.js" for 127.0.0.1 at 2013-03-14 19:21:51 +0700
78123
+ Processing by SpecsController#show as JS
78124
+ Parameters: {"id"=>"localization_extended"}
78125
+ Processing by SpecsController#show as JS
78126
+ Parameters: {"id"=>"support__action_helper"}
78127
+ Rendered text template (0.0ms)
78128
+ Completed 200 OK in 201ms (Views: 1.4ms | ActiveRecord: 0.0ms)
78129
+ Rendered text template (0.0ms)
78130
+ Completed 200 OK in 226ms (Views: 2.2ms | ActiveRecord: 0.0ms)
78131
+
78132
+
78133
+ Started GET "/assets/mocha/mocha.css" for 127.0.0.1 at 2013-03-14 19:21:51 +0700
78134
+ Compiled mocha/mocha.css (1ms) (pid 11317)
78135
+ Served asset /mocha/mocha.css - 200 OK (19ms)
78136
+
78137
+
78138
+ Started GET "/assets/mocha/mocha.js" for 127.0.0.1 at 2013-03-14 19:21:51 +0700
78139
+ Compiled mocha/mocha.js (2ms) (pid 11317)
78140
+
78141
+
78142
+ Started GET "/specs/support__query_helper.js" for 127.0.0.1 at 2013-03-14 19:21:51 +0700
78143
+ Processing by SpecsController#show as JS
78144
+ Parameters: {"id"=>"support__query_helper"}
78145
+ Rendered text template (0.0ms)
78146
+ Completed 200 OK in 258ms (Views: 1.2ms | ActiveRecord: 0.0ms)
78147
+
78148
+
78149
+ Started GET "/specs/support__expectation_helper.js" for 127.0.0.1 at 2013-03-14 19:21:52 +0700
78150
+ Processing by SpecsController#show as JS
78151
+ Parameters: {"id"=>"support__expectation_helper"}
78152
+ Rendered text template (0.0ms)
78153
+ Completed 200 OK in 212ms (Views: 0.9ms | ActiveRecord: 0.0ms)
78154
+
78155
+
78156
+ Started GET "/netzke/ext.css" for 127.0.0.1 at 2013-03-14 19:21:52 +0700
78157
+ Processing by NetzkeController#ext as CSS
78158
+ Rendered text template (0.0ms)
78159
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
78160
+
78161
+
78162
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-14 19:21:52 +0700
78163
+ Processing by NetzkeController#ext as JS
78164
+ Rendered text template (0.0ms)
78165
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
78166
+ Served asset /mocha/mocha.js - 200 OK (1223ms)
78167
+
78168
+
78169
+ Started GET "/assets/expect/expect.js" for 127.0.0.1 at 2013-03-14 19:21:53 +0700
78170
+ Compiled expect/expect.js (0ms) (pid 11317)
78171
+ Served asset /expect/expect.js - 200 OK (560ms)
78172
+
78173
+
78174
+ Started GET "/components/LocalizationExtended?spec=localization_extended" for 127.0.0.1 at 2013-03-14 19:22:18 +0700
78175
+ Processing by ComponentsController#index as HTML
78176
+ Parameters: {"spec"=>"localization_extended", "component"=>"LocalizationExtended"}
78177
+ Rendered inline template within layouts/application (10.8ms)
78178
+ Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms)
78179
+
78180
+
78181
+ Started GET "/specs/support__expectation_helper.js" for 127.0.0.1 at 2013-03-14 19:22:19 +0700
78182
+
78183
+
78184
+ Started GET "/specs/support__action_helper.js" for 127.0.0.1 at 2013-03-14 19:22:19 +0700
78185
+ Processing by SpecsController#show as JS
78186
+ Parameters: {"id"=>"support__expectation_helper"}
78187
+ Processing by SpecsController#show as JS
78188
+ Parameters: {"id"=>"support__action_helper"}
78189
+ Rendered text template (0.0ms)
78190
+ Completed 200 OK in 280ms (Views: 1.5ms | ActiveRecord: 0.0ms)
78191
+
78192
+
78193
+ Started GET "/specs/support__query_helper.js" for 127.0.0.1 at 2013-03-14 19:22:19 +0700
78194
+ Processing by SpecsController#show as JS
78195
+ Parameters: {"id"=>"support__query_helper"}
78196
+ Rendered text template (0.0ms)
78197
+ Completed 200 OK in 351ms (Views: 2.5ms | ActiveRecord: 0.0ms)
78198
+
78199
+
78200
+ Started GET "/specs/localization_extended.js" for 127.0.0.1 at 2013-03-14 19:22:19 +0700
78201
+ Processing by SpecsController#show as JS
78202
+ Parameters: {"id"=>"localization_extended"}
78203
+ Rendered text template (0.0ms)
78204
+ Completed 200 OK in 310ms (Views: 0.6ms | ActiveRecord: 0.0ms)
78205
+
78206
+
78207
+ Started GET "/assets/mocha/mocha.js" for 127.0.0.1 at 2013-03-14 19:22:19 +0700
78208
+ Served asset /mocha/mocha.js - 304 Not Modified (7ms)
78209
+
78210
+
78211
+ Started GET "/assets/expect/expect.js" for 127.0.0.1 at 2013-03-14 19:22:19 +0700
78212
+ Served asset /expect/expect.js - 304 Not Modified (3ms)
78213
+
78214
+
78215
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-14 19:22:19 +0700
78216
+ Processing by NetzkeController#ext as JS
78217
+ Rendered text template (0.0ms)
78218
+ Completed 200 OK in 291ms (Views: 1.5ms | ActiveRecord: 0.0ms)
78219
+
78220
+
78221
+ Started GET "/assets/mocha/mocha.css" for 127.0.0.1 at 2013-03-14 19:22:19 +0700
78222
+ Served asset /mocha/mocha.css - 304 Not Modified (0ms)
78223
+
78224
+
78225
+ Started GET "/netzke/ext.css" for 127.0.0.1 at 2013-03-14 19:22:19 +0700
78226
+ Processing by NetzkeController#ext as CSS
78227
+ Rendered text template (0.0ms)
78228
+ Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.0ms)
78229
+ Rendered text template (0.0ms)
78230
+ Completed 200 OK in 39ms (Views: 1.2ms | ActiveRecord: 0.0ms)
78231
+
78232
+
78233
+ Started GET "/components/LocalizationExtended?spec=localization_extended" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78234
+ Processing by ComponentsController#index as HTML
78235
+ Parameters: {"spec"=>"localization_extended", "component"=>"LocalizationExtended"}
78236
+ Rendered inline template within layouts/application (6.6ms)
78237
+ Completed 200 OK in 12ms (Views: 12.1ms | ActiveRecord: 0.0ms)
78238
+
78239
+
78240
+ Started GET "/specs/support__expectation_helper.js" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78241
+
78242
+
78243
+ Started GET "/specs/localization_extended.js" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78244
+ Processing by SpecsController#show as JS
78245
+ Parameters: {"id"=>"support__expectation_helper"}
78246
+ Processing by SpecsController#show as JS
78247
+ Parameters: {"id"=>"localization_extended"}
78248
+ Rendered text template (0.0ms)
78249
+ Rendered text template (0.0ms)
78250
+ Completed 200 OK in 176ms (Views: 1.8ms | ActiveRecord: 0.0ms)
78251
+ Completed 200 OK in 188ms (Views: 2.1ms | ActiveRecord: 0.0ms)
78252
+
78253
+
78254
+ Started GET "/assets/mocha/mocha.css" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78255
+
78256
+
78257
+ Started GET "/assets/mocha/mocha.js" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78258
+ Served asset /mocha/mocha.js - 304 Not Modified (0ms)
78259
+ Served asset /mocha/mocha.css - 304 Not Modified (0ms)
78260
+
78261
+
78262
+ Started GET "/specs/support__action_helper.js" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78263
+
78264
+
78265
+ Started GET "/specs/support__query_helper.js" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78266
+ Processing by SpecsController#show as JS
78267
+ Parameters: {"id"=>"support__action_helper"}
78268
+ Processing by SpecsController#show as JS
78269
+ Parameters: {"id"=>"support__query_helper"}
78270
+ Rendered text template (0.0ms)
78271
+ Completed 200 OK in 254ms (Views: 0.9ms | ActiveRecord: 0.0ms)
78272
+
78273
+
78274
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78275
+ Rendered text template (0.0ms)
78276
+ Completed 200 OK in 259ms (Views: 0.5ms | ActiveRecord: 0.0ms)
78277
+
78278
+
78279
+ Started GET "/netzke/ext.css" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78280
+ Processing by NetzkeController#ext as JS
78281
+ Rendered text template (0.0ms)
78282
+ Completed 200 OK in 3ms (Views: 1.4ms | ActiveRecord: 0.0ms)
78283
+ Processing by NetzkeController#ext as CSS
78284
+ Rendered text template (0.0ms)
78285
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
78286
+
78287
+
78288
+ Started GET "/assets/expect/expect.js" for 127.0.0.1 at 2013-03-14 19:22:28 +0700
78289
+ Served asset /expect/expect.js - 304 Not Modified (0ms)
78290
+
78291
+
78292
+ Started GET "/components/LocalizationExtended?spec=localization_extended" for 127.0.0.1 at 2013-03-14 19:23:59 +0700
78293
+ Processing by ComponentsController#index as HTML
78294
+ Parameters: {"spec"=>"localization_extended", "component"=>"LocalizationExtended"}
78295
+ Rendered inline template within layouts/application (6.7ms)
78296
+ Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
78297
+
78298
+
78299
+ Started GET "/specs/support__expectation_helper.js" for 127.0.0.1 at 2013-03-14 19:24:00 +0700
78300
+
78301
+
78302
+ Started GET "/specs/support__action_helper.js" for 127.0.0.1 at 2013-03-14 19:24:00 +0700
78303
+ Processing by SpecsController#show as JS
78304
+ Parameters: {"id"=>"support__expectation_helper"}
78305
+ Processing by SpecsController#show as JS
78306
+ Parameters: {"id"=>"support__action_helper"}
78307
+ Rendered text template (0.0ms)
78308
+ Completed 200 OK in 210ms (Views: 2.2ms | ActiveRecord: 0.0ms)
78309
+ Rendered text template (0.0ms)
78310
+ Completed 200 OK in 223ms (Views: 2.5ms | ActiveRecord: 0.0ms)
78311
+
78312
+
78313
+ Started GET "/specs/localization_extended.js" for 127.0.0.1 at 2013-03-14 19:24:00 +0700
78314
+
78315
+
78316
+ Started GET "/specs/support__query_helper.js" for 127.0.0.1 at 2013-03-14 19:24:00 +0700
78317
+ Processing by SpecsController#show as JS
78318
+ Parameters: {"id"=>"localization_extended"}
78319
+ Processing by SpecsController#show as JS
78320
+ Parameters: {"id"=>"support__query_helper"}
78321
+ Rendered text template (0.0ms)
78322
+ Completed 200 OK in 189ms (Views: 0.6ms | ActiveRecord: 0.0ms)
78323
+
78324
+
78325
+ Started GET "/assets/mocha/mocha.js" for 127.0.0.1 at 2013-03-14 19:24:00 +0700
78326
+ Served asset /mocha/mocha.js - 304 Not Modified (0ms)
78327
+
78328
+
78329
+ Started GET "/assets/expect/expect.js" for 127.0.0.1 at 2013-03-14 19:24:00 +0700
78330
+ Served asset /expect/expect.js - 304 Not Modified (0ms)
78331
+ Rendered text template (0.0ms)
78332
+ Completed 200 OK in 239ms (Views: 1.0ms | ActiveRecord: 0.0ms)
78333
+
78334
+
78335
+ Started GET "/assets/mocha/mocha.css" for 127.0.0.1 at 2013-03-14 19:24:00 +0700
78336
+ Served asset /mocha/mocha.css - 304 Not Modified (4ms)
78337
+
78338
+
78339
+ Started GET "/netzke/ext.css" for 127.0.0.1 at 2013-03-14 19:24:00 +0700
78340
+ Processing by NetzkeController#ext as CSS
78341
+ Rendered text template (0.0ms)
78342
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.0ms)
78343
+
78344
+
78345
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-14 19:24:00 +0700
78346
+ Processing by NetzkeController#ext as JS
78347
+ Rendered text template (0.0ms)
78348
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
78349
+ Connecting to database specified by database.yml
78350
+ Connecting to database specified by database.yml
78351
+
78352
+
78353
+ Started GET "/netzke/ext.css" for 127.0.0.1 at 2013-03-21 15:34:31 +0700
78354
+ Connecting to database specified by database.yml
78355
+ Processing by NetzkeController#ext as CSS
78356
+ Rendered text template (0.0ms)
78357
+ Completed 200 OK in 13ms (Views: 10.2ms | ActiveRecord: 0.0ms)
78358
+
78359
+
78360
+ Started GET "/netzke/ext.css" for 127.0.0.1 at 2013-03-21 15:37:16 +0700
78361
+ Connecting to database specified by database.yml
78362
+
78363
+ AbstractController::ActionNotFound (The action 'ext' could not be found for NetzkeController):
78364
+ actionpack (3.2.13) lib/abstract_controller/base.rb:116:in `process'
78365
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
78366
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
78367
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
78368
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
78369
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
78370
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
78371
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
78372
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
78373
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
78374
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
78375
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
78376
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
78377
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
78378
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
78379
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
78380
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
78381
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
78382
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
78383
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
78384
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
78385
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
78386
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
78387
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
78388
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__364026296495370780__call__2864090111689134488__callbacks'
78389
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
78390
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
78391
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
78392
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
78393
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
78394
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
78395
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
78396
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
78397
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
78398
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
78399
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
78400
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
78401
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
78402
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
78403
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
78404
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
78405
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
78406
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
78407
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
78408
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
78409
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
78410
+ railties (3.2.13) lib/rails/rack/log_tailer.rb:17:in `call'
78411
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
78412
+ /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
78413
+ /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
78414
+ /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
78415
+
78416
+
78417
+ Rendered /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (21.3ms)
78418
+ Connecting to database specified by database.yml
78419
+ Connecting to database specified by database.yml
78420
+
78421
+
78422
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-22 12:36:13 +0700
78423
+ Connecting to database specified by database.yml
78424
+
78425
+ TypeError (can't convert Set into Array):
78426
+ /Users/skozlov/code/netzke/netzke-core/lib/netzke/core/railz/controller_extensions.rb:13:in `action_methods'
78427
+ actionpack (3.2.13) lib/action_controller/metal/hide_actions.rb:31:in `visible_action?'
78428
+ actionpack (3.2.13) lib/action_controller/metal/hide_actions.rb:18:in `method_for_action'
78429
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:14:in `method_for_action'
78430
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:61:in `method_for_action'
78431
+ actionpack (3.2.13) lib/abstract_controller/base.rb:115:in `process'
78432
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
78433
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
78434
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
78435
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
78436
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
78437
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
78438
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
78439
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
78440
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
78441
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
78442
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
78443
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
78444
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
78445
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
78446
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
78447
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
78448
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
78449
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
78450
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
78451
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
78452
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
78453
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
78454
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
78455
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__453463195315146644__call__3239324918796080608__callbacks'
78456
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
78457
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
78458
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
78459
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
78460
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
78461
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
78462
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
78463
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
78464
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
78465
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
78466
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
78467
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
78468
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
78469
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
78470
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
78471
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
78472
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
78473
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
78474
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
78475
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
78476
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
78477
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle'
78478
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start'
78479
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start'
78480
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each'
78481
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start'
78482
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop'
78483
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start'
78484
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run'
78485
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `<main>'
78486
+
78487
+
78488
+ Rendered /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
78489
+ Rendered /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.0ms)
78490
+ Rendered /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.5ms)
78491
+
78492
+
78493
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-22 12:40:00 +0700
78494
+
78495
+ TypeError (can't convert Set into Array):
78496
+ /Users/skozlov/code/netzke/netzke-core/lib/netzke/core/railz/controller_extensions.rb:13:in `action_methods'
78497
+ actionpack (3.2.13) lib/action_controller/metal/hide_actions.rb:31:in `visible_action?'
78498
+ actionpack (3.2.13) lib/action_controller/metal/hide_actions.rb:18:in `method_for_action'
78499
+ actionpack (3.2.13) lib/action_controller/metal/implicit_render.rb:14:in `method_for_action'
78500
+ actionpack (3.2.13) lib/action_controller/metal/compatibility.rb:61:in `method_for_action'
78501
+ actionpack (3.2.13) lib/abstract_controller/base.rb:115:in `process'
78502
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
78503
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
78504
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
78505
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
78506
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
78507
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
78508
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
78509
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
78510
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
78511
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
78512
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
78513
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
78514
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
78515
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
78516
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
78517
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
78518
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
78519
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
78520
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
78521
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
78522
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
78523
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
78524
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
78525
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__453463195315146644__call__3239324918796080608__callbacks'
78526
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
78527
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
78528
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
78529
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
78530
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
78531
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
78532
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
78533
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
78534
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
78535
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
78536
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
78537
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
78538
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
78539
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
78540
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
78541
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
78542
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
78543
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
78544
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
78545
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
78546
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
78547
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle'
78548
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start'
78549
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start'
78550
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each'
78551
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start'
78552
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop'
78553
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start'
78554
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run'
78555
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `<main>'
78556
+
78557
+
78558
+ Rendered /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
78559
+ Rendered /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
78560
+ Rendered /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.5ms)
78561
+
78562
+
78563
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-22 12:40:07 +0700
78564
+ Connecting to database specified by database.yml
78565
+ Processing by NetzkeController#ext as JS
78566
+ Rendered text template (0.0ms)
78567
+ Completed 200 OK in 14ms (Views: 10.5ms | ActiveRecord: 0.0ms)
78568
+
78569
+
78570
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-22 12:40:25 +0700
78571
+ Processing by NetzkeController#ext as JS
78572
+ Rendered text template (0.0ms)
78573
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
78574
+
78575
+
78576
+ Started GET "/netzke/ext.js" for 127.0.0.1 at 2013-03-22 12:40:29 +0700
78577
+ Connecting to database specified by database.yml
78578
+
78579
+ AbstractController::ActionNotFound (The action 'ext' could not be found for NetzkeController):
78580
+ actionpack (3.2.13) lib/abstract_controller/base.rb:116:in `process'
78581
+ actionpack (3.2.13) lib/abstract_controller/rendering.rb:45:in `process'
78582
+ actionpack (3.2.13) lib/action_controller/metal.rb:203:in `dispatch'
78583
+ actionpack (3.2.13) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
78584
+ actionpack (3.2.13) lib/action_controller/metal.rb:246:in `block in action'
78585
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `call'
78586
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
78587
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:36:in `call'
78588
+ journey (1.0.4) lib/journey/router.rb:68:in `block in call'
78589
+ journey (1.0.4) lib/journey/router.rb:56:in `each'
78590
+ journey (1.0.4) lib/journey/router.rb:56:in `call'
78591
+ actionpack (3.2.13) lib/action_dispatch/routing/route_set.rb:612:in `call'
78592
+ actionpack (3.2.13) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
78593
+ rack (1.4.5) lib/rack/etag.rb:23:in `call'
78594
+ rack (1.4.5) lib/rack/conditionalget.rb:25:in `call'
78595
+ actionpack (3.2.13) lib/action_dispatch/middleware/head.rb:14:in `call'
78596
+ actionpack (3.2.13) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
78597
+ actionpack (3.2.13) lib/action_dispatch/middleware/flash.rb:242:in `call'
78598
+ rack (1.4.5) lib/rack/session/abstract/id.rb:210:in `context'
78599
+ rack (1.4.5) lib/rack/session/abstract/id.rb:205:in `call'
78600
+ actionpack (3.2.13) lib/action_dispatch/middleware/cookies.rb:341:in `call'
78601
+ activerecord (3.2.13) lib/active_record/query_cache.rb:64:in `call'
78602
+ activerecord (3.2.13) lib/active_record/connection_adapters/abstract/connection_pool.rb:479:in `call'
78603
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
78604
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `_run__2551086611767064157__call__3791697091013180017__callbacks'
78605
+ activesupport (3.2.13) lib/active_support/callbacks.rb:405:in `__run_callback'
78606
+ activesupport (3.2.13) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
78607
+ activesupport (3.2.13) lib/active_support/callbacks.rb:81:in `run_callbacks'
78608
+ actionpack (3.2.13) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
78609
+ actionpack (3.2.13) lib/action_dispatch/middleware/reloader.rb:65:in `call'
78610
+ actionpack (3.2.13) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
78611
+ actionpack (3.2.13) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
78612
+ actionpack (3.2.13) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
78613
+ railties (3.2.13) lib/rails/rack/logger.rb:32:in `call_app'
78614
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `block in call'
78615
+ activesupport (3.2.13) lib/active_support/tagged_logging.rb:22:in `tagged'
78616
+ railties (3.2.13) lib/rails/rack/logger.rb:16:in `call'
78617
+ actionpack (3.2.13) lib/action_dispatch/middleware/request_id.rb:22:in `call'
78618
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
78619
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
78620
+ activesupport (3.2.13) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
78621
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
78622
+ actionpack (3.2.13) lib/action_dispatch/middleware/static.rb:63:in `call'
78623
+ railties (3.2.13) lib/rails/engine.rb:479:in `call'
78624
+ railties (3.2.13) lib/rails/application.rb:223:in `call'
78625
+ railties (3.2.13) lib/rails/railtie/configurable.rb:30:in `method_missing'
78626
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:147:in `handle'
78627
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:99:in `rescue in block (2 levels) in start'
78628
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:96:in `block (2 levels) in start'
78629
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `each'
78630
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:86:in `block in start'
78631
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `loop'
78632
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:66:in `start'
78633
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/lib/nack/server.rb:13:in `run'
78634
+ /Users/skozlov/Library/Application Support/Pow/Versions/0.4.0/node_modules/nack/bin/nack_worker:4:in `<main>'
78635
+
78636
+
78637
+ Rendered /Users/skozlov/.rbenv/versions/1.9.3-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.2.13/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (2.6ms)