rails_sortable 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f13ddffad1bcb7f75baed5b37eb2c78695fabc4f
4
- data.tar.gz: aa42e1a7f5c572f0b8c64e8daae28516d594b10d
3
+ metadata.gz: 800eca2001f697557f08bd3067b7ce97a9828c44
4
+ data.tar.gz: 350a3a1b98fe3d500f61b6aaa13cd86b42c06be6
5
5
  SHA512:
6
- metadata.gz: 80575f28a70f3e46b8dd1ed58c66ada88feb52841388fa2d7ffffd6d890400c25e557caeb36d6a8d7ca59df823c1ac7e2cdcbdeb494f817e3f307ad1feb1f8bc
7
- data.tar.gz: ab4bb864faafe0f3352d846cf9df7e8bcd909be3980247fa3a8668e6ae5428ee5160f3891f9de69c37e7804a2703682837622c0adb5ba92b9019d89a4c18aea8
6
+ metadata.gz: 2582ffb4c1253cfbc654c5de4439886c72334d67690ca374531e4e8e19b0334db19a83562b95c0d93080a0f3aa0c199087b03290b7d08f4d6e48e4c60cbcd4bd
7
+ data.tar.gz: 36ad985ea2c5ec5901e255e7a4a6bffef6e7752c7fcbc90e81c6e53b84bc070e4a51e2687fda3f564ff1198577b17a6615710841c4b119b27c0c50302ccc7b9a
@@ -1,3 +1,3 @@
1
1
  module RailsSortable
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
Binary file
@@ -4186,3 +4186,943 @@ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:02:14 +0900
4186
4186
 
4187
4187
 
4188
4188
  Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:02:14 +0900
