simple_search_filter 0.0.6 → 0.0.8

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: 948f10d4decb61a489c6f1e081c75a01094c728e
4
- data.tar.gz: 22b6e499e1666659228654594b75ba3a0306fd85
3
+ metadata.gz: fc455779e8f861721f29be261683d5b3e953a2cb
4
+ data.tar.gz: 9e89de268d5a1cf595d0b7d9bc0457d31b4f06df
5
5
  SHA512:
6
- metadata.gz: 80c796a1515bed900f737624f7e7d274f8dccf7f91ed08539ebbfac11142744cab74ae0480dad6cc15972603bcac362b4b22072572a5e32c18d5e53f2110dfc0
7
- data.tar.gz: a6dc32aff348e96b26e9232ef48d58b527ceab3c198d05faf7697055a7b376f1c1da9f0a49cca699dac2d4018b006e6fd72e628f8f43a47d59a25e2ccf3ae945
6
+ metadata.gz: c1bd3e626a6a0623b910603a608a701258c03d5b9a8f42ae6c337e2febd2839bd8dc865d2d20d234fd78cc6aa1bfda04d65c7a2b8fe540dc99ac0d53db59aee8
7
+ data.tar.gz: cd21f206e52f2f04cbe6dba08a6c5ccb2f4738985ed5c33b0ce645956ef4daeda962d4efa19a27562a3836dc572b5ec8a1831b4634676cb00ef5fbc7addd3eb3
@@ -4,10 +4,9 @@
4
4
  - v = filter.v(name)
5
5
 
6
6
 
7
- - if formtype=='text'
8
- %input(type="text" class="form-control" id="filter[#{name}]" name="filter[#{name}]" placeholder="#{f.placeholder}" value="#{v}" )
7
+ - tpl = 'simple_search_filter/fields/'+formtype.to_s
8
+
9
+ = render tpl, filter: filter, field: field
9
10
 
10
- - elsif formtype=='hidden'
11
- %input(type="hidden" class="form-control" id="filter[#{name}]" name="filter[#{name}]" value="#{v}")
12
11
 
13
12
 
@@ -3,20 +3,11 @@
3
3
  - name ||= field.name.to_s
4
4
  - v = filter.v(name)
5
5
 
6
- - if formtype=='empty'
7
6
 
8
- - elsif formtype=='text'
9
- = f.input name, label: field.label, required: false
10
7
 
11
- - elsif formtype=='hidden'
12
- = f.input name, as: :hidden
8
+ - if formtype=='empty'
13
9
 
14
- - elsif formtype=='select'
15
- - opt_base = {as: :select, required: false}
16
- = f.input name, opt_base.merge(field.options)
10
+ - else
11
+ - tpl = 'simple_search_filter/fields_simple_form/'+formtype.to_s
17
12
 
18
- - elsif formtype=='autocomplete'
19
- - opt_base = {as: :autocomplete, required: false}
20
- - url = send(field.options[:source_query])
21
- - field.options[:source_query] = url
22
- = f.input name, opt_base.merge(field.options)
13
+ = render tpl, f: f, filter: filter, field: field, name: name
@@ -0,0 +1 @@
1
+ %input(type="hidden" class="form-control" id="filter[#{name}]" name="filter[#{name}]" value="#{v}")
@@ -0,0 +1 @@
1
+ %input(type="text" class="form-control" id="filter[#{name}]" name="filter[#{name}]" placeholder="#{f.placeholder}" value="#{v}" )
@@ -0,0 +1,4 @@
1
+ - opt_base = {as: :autocomplete, required: false, placeholder: field.placeholder}
2
+ - field.options[:source_query] = send(field.options[:source_query])
3
+
4
+ = f.input field.name, opt_base.merge(field.options)
@@ -0,0 +1 @@
1
+ = f.input field.name, as: :hidden
@@ -0,0 +1,2 @@
1
+ - opt_base = {as: :select, required: false, placeholder: field.placeholder}
2
+ = f.input field.name, opt_base.merge(field.options)
@@ -0,0 +1 @@
1
+ = f.input field.name, label: field.label, required: false, placeholder: field.placeholder
@@ -55,7 +55,7 @@ module SimpleSearchFilter
55
55
 
