simple_search_filter 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fc455779e8f861721f29be261683d5b3e953a2cb
4
- data.tar.gz: 9e89de268d5a1cf595d0b7d9bc0457d31b4f06df
3
+ metadata.gz: 82b12ecaf6ae95f72baa5df9923a13639db015e2
4
+ data.tar.gz: a0316818b1e654547ff71c1e04e6c20830701dbc
5
5
  SHA512:
6
- metadata.gz: c1bd3e626a6a0623b910603a608a701258c03d5b9a8f42ae6c337e2febd2839bd8dc865d2d20d234fd78cc6aa1bfda04d65c7a2b8fe540dc99ac0d53db59aee8
7
- data.tar.gz: cd21f206e52f2f04cbe6dba08a6c5ccb2f4738985ed5c33b0ce645956ef4daeda962d4efa19a27562a3836dc572b5ec8a1831b4634676cb00ef5fbc7addd3eb3
6
+ metadata.gz: ee3b3c60112f0bf75c0b2379fd12909ee3cbbb26c7349ea2441c33d2f161a076d1dffc6943f91cccab7a7c50b27768a77954edbef72b54ac6f10b461df25a339
7
+ data.tar.gz: f2effab9d173ceea0ae41723f1ba43b3ac760a2db28f64c6b94bf18fd941bba60080a3704e27b16f0c368866103115ea3eb4fda2479e644e76005e1fe4cc6b0e
@@ -1 +1,5 @@
1
- = f.input field.name, label: field.label, required: false, placeholder: field.placeholder
1
+ - opt_base = {as: :string, required: false, label: field.label, placeholder: field.placeholder}
2
+ - opt_base[:input_html] ||={}
3
+ -# opt_base[:input_html] = opt_base[:input_html].merge({style: "width: 80px"})
4
+ -#= f.input field.name, label: field.label, required: false, placeholder: field.placeholder, input_html: {style: "width: 80px"}
5
+ = f.input field.name, opt_base.merge(field.options)
@@ -1,3 +1,3 @@
1
1
  module SimpleSearchFilter
2
- VERSION = "0.0.8"
2
+ VERSION = "0.0.9"
3
3
  end
@@ -32,9 +32,9 @@ class ProductsController < ApplicationController
32
32
  search_filter :index, {save_session: true, search_method: :post_and_redirect, url: :products_path, search_url: :search_products_path, search_action: :search} do
33
33
  default_order "price", 'asc'
34
34
 
35
- field :title, :string, :text, {label: 'Title', default_value: '', condition: :like_full}
36
- field :price_from, :string, :text, {label: 'Price', default_value: '', condition: :custom, condition_where: 'price >= ?'}
37
- field :price_to, :string, :text, {label: 'to', default_value: '', condition: :custom, condition_where: 'price <= ?'}
35
+ field :title, :string, :text, {label: 'Title', default_value: '', condition: :like_full, input_html: {style: "width: 240px"} }
36
+ field :price_from, :string, :text, {label: 'Price', default_value: '', condition: :custom, condition_where: 'price >= ?', input_html: {style: "width: 140px"} }
37
+ field :price_to, :string, :text, {label: 'to', default_value: '', condition: :custom, condition_where: 'price <= ?', input_html: {style: "width: 140px"} }
38
38
 
39
39
  field :category, :string, :autocomplete, {label: 'Category', default_value: '', ignore_value: '', search_by: :id, source_query: :autocomplete_category_title_categories_path}
40
40
 
@@ -7220,3 +7220,707 @@ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483
7220
7220
 
7221
7221
 
7222
7222
  Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7223