4189
+
4190
+
4191
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:25:38 +0900
4192
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4193
+ Processing by ItemsController#index as HTML
4194
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4195
+ Rendered items/index.html.erb within layouts/application (10.6ms)
4196
+ Completed 500 Internal Server Error in 37ms
4197
+
4198
+ ActionView::Template::Error (couldn't find file 'jquery'
4199
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4200
+ 3: <head>
4201
+ 4: <title>Dummy</title>
4202
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4203
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4204
+ 7: <%= csrf_meta_tags %>
4205
+ 8: </head>
4206
+ 9: <body>
4207
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2716893230289681200_70193625376640'
4208
+
4209
+
4210
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
4211
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (18.4ms)
4212
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (26.0ms)
4213
+
4214
+
4215
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:26:08 +0900
4216
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4217
+ Processing by ItemsController#index as HTML
4218
+ Item Load (0.3ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4219
+ Rendered items/index.html.erb within layouts/application (11.4ms)
4220
+ Completed 500 Internal Server Error in 40ms
4221
+
4222
+ ActionView::Template::Error (couldn't find file 'jquery'
4223
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4224
+ 3: <head>
4225
+ 4: <title>Dummy</title>
4226
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4227
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4228
+ 7: <%= csrf_meta_tags %>
4229
+ 8: </head>
4230
+ 9: <body>
4231
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___3266952451994782396_70204016238400'
4232
+
4233
+
4234
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.8ms)
4235
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.7ms)
4236
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.7ms)
4237
+
4238
+
4239
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:27:18 +0900
4240
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
4241
+ Processing by ItemsController#index as HTML
4242
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4243
+ Rendered items/index.html.erb within layouts/application (12.2ms)
4244
+ Completed 500 Internal Server Error in 40ms
4245
+
4246
+ ActionView::Template::Error (couldn't find file 'jquery'
4247
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4248
+ 3: <head>
4249
+ 4: <title>Dummy</title>
4250
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4251
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4252
+ 7: <%= csrf_meta_tags %>
4253
+ 8: </head>
4254
+ 9: <body>
4255
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__4003240969347346071_70278971563780'
4256
+
4257
+
4258
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
4259
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.2ms)
4260
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.9ms)
4261
+
4262
+
4263
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:27:25 +0900
4264
+ Processing by ItemsController#index as HTML
4265
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4266
+ Rendered items/index.html.erb within layouts/application (4.8ms)
4267
+ Completed 500 Internal Server Error in 18ms
4268
+
4269
+ ActionView::Template::Error (couldn't find file 'jquery'
4270
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4271
+ 3: <head>
4272
+ 4: <title>Dummy</title>
4273
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4274
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4275
+ 7: <%= csrf_meta_tags %>
4276
+ 8: </head>
4277
+ 9: <body>
4278
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__4003240969347346071_70278971563780'
4279
+
4280
+
4281
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
4282
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
4283
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.6ms)
4284
+
4285
+
4286
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:28:47 +0900
4287
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4288
+ Processing by ItemsController#index as HTML
4289
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4290
+ Rendered items/index.html.erb within layouts/application (11.4ms)
4291
+ Completed 500 Internal Server Error in 39ms
4292
+
4293
+ ActionView::Template::Error (couldn't find file 'jquery'
4294
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4295
+ 3: <head>
4296
+ 4: <title>Dummy</title>
4297
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4298
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4299
+ 7: <%= csrf_meta_tags %>
4300
+ 8: </head>
4301
+ 9: <body>
4302
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__3072609282580182726_70228532390060'
4303
+
4304
+
4305
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
4306
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.3ms)
4307
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (25.3ms)
4308
+
4309
+
4310
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:38:32 +0900
4311
+ Processing by ItemsController#index as HTML
4312
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4313
+ Rendered items/index.html.erb within layouts/application (8.8ms)
4314
+ Completed 500 Internal Server Error in 19ms
4315
+
4316
+ ActionView::Template::Error (couldn't find file 'jquery'
4317
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4318
+ 3: <head>
4319
+ 4: <title>Dummy</title>
4320
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4321
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4322
+ 7: <%= csrf_meta_tags %>
4323
+ 8: </head>
4324
+ 9: <body>
4325
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__3072609282580182726_70228532390060'
4326
+
4327
+
4328
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
4329
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
4330
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.5ms)
4331
+
4332
+
4333
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:38:34 +0900
4334
+ Processing by ItemsController#index as HTML
4335
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4336
+ Rendered items/index.html.erb within layouts/application (5.4ms)
4337
+ Completed 500 Internal Server Error in 15ms
4338
+
4339
+ ActionView::Template::Error (couldn't find file 'jquery'
4340
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4341
+ 3: <head>
4342
+ 4: <title>Dummy</title>
4343
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4344
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4345
+ 7: <%= csrf_meta_tags %>
4346
+ 8: </head>
4347
+ 9: <body>
4348
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__3072609282580182726_70228532390060'
4349
+
4350
+
4351
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.3ms)
4352
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4353
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.7ms)
4354
+
4355
+
4356
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:38:50 +0900
4357
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4358
+ Processing by ItemsController#index as HTML
4359
+ Item Load (1.1ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4360
+ Rendered items/index.html.erb within layouts/application (48.9ms)
4361
+ Completed 500 Internal Server Error in 159ms
4362
+
4363
+ ActionView::Template::Error (couldn't find file 'jquery'
4364
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4365
+ 3: <head>
4366
+ 4: <title>Dummy</title>
4367
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4368
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4369
+ 7: <%= csrf_meta_tags %>
4370
+ 8: </head>
4371
+ 9: <body>
4372
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2656616074326892728_70101149328740'
4373
+
4374
+
4375
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (4.6ms)
4376
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (69.9ms)
4377
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (100.2ms)
4378
+
4379
+
4380
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:40:19 +0900
4381
+ Processing by ItemsController#index as HTML
4382
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4383
+ Rendered items/index.html.erb within layouts/application (4.9ms)
4384
+ Completed 500 Internal Server Error in 18ms
4385
+
4386
+ ActionView::Template::Error (couldn't find file 'jquery'
4387
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4388
+ 3: <head>
4389
+ 4: <title>Dummy</title>
4390
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4391
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4392
+ 7: <%= csrf_meta_tags %>
4393
+ 8: </head>
4394
+ 9: <body>
4395
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2656616074326892728_70101149328740'
4396
+
4397
+
4398
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
4399
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
4400
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.6ms)
4401
+
4402
+
4403
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:40:30 +0900
4404
+ Processing by ItemsController#index as HTML
4405
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4406
+ Rendered items/index.html.erb within layouts/application (4.8ms)
4407
+ Completed 500 Internal Server Error in 15ms
4408
+
4409
+ ActionView::Template::Error (couldn't find file 'jquery_ujs'
4410
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:13)):
4411
+ 3: <head>
4412
+ 4: <title>Dummy</title>
4413
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4414
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4415
+ 7: <%= csrf_meta_tags %>
4416
+ 8: </head>
4417
+ 9: <body>
4418
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2656616074326892728_70101149328740'
4419
+
4420
+
4421
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
4422
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
4423
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.8ms)
4424
+
4425
+
4426
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:40:34 +0900
4427
+ Processing by ItemsController#index as HTML
4428
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4429
+ Rendered items/index.html.erb within layouts/application (4.9ms)
4430
+ Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.2ms)
4431
+
4432
+
4433
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:40:34 +0900
4434
+
4435
+
4436
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:40:34 +0900
4437
+
4438
+
4439
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:40:34 +0900
4440
+
4441
+
4442
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:40:34 +0900
4443
+
4444
+
4445
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:40:34 +0900
4446
+
4447
+
4448
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:40:34 +0900
4449
+
4450
+
4451
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:41:07 +0900
4452
+ Processing by ItemsController#index as HTML
4453
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4454
+ Rendered items/index.html.erb within layouts/application (5.2ms)
4455
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.2ms)
4456
+
4457
+
4458
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:41:08 +0900
4459
+
4460
+
4461
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:41:08 +0900
4462
+
4463
+
4464
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:41:08 +0900
4465
+
4466
+
4467
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:41:08 +0900
4468
+
4469
+
4470
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:41:08 +0900
4471
+
4472
+
4473
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:41:08 +0900
4474
+
4475
+
4476
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:43:01 +0900
4477
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4478
+ Processing by ItemsController#index as HTML
4479
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4480
+ Rendered items/index.html.erb within layouts/application (11.1ms)
4481
+ Completed 200 OK in 61ms (Views: 58.6ms | ActiveRecord: 0.4ms)
4482
+
4483
+
4484
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:43:02 +0900
4485
+
4486
+
4487
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:43:02 +0900
4488
+
4489
+
4490
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:43:02 +0900
4491
+
4492
+
4493
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:43:02 +0900
4494
+
4495
+
4496
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:43:02 +0900
4497
+
4498
+
4499
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:43:02 +0900
4500
+
4501
+
4502
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:43:24 +0900
4503
+ Processing by ItemsController#index as HTML
4504
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4505
+ Rendered items/index.html.erb within layouts/application (5.2ms)
4506
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.2ms)
4507
+
4508
+
4509
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:43:24 +0900
4510
+
4511
+
4512
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:43:25 +0900
4513
+
4514
+
4515
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:43:25 +0900
4516
+
4517
+
4518
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:43:25 +0900
4519
+
4520
+
4521
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:43:25 +0900
4522
+
4523
+
4524
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:43:25 +0900
4525
+
4526
+
4527
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:43:41 +0900
4528
+ Processing by ItemsController#index as HTML
4529
+ Item Load (0.3ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4530
+ Rendered items/index.html.erb within layouts/application (5.2ms)
4531
+ Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.3ms)
4532
+
4533
+
4534
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:43:42 +0900
4535
+
4536
+
4537
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:43:42 +0900
4538
+
4539
+
4540
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:43:42 +0900
4541
+
4542
+
4543
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:43:42 +0900
4544
+
4545
+
4546
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:43:42 +0900
4547
+
4548
+
4549
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:43:42 +0900
4550
+
4551
+
4552
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:45:46 +0900
4553
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4554
+ Processing by ItemsController#index as HTML
4555
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4556
+ Rendered items/index.html.erb within layouts/application (10.5ms)
4557
+ Completed 200 OK in 85ms (Views: 82.2ms | ActiveRecord: 0.5ms)
4558
+
4559
+
4560
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:45:47 +0900
4561
+
4562
+
4563
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:45:47 +0900
4564
+
4565
+
4566
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:45:47 +0900
4567
+
4568
+
4569
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 23:45:47 +0900
4570
+
4571
+
4572
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:45:47 +0900
4573
+
4574
+
4575
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 23:45:47 +0900
4576
+
4577
+
4578
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:45:47 +0900
4579
+
4580
+
4581
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:45:47 +0900
4582
+
4583
+
4584
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:46:11 +0900
4585
+ Processing by ItemsController#index as HTML
4586
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4587
+ Rendered items/index.html.erb within layouts/application (4.8ms)
4588
+ Completed 500 Internal Server Error in 19ms
4589
+
4590
+ ActionView::Template::Error (couldn't find file 'jquery.ui.rails'
4591
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/vendor/assets/javascripts/rails_sortable.js:1)):
4592
+ 3: <head>
4593
+ 4: <title>Dummy</title>
4594
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4595
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4596
+ 7: <%= csrf_meta_tags %>
4597
+ 8: </head>
4598
+ 9: <body>
4599
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2978927866199906752_70242419813040'
4600
+
4601
+
4602
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
4603
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4604
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.4ms)
4605
+
4606
+
4607
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:46:29 +0900
4608
+ Processing by ItemsController#index as HTML
4609
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4610
+ Rendered items/index.html.erb within layouts/application (7.5ms)
4611
+ Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.2ms)
4612
+
4613
+
4614
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:46:30 +0900
4615
+
4616
+
4617
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:46:30 +0900
4618
+
4619
+
4620
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:46:30 +0900
4621
+
4622
+
4623
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:46:30 +0900
4624
+
4625
+
4626
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 23:46:30 +0900
4627
+
4628
+
4629
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:46:30 +0900
4630
+
4631
+
4632
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 23:46:30 +0900
4633
+
4634
+
4635
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:46:30 +0900
4636
+
4637
+
4638
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:46:56 +0900
4639
+ Processing by ItemsController#index as HTML
4640
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4641
+ Rendered items/index.html.erb within layouts/application (4.7ms)
4642
+ Completed 500 Internal Server Error in 18ms
4643
+
4644
+ ActionView::Template::Error (couldn't find file 'jquery.ui.rails'
4645
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/vendor/assets/javascripts/rails_sortable.js:1)):
4646
+ 3: <head>
4647
+ 4: <title>Dummy</title>
4648
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4649
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4650
+ 7: <%= csrf_meta_tags %>
4651
+ 8: </head>
4652
+ 9: <body>
4653
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2978927866199906752_70242419813040'
4654
+
4655
+
4656
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
4657
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4658
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.4ms)
4659
+
4660
+
4661
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:47:47 +0900
4662
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4663
+ Processing by ItemsController#index as HTML
4664
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4665
+ Rendered items/index.html.erb within layouts/application (10.9ms)
4666
+ Completed 500 Internal Server Error in 44ms
4667
+
4668
+ ActionView::Template::Error (couldn't find file 'jquery.ui.rails'
4669
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/vendor/assets/javascripts/rails_sortable.js:1)):
4670
+ 3: <head>
4671
+ 4: <title>Dummy</title>
4672
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4673
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4674
+ 7: <%= csrf_meta_tags %>
4675
+ 8: </head>
4676
+ 9: <body>
4677
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2797057168147702004_70264297418460'
4678
+
4679
+
4680
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
4681
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.1ms)
4682
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (24.8ms)
4683
+
4684
+
4685
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:52:45 +0900
4686
+ Processing by ItemsController#index as HTML
4687
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4688
+ Rendered items/index.html.erb within layouts/application (4.7ms)
4689
+ Completed 500 Internal Server Error in 21ms
4690
+
4691
+ ActionView::Template::Error (couldn't find file 'jquery.ui.rails'
4692
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/vendor/assets/javascripts/rails_sortable.js:1)):
4693
+ 3: <head>
4694
+ 4: <title>Dummy</title>
4695
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4696
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4697
+ 7: <%= csrf_meta_tags %>
4698
+ 8: </head>
4699
+ 9: <body>
4700
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2797057168147702004_70264297418460'
4701
+
4702
+
4703
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
4704
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4705
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.6ms)
4706
+
4707
+
4708
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:52:51 +0900
4709
+ Processing by ItemsController#index as HTML
4710
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4711
+ Rendered items/index.html.erb within layouts/application (5.1ms)
4712
+ Completed 500 Internal Server Error in 17ms
4713
+
4714
+ ActionView::Template::Error (couldn't find file 'jquery.ui.rails'
4715
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/vendor/assets/javascripts/rails_sortable.js:1)):
4716
+ 3: <head>
4717
+ 4: <title>Dummy</title>
4718
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4719
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4720
+ 7: <%= csrf_meta_tags %>
4721
+ 8: </head>
4722
+ 9: <body>
4723
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2797057168147702004_70264297418460'
4724
+
4725
+
4726
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
4727
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4728
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.2ms)
4729
+
4730
+
4731
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4732
+ Processing by ItemsController#index as HTML
4733
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4734
+ Rendered items/index.html.erb within layouts/application (5.2ms)
4735
+ Completed 200 OK in 55ms (Views: 54.5ms | ActiveRecord: 0.2ms)
4736
+
4737
+
4738
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4739
+
4740
+
4741
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4742
+
4743
+
4744
+ Started GET "/assets/plugin.js?body=1" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4745
+
4746
+
4747
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4748
+
4749
+
4750
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4751
+
4752
+
4753
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4754
+
4755
+
4756
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4757
+
4758
+
4759
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4760
+
4761
+
4762
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:52:59 +0900
4763
+
4764
+
4765
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:53:19 +0900
4766
+ Processing by ItemsController#index as HTML
4767
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4768
+ Rendered items/index.html.erb within layouts/application (4.5ms)
4769
+ Completed 500 Internal Server Error in 18ms
4770
+
4771
+ ActionView::Template::Error (couldn't find file 'jquery.ui.rails'
4772
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/vendor/assets/javascripts/rails_sortable.js:1)):
4773
+ 3: <head>
4774
+ 4: <title>Dummy</title>
4775
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4776
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4777
+ 7: <%= csrf_meta_tags %>
4778
+ 8: </head>
4779
+ 9: <body>
4780
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2797057168147702004_70264297418460'
4781
+
4782
+
4783
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
4784
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
4785
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (9.2ms)
4786
+
4787
+
4788
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:58:16 +0900
4789
+ Processing by ItemsController#index as HTML
4790
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4791
+ Rendered items/index.html.erb within layouts/application (5.2ms)
4792
+ Completed 500 Internal Server Error in 26ms
4793
+
4794
+ ActionView::Template::Error (couldn't find file 'jquery.ui.sortable'
4795
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:15)):
4796
+ 3: <head>
4797
+ 4: <title>Dummy</title>
4798
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
4799
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
4800
+ 7: <%= csrf_meta_tags %>
4801
+ 8: </head>
4802
+ 9: <body>
4803
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb__2797057168147702004_70264297418460'
4804
+
4805
+
4806
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
4807
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.5ms)
4808
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (10.1ms)
4809
+
4810
+
4811
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:58:50 +0900
4812
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4813
+ Processing by ItemsController#index as HTML
4814
+ Item Load (0.3ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4815
+ Rendered items/index.html.erb within layouts/application (10.7ms)
4816
+ Completed 200 OK in 112ms (Views: 110.0ms | ActiveRecord: 0.5ms)
4817
+
4818
+
4819
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4820
+
4821
+
4822
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4823
+
4824
+
4825
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4826
+
4827
+
4828
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4829
+
4830
+
4831
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4832
+
4833
+
4834
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4835
+
4836
+
4837
+ Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4838
+
4839
+
4840
+ Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4841
+
4842
+
4843
+ Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4844
+
4845
+
4846
+ Started GET "/assets/plugin.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4847
+
4848
+
4849
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4850
+
4851
+
4852
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4853
+
4854
+
4855
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:51 +0900
4856
+
4857
+
4858
+ Started POST "/sortable/reorder" for 127.0.0.1 at 2013-12-27 23:58:54 +0900
4859
+ Processing by SortableController#reorder as */*
4860
+ Parameters: {"Item"=>["2", "3", "4", "5", "6", "1", "7", "8", "9", "10"]}
4861
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4862
+  (0.1ms) begin transaction
4863
+ SQL (3.9ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 2 [["sort", 0], ["updated_at", Fri, 27 Dec 2013 14:58:54 UTC +00:00]]
4864
+  (2.5ms) commit transaction
4865
+  (0.1ms) begin transaction
4866
+ SQL (0.4ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 3 [["sort", 1], ["updated_at", Fri, 27 Dec 2013 14:58:54 UTC +00:00]]
4867
+  (0.8ms) commit transaction
4868
+  (0.0ms) begin transaction
4869
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 4 [["sort", 2], ["updated_at", Fri, 27 Dec 2013 14:58:54 UTC +00:00]]
4870
+  (0.7ms) commit transaction
4871
+  (0.0ms) begin transaction
4872
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 5 [["sort", 3], ["updated_at", Fri, 27 Dec 2013 14:58:54 UTC +00:00]]
4873
+  (0.8ms) commit transaction
4874
+  (0.0ms) begin transaction
4875
+ SQL (0.4ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 6 [["sort", 4], ["updated_at", Fri, 27 Dec 2013 14:58:54 UTC +00:00]]
4876
+  (0.5ms) commit transaction
4877
+  (0.0ms) begin transaction
4878
+ SQL (0.4ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 1 [["sort", 5], ["updated_at", Fri, 27 Dec 2013 14:58:54 UTC +00:00]]
4879
+  (0.8ms) commit transaction
4880
+ Rendered text template (0.0ms)
4881
+ Completed 200 OK in 25ms (Views: 1.7ms | ActiveRecord: 12.2ms)
4882
+
4883
+
4884
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4885
+ Processing by ItemsController#index as HTML
4886
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4887
+ Rendered items/index.html.erb within layouts/application (4.9ms)
4888
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.2ms)
4889
+
4890
+
4891
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4892
+
4893
+
4894
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4895
+
4896
+
4897
+ Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4898
+
4899
+
4900
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4901
+
4902
+
4903
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4904
+
4905
+
4906
+ Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4907
+
4908
+
4909
+ Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4910
+
4911
+
4912
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4913
+
4914
+
4915
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4916
+
4917
+
4918
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4919
+
4920
+
4921
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4922
+
4923
+
4924
+ Started GET "/assets/plugin.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4925
+
4926
+
4927
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:58:56 +0900
4928
+
4929
+
4930
+ Started POST "/sortable/reorder" for 127.0.0.1 at 2013-12-27 23:58:58 +0900
4931
+ Processing by SortableController#reorder as */*
4932
+ Parameters: {"Item"=>["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"]}
4933
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4934
+  (0.0ms) begin transaction
4935
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 1 [["sort", 0], ["updated_at", Fri, 27 Dec 2013 14:58:58 UTC +00:00]]
4936
+  (2.4ms) commit transaction
4937
+  (0.1ms) begin transaction
4938
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 2 [["sort", 1], ["updated_at", Fri, 27 Dec 2013 14:58:58 UTC +00:00]]
4939
+  (0.7ms) commit transaction
4940
+  (0.1ms) begin transaction
4941
+ SQL (0.2ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 3 [["sort", 2], ["updated_at", Fri, 27 Dec 2013 14:58:58 UTC +00:00]]
4942
+  (0.7ms) commit transaction
4943
+  (0.1ms) begin transaction
4944
+ SQL (0.4ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 4 [["sort", 3], ["updated_at", Fri, 27 Dec 2013 14:58:58 UTC +00:00]]
4945
+  (0.7ms) commit transaction
4946
+  (0.0ms) begin transaction
4947
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 5 [["sort", 4], ["updated_at", Fri, 27 Dec 2013 14:58:58 UTC +00:00]]
4948
+  (0.7ms) commit transaction
4949
+  (0.1ms) begin transaction
4950
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 6 [["sort", 5], ["updated_at", Fri, 27 Dec 2013 14:58:58 UTC +00:00]]
4951
+  (0.8ms) commit transaction
4952
+ Rendered text template (0.0ms)
4953
+ Completed 200 OK in 16ms (Views: 0.3ms | ActiveRecord: 8.3ms)
4954
+
4955
+
4956
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:58:59 +0900
4957
+ Processing by ItemsController#index as HTML
4958
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
4959
+ Rendered items/index.html.erb within layouts/application (5.1ms)
4960
+ Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.2ms)
4961
+
4962
+
4963
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4964
+
4965
+
4966
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4967
+
4968
+
4969
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4970
+
4971
+
4972
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4973
+
4974
+
4975
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4976
+
4977
+
4978
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4979
+
4980
+
4981
+ Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4982
+
4983
+
4984
+ Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4985
+
4986
+
4987
+ Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4988
+
4989
+
4990
+ Started GET "/assets/plugin.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4991
+
4992
+
4993
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4994
+
4995
+
4996
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
4997
+
4998
+
4999
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:00 +0900
5000
+
5001
+
5002
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:59:28 +0900
5003
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5004
+ Processing by ItemsController#index as HTML
5005
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
5006
+ Rendered items/index.html.erb within layouts/application (10.8ms)
5007
+ Completed 500 Internal Server Error in 43ms
5008
+
5009
+ ActionView::Template::Error (couldn't find file 'jquery.ui.sortable'
5010
+ (in /Users/madmax/Programs/itmammoth/rails_sortable/spec/dummy/app/assets/javascripts/application.js:15)):
5011
+ 3: <head>
5012
+ 4: <title>Dummy</title>
5013
+ 5: <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true, :defer => true %>
5014
+ 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true, :defer => true %>
5015
+ 7: <%= csrf_meta_tags %>
5016
+ 8: </head>
5017
+ 9: <body>
5018
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___3621371010152957938_70304039505280'
5019
+
5020
+
5021
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
5022
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (16.6ms)
5023
+ Rendered /Users/madmax/Programs/itmammoth/rails_sortable/vendor/bundle/ruby/2.1.0/gems/actionpack-4.0.2/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (26.2ms)
5024
+
5025
+
5026
+ Started GET "/items" for 127.0.0.1 at 2013-12-27 23:59:54 +0900
5027
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
5028
+ Processing by ItemsController#index as HTML
5029
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
5030
+ Rendered items/index.html.erb within layouts/application (11.0ms)
5031
+ Completed 200 OK in 103ms (Views: 100.6ms | ActiveRecord: 0.5ms)
5032
+
5033
+
5034
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5035
+
5036
+
5037
+ Started GET "/assets/items.css?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5038
+
5039
+
5040
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5041
+
5042
+
5043
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5044
+
5045
+
5046
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5047
+
5048
+
5049
+ Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5050
+
5051
+
5052
+ Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5053
+
5054
+
5055
+ Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5056
+
5057
+
5058
+ Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5059
+
5060
+
5061
+ Started GET "/assets/plugin.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5062
+
5063
+
5064
+ Started GET "/assets/rails_sortable.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5065
+
5066
+
5067
+ Started GET "/assets/items.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5068
+
5069
+
5070
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-12-27 23:59:55 +0900
5071
+
5072
+
5073
+ Started POST "/sortable/reorder" for 127.0.0.1 at 2013-12-28 00:00:01 +0900
5074
+ Processing by SortableController#reorder as */*
5075
+ Parameters: {"Item"=>["2", "3", "4", "5", "6", "7", "1", "8", "9", "10"]}
5076
+ Item Load (0.2ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
5077
+  (0.1ms) begin transaction
5078
+ SQL (3.5ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 2 [["sort", 0], ["updated_at", Fri, 27 Dec 2013 15:00:01 UTC +00:00]]
5079
+  (2.1ms) commit transaction
5080
+  (0.1ms) begin transaction
5081
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 3 [["sort", 1], ["updated_at", Fri, 27 Dec 2013 15:00:01 UTC +00:00]]
5082
+  (0.9ms) commit transaction
5083
+  (0.0ms) begin transaction
5084
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 4 [["sort", 2], ["updated_at", Fri, 27 Dec 2013 15:00:01 UTC +00:00]]
5085
+  (0.8ms) commit transaction
5086
+  (0.1ms) begin transaction
5087
+ SQL (0.2ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 5 [["sort", 3], ["updated_at", Fri, 27 Dec 2013 15:00:01 UTC +00:00]]
5088
+  (0.8ms) commit transaction
5089
+  (0.0ms) begin transaction
5090
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 6 [["sort", 4], ["updated_at", Fri, 27 Dec 2013 15:00:02 UTC +00:00]]
5091
+  (0.6ms) commit transaction
5092
+  (0.0ms) begin transaction
5093
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 7 [["sort", 5], ["updated_at", Fri, 27 Dec 2013 15:00:02 UTC +00:00]]
5094
+  (0.8ms) commit transaction
5095
+  (0.0ms) begin transaction
5096
+ SQL (0.2ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 1 [["sort", 6], ["updated_at", Fri, 27 Dec 2013 15:00:02 UTC +00:00]]
5097
+  (0.9ms) commit transaction
5098
+ Rendered text template (0.0ms)
5099
+ Completed 200 OK in 26ms (Views: 1.3ms | ActiveRecord: 12.6ms)
5100
+
5101
+
5102
+ Started POST "/sortable/reorder" for 127.0.0.1 at 2013-12-28 00:00:05 +0900
5103
+ Processing by SortableController#reorder as */*
5104
+ Parameters: {"Item"=>["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"]}
5105
+ Item Load (0.3ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
5106
+  (0.1ms) begin transaction
5107
+ SQL (0.4ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 1 [["sort", 0], ["updated_at", Fri, 27 Dec 2013 15:00:05 UTC +00:00]]
5108
+  (1.9ms) commit transaction
5109
+  (0.1ms) begin transaction
5110
+ SQL (0.4ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 2 [["sort", 1], ["updated_at", Fri, 27 Dec 2013 15:00:05 UTC +00:00]]
5111
+  (0.7ms) commit transaction
5112
+  (0.1ms) begin transaction
5113
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 3 [["sort", 2], ["updated_at", Fri, 27 Dec 2013 15:00:05 UTC +00:00]]
5114
+  (0.6ms) commit transaction
5115
+  (0.1ms) begin transaction
5116
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 4 [["sort", 3], ["updated_at", Fri, 27 Dec 2013 15:00:05 UTC +00:00]]
5117
+  (0.7ms) commit transaction
5118
+  (0.1ms) begin transaction
5119
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 5 [["sort", 4], ["updated_at", Fri, 27 Dec 2013 15:00:05 UTC +00:00]]
5120
+  (0.6ms) commit transaction
5121
+  (0.1ms) begin transaction
5122
+ SQL (0.4ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 6 [["sort", 5], ["updated_at", Fri, 27 Dec 2013 15:00:05 UTC +00:00]]
5123
+  (0.7ms) commit transaction
5124
+  (0.1ms) begin transaction
5125
+ SQL (0.3ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 7 [["sort", 6], ["updated_at", Fri, 27 Dec 2013 15:00:05 UTC +00:00]]
5126
+  (0.6ms) commit transaction
5127
+ Rendered text template (0.0ms)
5128
+ Completed 200 OK in 20ms (Views: 0.3ms | ActiveRecord: 9.1ms)
@@ -267,3 +267,93 @@ Completed 200 OK in 8ms (Views: 4.2ms | ActiveRecord: 0.6ms)
267
267
  Item Load (0.1ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 2]]
268
268
  Item Load (0.1ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 3]]
269
269
   (1.9ms) rollback transaction
270
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
271
+  (0.1ms) begin transaction
272
+  (0.0ms) SAVEPOINT active_record_1
273
+ SQL (3.0ms) INSERT INTO "items" ("created_at", "sort", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 27 Dec 2013 14:28:03 UTC +00:00], ["sort", 0], ["updated_at", Fri, 27 Dec 2013 14:28:03 UTC +00:00]]
274
+  (0.1ms) RELEASE SAVEPOINT active_record_1
275
+  (0.0ms) SAVEPOINT active_record_1
276
+ SQL (0.3ms) INSERT INTO "items" ("created_at", "sort", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 27 Dec 2013 14:28:03 UTC +00:00], ["sort", 1], ["updated_at", Fri, 27 Dec 2013 14:28:03 UTC +00:00]]
277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
278
+  (0.0ms) SAVEPOINT active_record_1
279
+ SQL (0.1ms) INSERT INTO "items" ("created_at", "sort", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 27 Dec 2013 14:28:03 UTC +00:00], ["sort", 2], ["updated_at", Fri, 27 Dec 2013 14:28:03 UTC +00:00]]
280
+  (0.0ms) RELEASE SAVEPOINT active_record_1
281
+ Processing by SortableController#reorder as HTML
282
+ Parameters: {"Item"=>["1", "3", "2"]}
283
+ Item Load (0.1ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
284
+  (0.0ms) SAVEPOINT active_record_1
285
+ SQL (0.2ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 3 [["sort", 1], ["updated_at", Fri, 27 Dec 2013 14:28:03 UTC +00:00]]
286
+  (0.1ms) RELEASE SAVEPOINT active_record_1
287
+  (0.1ms) SAVEPOINT active_record_1
288
+ SQL (0.2ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 2 [["sort", 2], ["updated_at", Fri, 27 Dec 2013 14:28:03 UTC +00:00]]
289
+  (0.1ms) RELEASE SAVEPOINT active_record_1
290
+ Rendered text template (0.0ms)
291
+ Completed 200 OK in 11ms (Views: 5.9ms | ActiveRecord: 0.8ms)
292
+ Item Load (0.2ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 1]]
293
+ Item Load (0.1ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 2]]
294
+ Item Load (0.1ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 3]]
295
+  (1.9ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+  (0.1ms) rollback transaction
298
+  (0.0ms) begin transaction
299
+  (0.1ms) rollback transaction
300
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
301
+  (0.1ms) begin transaction
302
+  (0.0ms) SAVEPOINT active_record_1
303
+ SQL (3.6ms) INSERT INTO "items" ("created_at", "sort", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 27 Dec 2013 14:28:21 UTC +00:00], ["sort", 0], ["updated_at", Fri, 27 Dec 2013 14:28:21 UTC +00:00]]
304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
305
+  (0.0ms) SAVEPOINT active_record_1
306
+ SQL (0.3ms) INSERT INTO "items" ("created_at", "sort", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 27 Dec 2013 14:28:21 UTC +00:00], ["sort", 1], ["updated_at", Fri, 27 Dec 2013 14:28:21 UTC +00:00]]
307
+  (0.0ms) RELEASE SAVEPOINT active_record_1
308
+  (0.0ms) SAVEPOINT active_record_1
309
+ SQL (0.1ms) INSERT INTO "items" ("created_at", "sort", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 27 Dec 2013 14:28:21 UTC +00:00], ["sort", 2], ["updated_at", Fri, 27 Dec 2013 14:28:21 UTC +00:00]]
310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
311
+ Processing by SortableController#reorder as HTML
312
+ Parameters: {"Item"=>["1", "3", "2"]}
313
+ Item Load (0.1ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
314
+  (0.0ms) SAVEPOINT active_record_1
315
+ SQL (0.2ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 3 [["sort", 1], ["updated_at", Fri, 27 Dec 2013 14:28:21 UTC +00:00]]
316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
317
+  (0.0ms) SAVEPOINT active_record_1
318
+ SQL (0.1ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 2 [["sort", 2], ["updated_at", Fri, 27 Dec 2013 14:28:21 UTC +00:00]]
319
+  (0.0ms) RELEASE SAVEPOINT active_record_1
320
+ Rendered text template (0.0ms)
321
+ Completed 200 OK in 10ms (Views: 5.9ms | ActiveRecord: 0.5ms)
322
+ Item Load (0.1ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 1]]
323
+ Item Load (0.1ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 2]]
324
+ Item Load (0.0ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 3]]
325
+  (1.8ms) rollback transaction
326
+  (0.1ms) begin transaction
327
+  (0.1ms) rollback transaction
328
+  (0.0ms) begin transaction
329
+  (0.0ms) rollback transaction
330
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
331
+  (0.1ms) begin transaction
332
+  (0.1ms) SAVEPOINT active_record_1
333
+ SQL (3.1ms) INSERT INTO "items" ("created_at", "sort", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 27 Dec 2013 15:02:30 UTC +00:00], ["sort", 0], ["updated_at", Fri, 27 Dec 2013 15:02:30 UTC +00:00]]
334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
335
+  (0.0ms) SAVEPOINT active_record_1
336
+ SQL (0.3ms) INSERT INTO "items" ("created_at", "sort", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 27 Dec 2013 15:02:30 UTC +00:00], ["sort", 1], ["updated_at", Fri, 27 Dec 2013 15:02:30 UTC +00:00]]
337
+  (0.0ms) RELEASE SAVEPOINT active_record_1
338
+  (0.1ms) SAVEPOINT active_record_1
339
+ SQL (0.1ms) INSERT INTO "items" ("created_at", "sort", "updated_at") VALUES (?, ?, ?) [["created_at", Fri, 27 Dec 2013 15:02:30 UTC +00:00], ["sort", 2], ["updated_at", Fri, 27 Dec 2013 15:02:30 UTC +00:00]]
340
+  (0.0ms) RELEASE SAVEPOINT active_record_1
341
+ Processing by SortableController#reorder as HTML
342
+ Parameters: {"Item"=>["1", "3", "2"]}
343
+ Item Load (0.1ms) SELECT "items".* FROM "items" ORDER BY "items"."sort" ASC
344
+  (0.0ms) SAVEPOINT active_record_1
345
+ SQL (0.4ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 3 [["sort", 1], ["updated_at", Fri, 27 Dec 2013 15:02:30 UTC +00:00]]
346
+  (0.1ms) RELEASE SAVEPOINT active_record_1
347
+  (0.1ms) SAVEPOINT active_record_1
348
+ SQL (0.2ms) UPDATE "items" SET "sort" = ?, "updated_at" = ? WHERE "items"."id" = 2 [["sort", 2], ["updated_at", Fri, 27 Dec 2013 15:02:30 UTC +00:00]]
349
+  (0.1ms) RELEASE SAVEPOINT active_record_1
350
+ Rendered text template (0.0ms)
351
+ Completed 200 OK in 13ms (Views: 6.9ms | ActiveRecord: 0.9ms)
352
+ Item Load (0.1ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 1]]
353
+ Item Load (0.1ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 2]]
354
+ Item Load (0.1ms) SELECT "items".* FROM "items" WHERE "items"."id" = ? ORDER BY "items"."sort" ASC LIMIT 1 [["id", 3]]
355
+  (1.8ms) rollback transaction
356
+  (0.1ms) begin transaction
357
+  (0.1ms) rollback transaction
358
+  (0.0ms) begin transaction
359
+  (0.0ms) rollback transaction
@@ -0,0 +1,17 @@
1
+ (function($) {
2
+
3
+ $.fn.railsSortable = function(options) {
4
+ var defaults = {
5
+ axis: 'y',
6
+ scroll: 'true'
7
+ };
8
+
9
+ var setting = $.extend(defaults, options);
10
+ setting["update"] = function() {
11
+ $.post("/sortable/reorder", $(this).sortable('serialize'))
12
+ }
13
+
14
+ this.sortable(setting);
15
+ };
16
+
17
+ })(jQuery);
@@ -1,17 +1 @@
1
- (function($) {
2
-
3
- $.fn.railsSortable = function(options) {
4
- var defaults = {
5
- axis: 'y',
6
- scroll: 'true'
7
- };
8
-
9
- var setting = $.extend(defaults, options);
10
- setting["update"] = function() {
11
- $.post("/sortable/reorder", $(this).sortable('serialize'))
12
- }
13
-
14
- this.sortable(setting);
15
- };
16
-
17
- })(jQuery);
1
+ //= require_tree .
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_sortable
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - itmammoth
@@ -24,6 +24,34 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '4.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jquery-rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jquery-ui-rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '4.1'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '4.1'
27
55
  - !ruby/object:Gem::Dependency
28
56
  name: sqlite3
29
57
  requirement: !ruby/object:Gem::Requirement
@@ -148,6 +176,7 @@ files:
148
176
  - spec/dummy/tmp/cache/assets/development/sprockets/70de4d1e613727407438e972a9099dfd
149
177
  - spec/dummy/tmp/cache/assets/development/sprockets/71418eee6104b64017eb6e6a1f2773c4
150
178
  - spec/dummy/tmp/cache/assets/development/sprockets/72ac123f6449bd8bef14d2eab5098f14
179
+ - spec/dummy/tmp/cache/assets/development/sprockets/772721000553488eb7c7ab7d7227d523
151
180
  - spec/dummy/tmp/cache/assets/development/sprockets/7c69465efeecee1a50197180d6684639
152
181
  - spec/dummy/tmp/cache/assets/development/sprockets/7c7385263be91392fe4b3ebac4e30c18
153
182
  - spec/dummy/tmp/cache/assets/development/sprockets/87d94fb98d5bd32dfd9d145e5b837a83
@@ -170,7 +199,9 @@ files:
170
199
  - spec/dummy/tmp/cache/assets/development/sprockets/d4d4f33a44b8bd5e03a00ac263ac59d8
171
200
  - spec/dummy/tmp/cache/assets/development/sprockets/d69e40330afbc5a33c238ac4dfbd86a6
172
201
  - spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
202
+ - spec/dummy/tmp/cache/assets/development/sprockets/d9c4872ec9b791bd126278e92b90b65e
173
203
  - spec/dummy/tmp/cache/assets/development/sprockets/df136c2e2fc74151ed1324d5fd05481e
204
+ - spec/dummy/tmp/cache/assets/development/sprockets/e53e5796f1d20035e44b39e6e98503b1
174
205
  - spec/dummy/tmp/cache/assets/development/sprockets/e84cf0ef44a46fdbcc61114872eb0714
175
206
  - spec/dummy/tmp/cache/assets/development/sprockets/e9bb2f00040ed550d231427ad03b236e
176
207
  - spec/dummy/tmp/cache/assets/development/sprockets/ecbc5574068be4c5270f875b71d7e95a
@@ -181,6 +212,7 @@ files:
181
212
  - spec/dummy/tmp/cache/assets/development/sprockets/ff209c6e804d4f56d185430b6ed27bc4
182
213
  - spec/helpers/enumerable_spec.rb
183
214
  - spec/spec_helper.rb
215
+ - vendor/assets/javascripts/plugin.js
184
216
  - vendor/assets/javascripts/rails_sortable.js
185
217
  homepage: https://github.com/itmammoth/rails_sortable
186
218
  licenses:
@@ -286,6 +318,7 @@ test_files:
286
318
  - spec/dummy/tmp/cache/assets/development/sprockets/70de4d1e613727407438e972a9099dfd
287
319
  - spec/dummy/tmp/cache/assets/development/sprockets/71418eee6104b64017eb6e6a1f2773c4
288
320
  - spec/dummy/tmp/cache/assets/development/sprockets/72ac123f6449bd8bef14d2eab5098f14
321
+ - spec/dummy/tmp/cache/assets/development/sprockets/772721000553488eb7c7ab7d7227d523
289
322
  - spec/dummy/tmp/cache/assets/development/sprockets/7c69465efeecee1a50197180d6684639
290
323
  - spec/dummy/tmp/cache/assets/development/sprockets/7c7385263be91392fe4b3ebac4e30c18
291
324
  - spec/dummy/tmp/cache/assets/development/sprockets/87d94fb98d5bd32dfd9d145e5b837a83
@@ -308,7 +341,9 @@ test_files:
308
341
  - spec/dummy/tmp/cache/assets/development/sprockets/d4d4f33a44b8bd5e03a00ac263ac59d8
309
342
  - spec/dummy/tmp/cache/assets/development/sprockets/d69e40330afbc5a33c238ac4dfbd86a6
310
343
  - spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6
344
+ - spec/dummy/tmp/cache/assets/development/sprockets/d9c4872ec9b791bd126278e92b90b65e
311
345
  - spec/dummy/tmp/cache/assets/development/sprockets/df136c2e2fc74151ed1324d5fd05481e
346
+ - spec/dummy/tmp/cache/assets/development/sprockets/e53e5796f1d20035e44b39e6e98503b1
312
347
  - spec/dummy/tmp/cache/assets/development/sprockets/e84cf0ef44a46fdbcc61114872eb0714
313
348
  - spec/dummy/tmp/cache/assets/development/sprockets/e9bb2f00040ed550d231427ad03b236e
314
349
  - spec/dummy/tmp/cache/assets/development/sprockets/ecbc5574068be4c5270f875b71d7e95a