56
56
 
57
57
  def placeholder
58
- @options[:placeholder] || ''
58
+ @options[:placeholder] || @options[:label] || ''
59
59
  end
60
60
 
61
61
  def label
@@ -1,3 +1,3 @@
1
1
  module SimpleSearchFilter
2
- VERSION = "0.0.6"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -6524,3 +6524,699 @@ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483
6524
6524
 
6525
6525
 
6526
6526
  Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-18 22:03:53 +0300
6527
+
6528
+
6529
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:30:05 +0300
6530
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
6531
+ Processing by ProductsController#index as HTML
6532
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
6533
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
6534
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields/_text.html.haml (213.0ms)
6535
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (227.0ms)
6536
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (236.0ms)
6537
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (302.0ms)
6538
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (314.0ms)
6539
+ Rendered products/index.html.haml within layouts/application (347.0ms)
6540
+ Completed 500 Internal Server Error in 409ms (ActiveRecord: 20.0ms)
6541
+
6542
+ ActionView::Template::Error (undefined local variable or method `name' for #<#<Class:0x4b7bf18>:0x4b4ecc0>):
6543
+ 1: %input(type="text" class="form-control" id="filter[#{name}]" name="filter[#{name}]" placeholder="#{f.placeholder}" value="#{v}" )
6544
+ app/views/products/index.html.haml:4:in `_app_views_products_index_html_haml__67395901_34465620'
6545
+
6546
+
6547
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
6548
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (81.0ms)
6549
+ 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)
6550
+ 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 (118.0ms)
6551
+
6552
+
6553
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:31:06 +0300
6554
+ Processing by ProductsController#index as HTML
6555
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
6556
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
6557
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields/_text.html.haml (108.0ms)
6558
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (112.0ms)
6559
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (116.0ms)
6560
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (122.0ms)
6561
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (126.0ms)
6562
+ Rendered products/index.html.haml within layouts/application (130.0ms)
6563
+ Completed 500 Internal Server Error in 149ms (ActiveRecord: 1.0ms)
6564
+
6565
+ ActionView::Template::Error (undefined local variable or method `name' for #<#<Class:0x4b7bf18>:0x70adff0>):
6566
+ 1: %input(type="text" class="form-control" id="filter[#{name}]" name="filter[#{name}]" placeholder="#{f.placeholder}" value="#{v}" )
6567
+ app/views/products/index.html.haml:4:in `_app_views_products_index_html_haml__67395901_34465620'
6568
+
6569
+
6570
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
6571
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (82.0ms)
6572
+ 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)
6573
+ 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 (122.0ms)
6574
+
6575
+
6576
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:34:57 +0300
6577
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
6578
+ Processing by ProductsController#index as HTML
6579
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
6580
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
6581
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields/_text.html.haml (250.0ms)
6582
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (263.0ms)
6583
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (273.0ms)
6584
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (348.0ms)
6585
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (362.0ms)
6586
+ Rendered products/index.html.haml within layouts/application (398.0ms)
6587
+ Completed 500 Internal Server Error in 456ms (ActiveRecord: 18.0ms)
6588
+
6589
+ ActionView::Template::Error (undefined local variable or method `name' for #<#<Class:0x73d7120>:0x72966c0>):
6590
+ 1: %input(type="text" class="form-control" id="filter[#{name}]" name="filter[#{name}]" placeholder="#{f.placeholder}" value="#{v}" )
6591
+ app/views/products/index.html.haml:4:in `_app_views_products_index_html_haml___260960221_58287264'
6592
+
6593
+
6594
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
6595
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (105.0ms)
6596
+ 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 (6.0ms)
6597
+ 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 (156.0ms)
6598
+
6599
+
6600
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:35:52 +0300
6601
+ Processing by ProductsController#index as HTML
6602
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
6603
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
6604
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields/_text.html.haml (116.0ms)
6605
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (135.0ms)
6606
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (139.0ms)
6607
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (144.0ms)
6608
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (149.0ms)
6609
+ Rendered products/index.html.haml within layouts/application (153.0ms)
6610
+ Completed 500 Internal Server Error in 172ms (ActiveRecord: 1.0ms)
6611
+
6612
+ ActionView::Template::Error (undefined method `placeholder' for #<SimpleForm::FormBuilder:0x506fad8>):
6613
+ 1: %input(type="text" class="form-control" id="filter[#{name}]" name="filter[#{name}]" placeholder="#{f.placeholder}" value="#{v}" )
6614
+ app/views/products/index.html.haml:4:in `_app_views_products_index_html_haml___260960221_58287264'
6615
+
6616
+
6617
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
6618
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (112.0ms)
6619
+ 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 (6.0ms)
6620
+ 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 (177.0ms)
6621
+
6622
+
6623
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:37:41 +0300
6624
+ Processing by ProductsController#index as HTML
6625
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (97.0ms)
6626
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (111.0ms)
6627
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (24.0ms)
6628
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
6629
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (26.0ms)
6630
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (30.0ms)
6631
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
6632
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (40.0ms)
6633
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (45.0ms)
6634
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (234.0ms)
6635
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (5.0ms)
6636
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (14.0ms)
6637
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (267.0ms)
6638
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (271.0ms)
6639
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
6640
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
6641
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 AND category_id= 1 )
6642
+ Rendered products/index.html.haml within layouts/application (365.0ms)
6643
+ Completed 200 OK in 1880ms (Views: 1869.1ms | ActiveRecord: 1.0ms)
6644
+
6645
+
6646
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6647
+
6648
+
6649
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6650
+
6651
+
6652
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6653
+
6654
+
6655
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6656
+
6657
+
6658
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6659
+
6660
+
6661
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6662
+
6663
+
6664
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6665
+
6666
+
6667
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6668
+
6669
+
6670
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6671
+
6672
+
6673
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6674
+
6675
+
6676
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6677
+
6678
+
6679
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6680
+
6681
+
6682
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:43 +0300
6683
+
6684
+
6685
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:44 +0300
6686
+
6687
+
6688
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:44 +0300
6689
+
6690
+
6691
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:44 +0300
6692
+
6693
+
6694
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:44 +0300
6695
+
6696
+
6697
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:44 +0300
6698
+
6699
+
6700
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-18 22:37:44 +0300
6701
+
6702
+
6703
+ Started GET "/categories/autocomplete_category_title?q=fr" for 127.0.0.1 at 2015-05-18 22:37:47 +0300
6704
+ Processing by CategoriesController#autocomplete_category_title as JSON
6705
+ Parameters: {"q"=>"fr"}
6706
+ Category Load (1.0ms) SELECT categories.id, categories.title FROM `categories` WHERE (LOWER(categories.title) LIKE 'fr%') ORDER BY categories.title ASC LIMIT 10
6707
+ Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 1.0ms)
6708
+
6709
+
6710
+ Started GET "/categories/autocomplete_category_title?q=fr" for 127.0.0.1 at 2015-05-18 22:37:47 +0300
6711
+ Processing by CategoriesController#autocomplete_category_title as JSON
6712
+ Parameters: {"q"=>"fr"}
6713
+ Category Load (1.0ms) SELECT categories.id, categories.title FROM `categories` WHERE (LOWER(categories.title) LIKE 'fr%') ORDER BY categories.title ASC LIMIT 10
6714
+ Completed 200 OK in 8ms (Views: 0.0ms | ActiveRecord: 1.0ms)
6715
+
6716
+
6717
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-18 22:37:52 +0300
6718
+ Processing by ProductsController#search as HTML
6719
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"mSlIaoGL2qqe4IMNnSeAeGoYCQr/4VQhq4m9xIM8uaS6VC2uwzrWyf66tAqjK+Cu91P97SeE1SSRudUH9ettYw==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"1", "category"=>"Fruits"}}
6720
+ Redirected to http://localhost:3000/products
6721
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
6722
+
6723
+
6724
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:37:52 +0300
6725
+ Processing by ProductsController#index as HTML
6726
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (25.0ms)
6727
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (29.0ms)
6728
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (23.0ms)
6729
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
6730
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (33.0ms)
6731
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (37.0ms)
6732
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
6733
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (25.0ms)
6734
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (29.0ms)
6735
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (143.0ms)
6736
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
6737
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
6738
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (159.0ms)
6739
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (163.0ms)
6740
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
6741
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
6742
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 AND category_id= 1 )
6743
+ Rendered products/index.html.haml within layouts/application (231.0ms)
6744
+ Completed 200 OK in 1030ms (Views: 1019.1ms | ActiveRecord: 1.0ms)
6745
+
6746
+
6747
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:38:11 +0300
6748
+ Processing by ProductsController#index as HTML
6749
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (25.0ms)
6750
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (29.0ms)
6751
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
6752
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
6753
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
6754
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
6755
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
6756
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (25.0ms)
6757
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (30.0ms)
6758
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (122.0ms)
6759
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
6760
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
6761
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (139.0ms)
6762
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (144.0ms)
6763
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
6764
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
6765
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 AND category_id= 1 )
6766
+ Rendered products/index.html.haml within layouts/application (219.0ms)
6767
+ Completed 200 OK in 986ms (Views: 976.1ms | ActiveRecord: 1.0ms)
6768
+
6769
+
6770
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:12 +0300
6771
+
6772
+
6773
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:12 +0300
6774
+
6775
+
6776
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:12 +0300
6777
+
6778
+
6779
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-18 22:38:12 +0300
6780
+
6781
+
6782
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6783
+
6784
+
6785
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6786
+
6787
+
6788
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6789
+
6790
+
6791
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6792
+
6793
+
6794
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6795
+
6796
+
6797
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6798
+
6799
+
6800
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6801
+
6802
+
6803
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6804
+
6805
+
6806
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6807
+
6808
+
6809
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6810
+
6811
+
6812
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6813
+
6814
+
6815
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6816
+
6817
+
6818
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6819
+
6820
+
6821
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6822
+
6823
+
6824
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:13 +0300
6825
+
6826
+
6827
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:38:23 +0300
6828
+ Processing by ProductsController#index as HTML
6829
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (22.0ms)
6830
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
6831
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
6832
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (19.0ms)
6833
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
6834
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
6835
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
6836
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (25.0ms)
6837
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
6838
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (115.0ms)
6839
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
6840
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
6841
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (132.0ms)
6842
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (136.0ms)
6843
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
6844
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
6845
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 AND category_id= 1 )
6846
+ Rendered products/index.html.haml within layouts/application (214.0ms)
6847
+ Completed 200 OK in 975ms (Views: 963.1ms | ActiveRecord: 3.0ms)
6848
+
6849
+
6850
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6851
+
6852
+
6853
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6854
+
6855
+
6856
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6857
+
6858
+
6859
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6860
+
6861
+
6862
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6863
+
6864
+
6865
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6866
+
6867
+
6868
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6869
+
6870
+
6871
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6872
+
6873
+
6874
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6875
+
6876
+
6877
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6878
+
6879
+
6880
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6881
+
6882
+
6883
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:24 +0300
6884
+
6885
+
6886
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:25 +0300
6887
+
6888
+
6889
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:25 +0300
6890
+
6891
+
6892
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:25 +0300
6893
+
6894
+
6895
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:25 +0300
6896
+
6897
+
6898
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:25 +0300
6899
+
6900
+
6901
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:25 +0300
6902
+
6903
+
6904
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-18 22:38:25 +0300
6905
+
6906
+
6907
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:39:08 +0300
6908
+ Processing by ProductsController#index as HTML
6909
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (27.0ms)
6910
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (32.0ms)
6911
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
6912
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
6913
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
6914
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
6915
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
6916
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (35.0ms)
6917
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (39.0ms)
6918
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (137.0ms)
6919
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
6920
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
6921
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (155.0ms)
6922
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (159.0ms)
6923
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
6924
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
6925
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 AND category_id= 1 )
6926
+ Rendered products/index.html.haml within layouts/application (226.0ms)
6927
+ Completed 200 OK in 1029ms (Views: 1017.1ms | ActiveRecord: 2.0ms)
6928
+
6929
+
6930
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6931
+
6932
+
6933
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6934
+
6935
+
6936
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6937
+
6938
+
6939
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6940
+
6941
+
6942
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6943
+
6944
+
6945
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6946
+
6947
+
6948
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6949
+
6950
+
6951
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6952
+
6953
+
6954
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6955
+
6956
+
6957
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:09 +0300
6958
+
6959
+
6960
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:10 +0300
6961
+
6962
+
6963
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:10 +0300
6964
+
6965
+
6966
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:10 +0300
6967
+
6968
+
6969
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:10 +0300
6970
+
6971
+
6972
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:10 +0300
6973
+
6974
+
6975
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:10 +0300
6976
+
6977
+
6978
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:10 +0300
6979
+
6980
+
6981
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:10 +0300
6982
+
6983
+
6984
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-18 22:39:10 +0300
6985
+
6986
+
6987
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:39:59 +0300
6988
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
6989
+ Processing by ProductsController#index as HTML
6990
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (89.0ms)
6991
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (102.0ms)
6992
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
6993
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
6994
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
6995
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
6996
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
6997
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (39.0ms)
6998
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (44.0ms)
6999
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (213.0ms)
7000
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (4.0ms)
7001
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (11.0ms)
7002
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (302.0ms)
7003
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (315.0ms)
7004
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 AND category_id= 1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7005
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
7006
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 AND category_id= 1 )
7007
+ Rendered products/index.html.haml within layouts/application (520.0ms)
7008
+ Completed 200 OK in 2079ms (Views: 2027.1ms | ActiveRecord: 17.0ms)
7009
+
7010
+
7011
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-18 22:40:01 +0300
7012
+
7013
+
7014
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:01 +0300
7015
+
7016
+
7017
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:01 +0300
7018
+
7019
+
7020
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:01 +0300
7021
+
7022
+
7023
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:01 +0300
7024
+
7025
+
7026
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:01 +0300
7027
+
7028
+
7029
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:01 +0300
7030
+
7031
+
7032
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:01 +0300
7033
+
7034
+
7035
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:01 +0300
7036
+
7037
+
7038
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7039
+
7040
+
7041
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7042
+
7043
+
7044
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7045
+
7046
+
7047
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7048
+
7049
+
7050
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7051
+
7052
+
7053
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7054
+
7055
+
7056
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7057
+
7058
+
7059
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7060
+
7061
+
7062
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7063
+
7064
+
7065
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-18 22:40:02 +0300
7066
+
7067
+
7068
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-18 22:45:15 +0300
7069
+ Processing by ProductsController#search as HTML
7070
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"YnIUFq1bnHB/Yiukj60jy8QV8AZl/6/AYExOfRnyNZxBD3HS7+qQEx84HKOxoUMdWV4E4b2aLsVafCa+byXhWw==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"", "category"=>""}}
7071
+ Redirected to http://localhost:3000/products
7072
+ Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
7073
+
7074
+
7075
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:45:15 +0300
7076
+ Processing by ProductsController#index as HTML
7077
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
7078
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
7079
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (15.0ms)
7080
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (19.0ms)
7081
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
7082
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
7083
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
7084
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (24.0ms)
7085
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (29.0ms)
7086
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (108.0ms)
7087
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
7088
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
7089
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (126.0ms)
7090
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (131.0ms)
7091
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7092
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7093
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7094
+ Rendered products/index.html.haml within layouts/application (208.0ms)
7095
+ Completed 200 OK in 969ms (Views: 959.1ms | ActiveRecord: 2.0ms)
7096
+
7097
+
7098
+ Started GET "/products?pg=2" for 127.0.0.1 at 2015-05-18 22:45:18 +0300
7099
+ Processing by ProductsController#index as HTML
7100
+ Parameters: {"pg"=>"2"}
7101
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (29.0ms)
7102
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (32.0ms)
7103
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
7104
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (19.0ms)
7105
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (15.0ms)
7106
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (19.0ms)
7107
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
7108
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (22.0ms)
7109
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
7110
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (117.0ms)
7111
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
7112
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
7113
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (132.0ms)
7114
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (137.0ms)
7115
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 3
7116
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (1)
7117
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7118
+ Rendered products/index.html.haml within layouts/application (225.0ms)
7119
+ Completed 200 OK in 996ms (Views: 985.1ms | ActiveRecord: 1.0ms)
7120
+
7121
+
7122
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:45:22 +0300
7123
+ Processing by ProductsController#index as HTML
7124
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
7125
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
7126
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
7127
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
7128
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
7129
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
7130
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
7131
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (23.0ms)
7132
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
7133
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (123.0ms)
7134
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
7135
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
7136
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (139.0ms)
7137
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (144.0ms)
7138
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7139
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7140
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7141
+ Rendered products/index.html.haml within layouts/application (217.0ms)
7142
+ Completed 200 OK in 1013ms (Views: 1002.1ms | ActiveRecord: 2.0ms)
7143
+
7144
+
7145
+ Started GET "/products" for 127.0.0.1 at 2015-05-18 22:54:36 +0300
7146
+ Processing by ProductsController#index as HTML
7147
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
7148
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
7149
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
7150
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
7151
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (25.0ms)
7152
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (30.0ms)
7153
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
7154
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (22.0ms)
7155
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
7156
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (122.0ms)
7157
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
7158
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
7159
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (138.0ms)
7160
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (143.0ms)
7161
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
7162
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
7163
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
7164
+ Rendered products/index.html.haml within layouts/application (210.0ms)
7165
+ Completed 200 OK in 999ms (Views: 987.1ms | ActiveRecord: 2.0ms)
7166
+
7167
+
7168
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:37 +0300
7169
+
7170
+
7171
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:37 +0300
7172
+
7173
+
7174
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-18 22:54:37 +0300
7175
+
7176
+
7177
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:37 +0300
7178
+
7179
+
7180
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:37 +0300
7181
+
7182
+
7183
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:37 +0300
7184
+
7185
+
7186
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:37 +0300
7187
+
7188
+
7189
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7190
+
7191
+
7192
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7193
+
7194
+
7195
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7196
+
7197
+
7198
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7199
+
7200
+
7201
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7202
+
7203
+
7204
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7205
+
7206
+
7207
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7208
+
7209
+
7210
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7211
+
7212
+
7213
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7214
+
7215
+
7216
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7217
+
7218
+
7219
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
7220
+
7221
+
7222
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-18 22:54:38 +0300
@@ -1 +1 @@
1
- 13424
1
+ 8024
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.6
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Ivak
@@ -61,6 +61,12 @@ files:
61
61
  - app/views/simple_search_filter/_form.html.haml
62
62
  - app/views/simple_search_filter/_form_horizontal.html.haml
63
63
  - app/views/simple_search_filter/_form_inline.html.haml
64
+ - app/views/simple_search_filter/fields/_hidden.html.haml
65
+ - app/views/simple_search_filter/fields/_text.html.haml
66
+ - app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml
67
+ - app/views/simple_search_filter/fields_simple_form/_hidden.html.haml
68
+ - app/views/simple_search_filter/fields_simple_form/_select.html.haml
69
+ - app/views/simple_search_filter/fields_simple_form/_text.html.haml
64
70
  - lib/simple_search_filter.rb
65
71
  - lib/simple_search_filter/controller.rb
66
72
  - lib/simple_search_filter/engine.rb