+
7224
+
7225
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:03:15 +0300
7226
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
7227
+ Processing by ProductsController#index as HTML
7228
+ Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.0ms)
7229
+
7230
+ ArgumentError (wrong number of arguments (5 for 3..4)):
7231
+ app/controllers/products_controller.rb:35:in `block in <class:ProductsController>'
7232
+
7233
+
7234
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.0ms)
7235
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (29.0ms)
7236
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
7237
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (172.0ms)
7238
+
7239
+
7240
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:03:28 +0300
7241
+ Processing by ProductsController#index as HTML
7242
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (251.0ms)
7243
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (270.0ms)
7244
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
7245
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
7246
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
7247
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
7248
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
7249
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (31.0ms)
7250
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (36.0ms)
7251
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (378.0ms)
7252
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (4.0ms)
7253
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (18.0ms)
7254
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (493.0ms)
7255
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (505.0ms)
7256
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7257
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7258
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7259
+ Rendered products/index.html.haml within layouts/application (1249.1ms)
7260
+ Completed 200 OK in 3013ms (Views: 2737.2ms | ActiveRecord: 199.0ms)
7261
+
7262
+
7263
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-19 01:03:31 +0300
7264
+
7265
+
7266
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:31 +0300
7267
+
7268
+
7269
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:31 +0300
7270
+
7271
+
7272
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7273
+
7274
+
7275
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7276
+
7277
+
7278
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7279
+
7280
+
7281
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7282
+
7283
+
7284
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7285
+
7286
+
7287
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7288
+
7289
+
7290
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7291
+
7292
+
7293
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7294
+
7295
+
7296
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7297
+
7298
+
7299
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7300
+
7301
+
7302
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7303
+
7304
+
7305
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7306
+
7307
+
7308
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7309
+
7310
+
7311
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7312
+
7313
+
7314
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7315
+
7316
+
7317
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-19 01:03:32 +0300
7318
+
7319
+
7320
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:04:05 +0300
7321
+ Processing by ProductsController#index as HTML
7322
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (5.0ms)
7323
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (11.0ms)
7324
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (17.0ms)
7325
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (24.0ms)
7326
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (31.0ms)
7327
+ Rendered products/index.html.haml within layouts/application (36.0ms)
7328
+ Completed 500 Internal Server Error in 68ms (ActiveRecord: 0.0ms)
7329
+
7330
+ SyntaxError (W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml:1: syntax error, unexpected '\n', expecting =>
7331
+ W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml:2: unterminated string meets end of file
7332
+ W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml:2: syntax error, unexpected end-of-input, expecting ')'):
7333
+ app/views/products/index.html.haml:4:in `_app_views_products_index_html_haml__929043404_33404388'
7334
+
7335
+
7336
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
7337
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (104.0ms)
7338
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.0ms)
7339
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (165.0ms)
7340
+
7341
+
7342
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:04:25 +0300
7343
+ Processing by ProductsController#index as HTML
7344
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (28.0ms)
7345
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (35.0ms)
7346
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (31.0ms)
7347
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (36.0ms)
7348
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
7349
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
7350
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
7351
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (24.0ms)
7352
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (29.0ms)
7353
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (160.0ms)
7354
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
7355
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
7356
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (180.0ms)
7357
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (186.0ms)
7358
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7359
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7360
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7361
+ Rendered products/index.html.haml within layouts/application (266.0ms)
7362
+ Completed 200 OK in 1208ms (Views: 1192.1ms | ActiveRecord: 1.0ms)
7363
+
7364
+
7365
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7366
+
7367
+
7368
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7369
+
7370
+
7371
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7372
+
7373
+
7374
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7375
+
7376
+
7377
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7378
+
7379
+
7380
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7381
+
7382
+
7383
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7384
+
7385
+
7386
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7387
+
7388
+
7389
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7390
+
7391
+
7392
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7393
+
7394
+
7395
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7396
+
7397
+
7398
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7399
+
7400
+
7401
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7402
+
7403
+
7404
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:27 +0300
7405
+
7406
+
7407
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:28 +0300
7408
+
7409
+
7410
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:28 +0300
7411
+
7412
+
7413
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:28 +0300
7414
+
7415
+
7416
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:28 +0300
7417
+
7418
+
7419
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:28 +0300
7420
+
7421
+
7422
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:04:54 +0300
7423
+ Processing by ProductsController#index as HTML
7424
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (42.0ms)
7425
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (49.0ms)
7426
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
7427
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
7428
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
7429
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
7430
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
7431
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (22.0ms)
7432
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
7433
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (143.0ms)
7434
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
7435
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
7436
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (162.0ms)
7437
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (167.0ms)
7438
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7439
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7440
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7441
+ Rendered products/index.html.haml within layouts/application (258.0ms)
7442
+ Completed 200 OK in 1286ms (Views: 1268.1ms | ActiveRecord: 3.0ms)
7443
+
7444
+
7445
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:55 +0300
7446
+
7447
+
7448
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:55 +0300
7449
+
7450
+
7451
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:55 +0300
7452
+
7453
+
7454
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:55 +0300
7455
+
7456
+
7457
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:55 +0300
7458
+
7459
+
7460
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-19 01:04:55 +0300
7461
+
7462
+
7463
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7464
+
7465
+
7466
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7467
+
7468
+
7469
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7470
+
7471
+
7472
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7473
+
7474
+
7475
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7476
+
7477
+
7478
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7479
+
7480
+
7481
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7482
+
7483
+
7484
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7485
+
7486
+
7487
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7488
+
7489
+
7490
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7491
+
7492
+
7493
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7494
+
7495
+
7496
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7497
+
7498
+
7499
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-19 01:04:56 +0300
7500
+
7501
+
7502
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:06:22 +0300
7503
+ Processing by ProductsController#index as HTML
7504
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7505
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7506
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (135.0ms)
7507
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (139.0ms)
7508
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (144.0ms)
7509
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (150.0ms)
7510
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (154.0ms)
7511
+ Rendered products/index.html.haml within layouts/application (158.0ms)
7512
+ Completed 500 Internal Server Error in 176ms (ActiveRecord: 1.0ms)
7513
+
7514
+ ActionView::Template::Error (undefined local variable or method `opt_Base' for #<#<Class:0x4115a30>:0x9075b88>):
7515
+ 1: - opt_base = {as: :text, required: false, label: field.label, placeholder: field.placeholder}
7516
+ 2: - opt_base[:input_html] ||={}
7517
+ 3: - opt_base[:input_html] = opt_Base[:input_html].merge({style: "width: 80px"})
7518
+ 4: -#= f.input field.name, label: field.label, required: false, placeholder: field.placeholder, input_html: {style: "width: 80px"}
7519
+ 5: = f.input field.name, opt_base.merge(field.options)
7520
+ app/views/products/index.html.haml:4:in `_app_views_products_index_html_haml__929043404_33404388'
7521
+
7522
+
7523
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
7524
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (101.0ms)
7525
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.0ms)
7526
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (151.0ms)
7527
+
7528
+
7529
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:06:33 +0300
7530
+ Processing by ProductsController#index as HTML
7531
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (41.0ms)
7532
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (46.0ms)
7533
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
7534
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
7535
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
7536
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
7537
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
7538
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (25.0ms)
7539
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (31.0ms)
7540
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (155.0ms)
7541
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
7542
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
7543
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (175.0ms)
7544
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (186.0ms)
7545
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7546
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7547
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7548
+ Rendered products/index.html.haml within layouts/application (277.0ms)
7549
+ Completed 200 OK in 1131ms (Views: 1117.1ms | ActiveRecord: 2.0ms)
7550
+
7551
+
7552
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-19 01:06:34 +0300
7553
+
7554
+
7555
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7556
+
7557
+
7558
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7559
+
7560
+
7561
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7562
+
7563
+
7564
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7565
+
7566
+
7567
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7568
+
7569
+
7570
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7571
+
7572
+
7573
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7574
+
7575
+
7576
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7577
+
7578
+
7579
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7580
+
7581
+
7582
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7583
+
7584
+
7585
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7586
+
7587
+
7588
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7589
+
7590
+
7591
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7592
+
7593
+
7594
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7595
+
7596
+
7597
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7598
+
7599
+
7600
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7601
+
7602
+
7603
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7604
+
7605
+
7606
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-19 01:06:35 +0300
7607
+
7608
+
7609
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:07:03 +0300
7610
+ Processing by ProductsController#index as HTML
7611
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (25.0ms)
7612
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (29.0ms)
7613
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
7614
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
7615
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
7616
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
7617
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
7618
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (30.0ms)
7619
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (36.0ms)
7620
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (124.0ms)
7621
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
7622
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
7623
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (142.0ms)
7624
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (146.0ms)
7625
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7626
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7627
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7628
+ Rendered products/index.html.haml within layouts/application (225.0ms)
7629
+ Completed 200 OK in 1038ms (Views: 1027.1ms | ActiveRecord: 1.0ms)
7630
+
7631
+
7632
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:04 +0300
7633
+
7634
+
7635
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:04 +0300
7636
+
7637
+
7638
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7639
+
7640
+
7641
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7642
+
7643
+
7644
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7645
+
7646
+
7647
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7648
+
7649
+
7650
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7651
+
7652
+
7653
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7654
+
7655
+
7656
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7657
+
7658
+
7659
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7660
+
7661
+
7662
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7663
+
7664
+
7665
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7666
+
7667
+
7668
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7669
+
7670
+
7671
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7672
+
7673
+
7674
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7675
+
7676
+
7677
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7678
+
7679
+
7680
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7681
+
7682
+
7683
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7684
+
7685
+
7686
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:05 +0300
7687
+
7688
+
7689
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:07:49 +0300
7690
+ Processing by ProductsController#index as HTML
7691
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (33.0ms)
7692
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (40.0ms)
7693
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (35.0ms)
7694
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (40.0ms)
7695
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (22.0ms)
7696
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
7697
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
7698
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (29.0ms)
7699
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (34.0ms)
7700
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (168.0ms)
7701
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
7702
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (6.0ms)
7703
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (193.0ms)
7704
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (200.0ms)
7705
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7706
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7707
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7708
+ Rendered products/index.html.haml within layouts/application (395.0ms)
7709
+ Completed 200 OK in 1310ms (Views: 1262.1ms | ActiveRecord: 23.0ms)
7710
+
7711
+
7712
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-19 01:07:51 +0300
7713
+
7714
+
7715
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:51 +0300
7716
+
7717
+
7718
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:51 +0300
7719
+
7720
+
7721
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:51 +0300
7722
+
7723
+
7724
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:51 +0300
7725
+
7726
+
7727
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:51 +0300
7728
+
7729
+
7730
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:51 +0300
7731
+
7732
+
7733
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:51 +0300
7734
+
7735
+
7736
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:51 +0300
7737
+
7738
+
7739
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7740
+
7741
+
7742
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7743
+
7744
+
7745
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7746
+
7747
+
7748
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7749
+
7750
+
7751
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7752
+
7753
+
7754
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7755
+
7756
+
7757
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7758
+
7759
+
7760
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7761
+
7762
+
7763
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7764
+
7765
+
7766
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-19 01:07:52 +0300
7767
+
7768
+
7769
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:08:02 +0300
7770
+ Processing by ProductsController#index as HTML
7771
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (32.0ms)
7772
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (38.0ms)
7773
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (25.0ms)
7774
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (31.0ms)
7775
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (22.0ms)
7776
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
7777
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
7778
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (42.0ms)
7779
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (48.0ms)
7780
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (173.0ms)
7781
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
7782
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (7.0ms)
7783
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (197.0ms)
7784
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (203.0ms)
7785
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7786
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7787
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7788
+ Rendered products/index.html.haml within layouts/application (402.0ms)
7789
+ Completed 200 OK in 1517ms (Views: 1465.1ms | ActiveRecord: 27.0ms)
7790
+
7791
+
7792
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:04 +0300
7793
+
7794
+
7795
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:04 +0300
7796
+
7797
+
7798
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:04 +0300
7799
+
7800
+
7801
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:04 +0300
7802
+
7803
+
7804
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:04 +0300
7805
+
7806
+
7807
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-19 01:08:04 +0300
7808
+
7809
+
7810
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7811
+
7812
+
7813
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7814
+
7815
+
7816
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7817
+
7818
+
7819
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7820
+
7821
+
7822
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7823
+
7824
+
7825
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7826
+
7827
+
7828
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7829
+
7830
+
7831
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7832
+
7833
+
7834
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7835
+
7836
+
7837
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7838
+
7839
+
7840
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7841
+
7842
+
7843
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7844
+
7845
+
7846
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:05 +0300
7847
+
7848
+
7849
+ Started GET "/products" for 127.0.0.1 at 2015-05-19 01:08:26 +0300
7850
+ Processing by ProductsController#index as HTML
7851
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (22.0ms)
7852
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
7853
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
7854
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
7855
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (24.0ms)
7856
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (38.0ms)
7857
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
7858
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (22.0ms)
7859
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
7860
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (136.0ms)
7861
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
7862
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
7863
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (155.0ms)
7864
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (159.0ms)
7865
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7866
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7867
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7868
+ Rendered products/index.html.haml within layouts/application (343.0ms)
7869
+ Completed 200 OK in 1458ms (Views: 1419.1ms | ActiveRecord: 19.0ms)
7870
+
7871
+
7872
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-19 01:08:28 +0300
7873
+
7874
+
7875
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:28 +0300
7876
+
7877
+
7878
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:28 +0300
7879
+
7880
+
7881
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7882
+
7883
+
7884
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7885
+
7886
+
7887
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7888
+
7889
+
7890
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7891
+
7892
+
7893
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7894
+
7895
+
7896
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7897
+
7898
+
7899
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7900
+
7901
+
7902
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7903
+
7904
+
7905
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7906
+
7907
+
7908
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7909
+
7910
+
7911
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7912
+
7913
+
7914
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7915
+
7916
+
7917
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7918
+
7919
+
7920
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7921
+
7922
+
7923
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7924
+
7925
+
7926
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_search_filter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Ivak
@@ -558,7 +558,6 @@ files:
558
558
  - test/dummy/tmp/cache/assets/development/sprockets/v3.0/znLi_g--cOzgCoKAqtlFPUgWJ9unCsXnEvjrFOVsgt8.cache
559
559
  - test/dummy/tmp/cache/assets/development/sprockets/v3.0/zvGwr55LmRTcpn_qmLf9EFICIXWA4cfH_4nBFi_cfj0.cache
560
560
  - test/dummy/tmp/cache/assets/development/sprockets/v3.0/zxS8Tu3AwLjiFU0cs3pGX-IWrHVCoQBBBbliUPrWe3E.cache
561
- - test/dummy/tmp/pids/server.pid
562
561
  - test/fixtures/categories.yml
563
562
  - test/fixtures/products.yml
564
563
  - test/integration/navigation_test.rb
@@ -1070,7 +1069,6 @@ test_files:
1070
1069
  - test/dummy/tmp/cache/assets/development/sprockets/v3.0/_HqBvRhZwKsB7cuKZoO5r5Ut4SP3y_90m8vbU9guYps.cache
1071
1070
  - test/dummy/tmp/cache/assets/development/sprockets/v3.0/_uTxqC5iwzUGjNZWJUFnxL8-jngVDQtxfl76-1rSO-E.cache
1072
1071
  - test/dummy/tmp/cache/assets/development/sprockets/v3.0/_ZjZ4vRiEy4hUT4dUNx8lMAsZTs_Cqvrb045k4O8sgM.cache
1073
- - test/dummy/tmp/pids/server.pid
1074
1072
  - test/fixtures/categories.yml
1075
1073
  - test/fixtures/products.yml
1076
1074
  - test/integration/navigation_test.rb
@@ -1 +0,0 @@
1
- 8024