simple_search_filter 0.0.10 → 0.0.11

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: bc9b01b5d3550459c6f0720c91ba6b069ca11e22
4
- data.tar.gz: 4e93a5768a591b7e5c3601a2635dc4ee9cd47f1e
3
+ metadata.gz: c0a898e7446608694f312f78eceb23e7e96d32d3
4
+ data.tar.gz: 33fe8835af3af3d16352dbf17e5b9439d05163b9
5
5
  SHA512:
6
- metadata.gz: 35189429711d97c7ed8e0c331c1fb533897e3ec9c8f5a3d576cb5cf5d6cd7ad4324883918da7ab397da6dd76269d5948790fa39f65faffcee7e23111b4b874ae
7
- data.tar.gz: 1f3a83ed64f39c072db7fa643b0b4cda1642650e5d8ca9ce0e4f727367c2f46d60e1bc4622df6af3834667bcf2be6975fcd438f7a05cbf5c5e657183f657a786
6
+ metadata.gz: 4e929a5cbae7bd6b7d9e0419439e709393c2dd9d7250d43367e8601923968c72d8cb193888593553843e609b582a4fb2bc1d38a8d7b3409a401d8e1a73063f9b
7
+ data.tar.gz: 11683249212973e0a61bc10886ec0052b05c72992f790a1f335a32fc1d0c2e0b0ae9073529da56878ed9dd50d0fa8d51151ccde2e1ecf2cc7052c2d116b8b875
@@ -0,0 +1,2 @@
1
+ - opt_base = {as: :boolean, required: false, placeholder: field.placeholder}
2
+ = f.input field.name, opt_base.merge(field.options)
@@ -178,7 +178,8 @@ module SimpleSearchFilter
178
178
  def v(name, v_def=nil)
179
179
  name = name.to_s
180
180
 
181
- if (data.has_key? name) && (!data[name].nil?) && (!data[name].blank?)
181
+ if (data.has_key? name)
182
+ #&& (!data[name].nil?) && (!data[name].blank?)
182
183
  return data[name]
183
184
  end
184
185
 
@@ -219,8 +220,11 @@ module SimpleSearchFilter
219
220
 
220
221
  next unless @fields.has_key? name
221
222
 
222
- if @fields[name].type==FilterField::TYPE_INT
223
+ t = @fields[name].type
224
+ if t==FilterField::TYPE_INT
223
225
  set name, (v.to_i rescue 0)
226
+ elsif t==FilterField::TYPE_BOOLEAN
227
+ set name, FilterField.fix_value_boolean(v)
224
228
  else
225
229
  set name, v
226
230
  end
@@ -239,6 +243,7 @@ module SimpleSearchFilter
239
243
  end
240
244
 
241
245
 
246
+
242
247
  ####
243
248
  # page
244
249
  ####
@@ -2,11 +2,14 @@ module SimpleSearchFilter
2
2
  class FilterField
3
3
  TYPE_STRING = 'string'
4
4
  TYPE_INT = 'int'
5
+ TYPE_BOOLEAN = 'boolean'
5
6
  TYPE_DATE = 'date'
6
7
 
8
+
7
9
  FORM_TYPE_EMPTY = 'empty'
8
10
  FORM_TYPE_TEXT = 'text'
9
11
  FORM_TYPE_HIDDEN = 'hidden'
12
+ FORM_TYPE_CHECKBOX = 'checkbox'
10
13
  FORM_TYPE_SELECT = 'select' # drop-down select
11
14
  FORM_TYPE_AUTOCOMPLETE = 'autocomplete' # text with autocomplete
12
15
 
@@ -113,12 +116,39 @@ module SimpleSearchFilter
113
116
  return (v.to_i rescue 0)
114
117
  elsif type==TYPE_STRING
115
118
  return v.to_s
119
+ elsif type==TYPE_BOOLEAN
120
+ return FilterField.fix_value_boolean(v)
116
121
  end
117
122
 
118
123
  v
119
124
  end
120
125
 
121
126
 
127
+ def self.fix_value_boolean(v)
128
+ # if it is boolean => use as is
129
+ return v if !!v==v
130
+
131
+ return false if v.nil?
132
+
133
+ # fix from other types
134
+ res = false
135
+
136
+ if v.is_a? String
137
+ if v.blank?
138
+ v = "0"
139
+ end
140
+
141
+ res = v.to_i == 1
142
+ elsif v.is_a? Fixnum
143
+ res = v.to_i == 1
144
+ else
145
+ res = !(v.empty?)
146
+ end
147
+
148
+ res
149
+ end
150
+
151
+
122
152
 
123
153
 
124
154
  def make_where(v)
@@ -1,3 +1,3 @@
1
1
  module SimpleSearchFilter
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
@@ -38,6 +38,8 @@ class ProductsController < ApplicationController
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
 
41
+ field :archived, :boolean, :checkbox, {label: 'Include archived', default_value: false, ignore_value: true, condition: :custom, condition_scope: :archived}
42
+
41
43
  end
42
44
 
43
45
 
@@ -4,4 +4,8 @@ class Product < ActiveRecord::Base
4
4
  paginates_per 3
5
5
 
6
6
  searchable_by_simple_filter
7
+
8
+ scope :archived, lambda { |include_archived| where(is_archived: false) if !include_archived}
9
+
10
+
7
11
  end
@@ -0,0 +1,9 @@
1
+ class AddArchivedToProducts < ActiveRecord::Migration
2
+ def up
3
+ add_column :products, :is_archived, :boolean, :default => false
4
+ end
5
+
6
+ def down
7
+ remove_column :products, :is_archived
8
+ end
9
+ end
@@ -11,12 +11,12 @@
11
11
  #
12
12
  # It's strongly recommended that you check this file into your version control system.
13
13
 
14
- ActiveRecord::Schema.define(version: 20150518183417) do
14
+ ActiveRecord::Schema.define(version: 20150526054424) do
15
15
 
16
16
  create_table "categories", force: :cascade do |t|
17
- t.integer "title", limit: 4
18
- t.datetime "created_at", null: false
19
- t.datetime "updated_at", null: false
17
+ t.string "title", limit: 255
18
+ t.datetime "created_at", null: false
19
+ t.datetime "updated_at", null: false
20
20
  end
21
21
 
22
22
  create_table "products", force: :cascade do |t|
@@ -25,6 +25,7 @@ ActiveRecord::Schema.define(version: 20150518183417) do
25
25
  t.datetime "created_at", null: false
26
26
  t.datetime "updated_at", null: false
27
27
  t.integer "category_id", limit: 4
28
+ t.boolean "archived", limit: 1
28
29
  end
29
30
 
30
31
  end
@@ -7924,3 +7924,1884 @@ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483
7924
7924
 
7925
7925
 
7926
7926
  Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-19 01:08:29 +0300
7927
+
7928
+
7929
+ Started GET "/" for 127.0.0.1 at 2015-05-26 08:43:26 +0300
7930
+ ActiveRecord::SchemaMigration Load (44.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
7931
+ Processing by HomeController#index as HTML
7932
+ Rendered home/index.html.haml within layouts/application (39.0ms)
7933
+ Completed 200 OK in 2189ms (Views: 2187.1ms | ActiveRecord: 0.0ms)
7934
+
7935
+
7936
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:28 +0300
7937
+
7938
+
7939
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:28 +0300
7940
+
7941
+
7942
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7943
+
7944
+
7945
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7946
+
7947
+
7948
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7949
+
7950
+
7951
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7952
+
7953
+
7954
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7955
+
7956
+
7957
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7958
+
7959
+
7960
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7961
+
7962
+
7963
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7964
+
7965
+
7966
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7967
+
7968
+
7969
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7970
+
7971
+
7972
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7973
+
7974
+
7975
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7976
+
7977
+
7978
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7979
+
7980
+
7981
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7982
+
7983
+
7984
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7985
+
7986
+
7987
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7988
+
7989
+
7990
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 08:43:29 +0300
7991
+
7992
+
7993
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 08:43:31 +0300
7994
+ Processing by ProductsController#index as HTML
7995
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (213.0ms)
7996
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (234.0ms)
7997
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
7998
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
7999
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
8000
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
8001
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
8002
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (49.0ms)
8003
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (55.0ms)
8004
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (36.0ms)
8005
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (42.0ms)
8006
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (405.0ms)
8007
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (4.0ms)
8008
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (12.0ms)
8009
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (575.0ms)
8010
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (588.0ms)
8011
+ Product Load (21.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8012
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8013
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8014
+ Rendered products/index.html.haml within layouts/application (1039.1ms)
8015
+ Completed 200 OK in 2038ms (Views: 1886.1ms | ActiveRecord: 96.0ms)
8016
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
8017
+ Migrating to AddArchivedToProducts (20150526054424)
8018
+  (183.0ms) ALTER TABLE `products` ADD `archived` tinyint(1)
8019
+  (1.0ms) BEGIN
8020
+ SQL (0.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20150526054424')
8021
+  (1.0ms) COMMIT
8022
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
8023
+  (18.0ms) SELECT fk.referenced_table_name as 'to_table'
8024
+ ,fk.referenced_column_name as 'primary_key'
8025
+ ,fk.column_name as 'column'
8026
+ ,fk.constraint_name as 'name'
8027
+ FROM information_schema.key_column_usage fk
8028
+ WHERE fk.referenced_column_name is not null
8029
+ AND fk.table_schema = 'my_gems_simple_filter'
8030
+ AND fk.table_name = 'categories'
8031
+ 
8032
+  (0.0ms) SHOW CREATE TABLE `categories`
8033
+  (1.0ms) SELECT fk.referenced_table_name as 'to_table'
8034
+ ,fk.referenced_column_name as 'primary_key'
8035
+ ,fk.column_name as 'column'
8036
+ ,fk.constraint_name as 'name'
8037
+ FROM information_schema.key_column_usage fk
8038
+ WHERE fk.referenced_column_name is not null
8039
+ AND fk.table_schema = 'my_gems_simple_filter'
8040
+ AND fk.table_name = 'products'
8041
+ 
8042
+  (0.0ms) SHOW CREATE TABLE `products`
8043
+
8044
+
8045
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 08:59:37 +0300
8046
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
8047
+ Processing by ProductsController#index as HTML
8048
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
8049
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
8050
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8051
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
8052
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
8053
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
8054
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8055
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (20.0ms)
8056
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
8057
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (20.0ms)
8058
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
8059
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (136.0ms)
8060
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8061
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
8062
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (152.0ms)
8063
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (157.0ms)
8064
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8065
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8066
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8067
+ Rendered products/index.html.haml within layouts/application (306.0ms)
8068
+ Completed 200 OK in 1175ms (Views: 1135.1ms | ActiveRecord: 23.0ms)
8069
+
8070
+
8071
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8072
+
8073
+
8074
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8075
+
8076
+
8077
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8078
+
8079
+
8080
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8081
+
8082
+
8083
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8084
+
8085
+
8086
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8087
+
8088
+
8089
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8090
+
8091
+
8092
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8093
+
8094
+
8095
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8096
+
8097
+
8098
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8099
+
8100
+
8101
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8102
+
8103
+
8104
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8105
+
8106
+
8107
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8108
+
8109
+
8110
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8111
+
8112
+
8113
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8114
+
8115
+
8116
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8117
+
8118
+
8119
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8120
+
8121
+
8122
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8123
+
8124
+
8125
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 08:59:39 +0300
8126
+
8127
+
8128
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:00:01 +0300
8129
+ Processing by ProductsController#index as HTML
8130
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (28.0ms)
8131
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (41.0ms)
8132
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
8133
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
8134
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
8135
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
8136
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8137
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (20.0ms)
8138
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
8139
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (30.0ms)
8140
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (36.0ms)
8141
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (176.0ms)
8142
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8143
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (6.0ms)
8144
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (200.0ms)
8145
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (206.0ms)
8146
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8147
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8148
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8149
+ Rendered products/index.html.haml within layouts/application (286.0ms)
8150
+ Completed 200 OK in 1208ms (Views: 1192.1ms | ActiveRecord: 1.0ms)
8151
+
8152
+
8153
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8154
+
8155
+
8156
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8157
+
8158
+
8159
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8160
+
8161
+
8162
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8163
+
8164
+
8165
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8166
+
8167
+
8168
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8169
+
8170
+
8171
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8172
+
8173
+
8174
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8175
+
8176
+
8177
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8178
+
8179
+
8180
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8181
+
8182
+
8183
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8184
+
8185
+
8186
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8187
+
8188
+
8189
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8190
+
8191
+
8192
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8193
+
8194
+
8195
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8196
+
8197
+
8198
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:03 +0300
8199
+
8200
+
8201
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:04 +0300
8202
+
8203
+
8204
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:04 +0300
8205
+
8206
+
8207
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:00:04 +0300
8208
+
8209
+
8210
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:00:44 +0300
8211
+ Processing by ProductsController#index as HTML
8212
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
8213
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
8214
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (26.0ms)
8215
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (30.0ms)
8216
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
8217
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
8218
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8219
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (15.0ms)
8220
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (18.0ms)
8221
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (25.0ms)
8222
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
8223
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (145.0ms)
8224
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
8225
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
8226
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (163.0ms)
8227
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (167.0ms)
8228
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8229
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8230
+  (2.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8231
+ Rendered products/index.html.haml within layouts/application (236.0ms)
8232
+ Completed 200 OK in 52266ms (Views: 1027.1ms | ActiveRecord: 3.0ms)
8233
+
8234
+
8235
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:36 +0300
8236
+
8237
+
8238
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:01:36 +0300
8239
+
8240
+
8241
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:36 +0300
8242
+
8243
+
8244
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:36 +0300
8245
+
8246
+
8247
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8248
+
8249
+
8250
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8251
+
8252
+
8253
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8254
+
8255
+
8256
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8257
+
8258
+
8259
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8260
+
8261
+
8262
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8263
+
8264
+
8265
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8266
+
8267
+
8268
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8269
+
8270
+
8271
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8272
+
8273
+
8274
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8275
+
8276
+
8277
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8278
+
8279
+
8280
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8281
+
8282
+
8283
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8284
+
8285
+
8286
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8287
+
8288
+
8289
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:01:37 +0300
8290
+
8291
+
8292
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:01:38 +0300
8293
+ Processing by ProductsController#search as HTML
8294
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"pXS+GIcU88c9dY1sGEf6os47dvwuyTTWdX8pIwOxn1bDjaW/JOPs8i56JfPd7FQ5jP2svvU0aZDUl851lDP9+A==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
8295
+ Redirected to http://localhost:3000/products
8296
+ Completed 302 Found in 16ms (ActiveRecord: 0.0ms)
8297
+
8298
+
8299
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:01:38 +0300
8300
+ Processing by ProductsController#index as HTML
8301
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
8302
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
8303
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8304
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
8305
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (14.0ms)
8306
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (18.0ms)
8307
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8308
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (22.0ms)
8309
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
8310
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (28.0ms)
8311
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (33.0ms)
8312
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (147.0ms)
8313
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
8314
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
8315
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (163.0ms)
8316
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (170.0ms)
8317
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8318
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8319
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8320
+ Rendered products/index.html.haml within layouts/application (240.0ms)
8321
+ Completed 200 OK in 6763ms (Views: 1179.1ms | ActiveRecord: 2.0ms)
8322
+
8323
+
8324
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:02:22 +0300
8325
+ Processing by ProductsController#index as HTML
8326
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
8327
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
8328
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
8329
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
8330
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (15.0ms)
8331
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
8332
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8333
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (19.0ms)
8334
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
8335
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (20.0ms)
8336
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
8337
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (139.0ms)
8338
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8339
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (13.0ms)
8340
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (164.0ms)
8341
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (169.0ms)
8342
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8343
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8344
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8345
+ Rendered products/index.html.haml within layouts/application (242.0ms)
8346
+ Completed 200 OK in 6123ms (Views: 1173.1ms | ActiveRecord: 2.0ms)
8347
+
8348
+
8349
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:02:28 +0300
8350
+
8351
+
8352
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:28 +0300
8353
+
8354
+
8355
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:28 +0300
8356
+
8357
+
8358
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8359
+
8360
+
8361
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8362
+
8363
+
8364
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8365
+
8366
+
8367
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8368
+
8369
+
8370
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8371
+
8372
+
8373
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8374
+
8375
+
8376
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8377
+
8378
+
8379
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8380
+
8381
+
8382
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8383
+
8384
+
8385
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8386
+
8387
+
8388
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8389
+
8390
+
8391
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8392
+
8393
+
8394
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8395
+
8396
+
8397
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8398
+
8399
+
8400
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8401
+
8402
+
8403
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:02:29 +0300
8404
+
8405
+
8406
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:02:36 +0300
8407
+ Processing by ProductsController#search as HTML
8408
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"C7vfIq3ShWHRPL6QBzuKu9CuHfDJcEeOtktdUm8o2JVtQsSFDiWaVMIzFg/CkCQgkmjHshKNGsgXo7oE+Kq6Ow==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"1"}}
8409
+ Redirected to http://localhost:3000/products
8410
+ Completed 302 Found in 103924ms (ActiveRecord: 0.0ms)
8411
+
8412
+
8413
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:04:20 +0300
8414
+ Processing by ProductsController#index as HTML
8415
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
8416
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
8417
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (63.0ms)
8418
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (75.0ms)
8419
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (28.0ms)
8420
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (37.0ms)
8421
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8422
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (31.0ms)
8423
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (38.0ms)
8424
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (33.0ms)
8425
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (38.0ms)
8426
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (261.0ms)
8427
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8428
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (6.0ms)
8429
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (281.0ms)
8430
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (286.0ms)
8431
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8432
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8433
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8434
+ Rendered products/index.html.haml within layouts/application (375.0ms)
8435
+ Completed 200 OK in 1256ms (Views: 1244.1ms | ActiveRecord: 2.0ms)
8436
+
8437
+
8438
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:04:23 +0300
8439
+ Processing by ProductsController#search as HTML
8440
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"c2Wym56gB1I4ex/PV7GzH4iqsT/e3ORqZ8g9YfEV0MMVnKk8PVcYZyt0t1CSGh2EymxrfQUhuSzGINo3ZpeybQ==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
8441
+ Redirected to http://localhost:3000/products
8442
+ Completed 302 Found in 8655ms (ActiveRecord: 0.0ms)
8443
+
8444
+
8445
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:04:32 +0300
8446
+ Processing by ProductsController#index as HTML
8447
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (21.0ms)
8448
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
8449
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8450
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
8451
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (25.0ms)
8452
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (29.0ms)
8453
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8454
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (18.0ms)
8455
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
8456
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (20.0ms)
8457
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
8458
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (146.0ms)
8459
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8460
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
8461
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (162.0ms)
8462
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (166.0ms)
8463
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8464
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8465
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8466
+ Rendered products/index.html.haml within layouts/application (240.0ms)
8467
+ Completed 200 OK in 1166ms (Views: 1153.1ms | ActiveRecord: 3.0ms)
8468
+
8469
+
8470
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:09:19 +0300
8471
+ Processing by ProductsController#search as HTML
8472
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"oGLp0UGiX86t5uDbb9zac62mPzRLQciX++X2i3ROC2vGm/J24lVA+77pSESqd3To72DldpC8ldFaDRHd48xpxQ==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"1"}}
8473
+ Redirected to http://localhost:3000/products
8474
+ Completed 302 Found in 29ms (ActiveRecord: 0.0ms)
8475
+
8476
+
8477
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:09:19 +0300
8478
+ Processing by ProductsController#index as HTML
8479
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (22.0ms)
8480
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (29.0ms)
8481
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
8482
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
8483
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (26.0ms)
8484
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (30.0ms)
8485
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8486
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (42.0ms)
8487
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (47.0ms)
8488
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (30.0ms)
8489
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (35.0ms)
8490
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (206.0ms)
8491
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (2.0ms)
8492
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (11.0ms)
8493
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (237.0ms)
8494
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (242.0ms)
8495
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8496
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8497
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8498
+ Rendered products/index.html.haml within layouts/application (355.0ms)
8499
+ Completed 200 OK in 1515ms (Views: 1497.1ms | ActiveRecord: 3.0ms)
8500
+
8501
+
8502
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:09:30 +0300
8503
+ Processing by ProductsController#search as HTML
8504
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"/WwA4WwMtk+gV0PGxwkL92pA7rIMmHn5jETQDhxKPN+blRtGz/uperNY61kCoqVsKIY08NdlJL8trDdYi8hecQ==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"1"}}
8505
+ Redirected to http://localhost:3000/products
8506
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
8507
+
8508
+
8509
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:09:30 +0300
8510
+ Processing by ProductsController#index as HTML
8511
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
8512
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
8513
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
8514
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
8515
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (27.0ms)
8516
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (32.0ms)
8517
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (2.0ms)
8518
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (21.0ms)
8519
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
8520
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (22.0ms)
8521
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
8522
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (169.0ms)
8523
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8524
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
8525
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (187.0ms)
8526
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (190.0ms)
8527
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8528
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8529
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8530
+ Rendered products/index.html.haml within layouts/application (260.0ms)
8531
+ Completed 200 OK in 1197ms (Views: 1185.1ms | ActiveRecord: 3.0ms)
8532
+
8533
+
8534
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:09:38 +0300
8535
+ Processing by ProductsController#search as HTML
8536
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"ix4LtzhR5uJleaJvCL9oUXTg+aclRlHBg4oCru+z72Pt5xAQm6b513Z2CvDNFMbKNiYj5f67DIciYuX4eDGNzQ==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"1"}}
8537
+ Redirected to http://localhost:3000/products
8538
+ Completed 302 Found in 49176ms (ActiveRecord: 0.0ms)
8539
+
8540
+
8541
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:10:27 +0300
8542
+ Processing by ProductsController#index as HTML
8543
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (21.0ms)
8544
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
8545
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8546
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
8547
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (15.0ms)
8548
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (19.0ms)
8549
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
8550
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (17.0ms)
8551
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
8552
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (21.0ms)
8553
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
8554
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (135.0ms)
8555
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8556
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
8557
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (152.0ms)
8558
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (156.0ms)
8559
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8560
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8561
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8562
+ Rendered products/index.html.haml within layouts/application (233.0ms)
8563
+ Completed 200 OK in 1075ms (Views: 1053.1ms | ActiveRecord: 3.0ms)
8564
+
8565
+
8566
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:10:35 +0300
8567
+ Processing by ProductsController#index as HTML
8568
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (28.0ms)
8569
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (33.0ms)
8570
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
8571
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
8572
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8573
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
8574
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8575
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (18.0ms)
8576
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
8577
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (22.0ms)
8578
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
8579
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (146.0ms)
8580
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
8581
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
8582
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (163.0ms)
8583
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (168.0ms)
8584
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8585
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8586
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8587
+ Rendered products/index.html.haml within layouts/application (241.0ms)
8588
+ Completed 200 OK in 2526ms (Views: 1097.1ms | ActiveRecord: 3.0ms)
8589
+
8590
+
8591
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8592
+
8593
+
8594
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8595
+
8596
+
8597
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8598
+
8599
+
8600
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8601
+
8602
+
8603
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8604
+
8605
+
8606
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8607
+
8608
+
8609
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8610
+
8611
+
8612
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8613
+
8614
+
8615
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8616
+
8617
+
8618
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8619
+
8620
+
8621
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8622
+
8623
+
8624
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8625
+
8626
+
8627
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:38 +0300
8628
+
8629
+
8630
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:39 +0300
8631
+
8632
+
8633
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:39 +0300
8634
+
8635
+
8636
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:39 +0300
8637
+
8638
+
8639
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:39 +0300
8640
+
8641
+
8642
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:39 +0300
8643
+
8644
+
8645
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:10:39 +0300
8646
+
8647
+
8648
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:10:40 +0300
8649
+ Processing by ProductsController#search as HTML
8650
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"0gllo0YXo4mPrw6OUGvOObxaFY8EOrq/Vzx1NTyO2Ty08H4E5eC8vJygphGVwGCi/pzPzd/H5/n21JJjqwy7kg==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"1"}}
8651
+ Redirected to http://localhost:3000/products
8652
+ Completed 302 Found in 5209ms (ActiveRecord: 0.0ms)
8653
+
8654
+
8655
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:10:45 +0300
8656
+ Processing by ProductsController#index as HTML
8657
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
8658
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
8659
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
8660
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
8661
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
8662
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
8663
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8664
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (21.0ms)
8665
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
8666
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (29.0ms)
8667
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (33.0ms)
8668
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (154.0ms)
8669
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8670
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
8671
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (170.0ms)
8672
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (175.0ms)
8673
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8674
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8675
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8676
+ Rendered products/index.html.haml within layouts/application (242.0ms)
8677
+ Completed 200 OK in 5455ms (Views: 1215.1ms | ActiveRecord: 2.0ms)
8678
+
8679
+
8680
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:12:14 +0300
8681
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
8682
+ Processing by ProductsController#index as HTML
8683
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (96.0ms)
8684
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (115.0ms)
8685
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
8686
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
8687
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8688
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
8689
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8690
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (28.0ms)
8691
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (33.0ms)
8692
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (38.0ms)
8693
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (43.0ms)
8694
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (261.0ms)
8695
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (7.0ms)
8696
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (17.0ms)
8697
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (357.0ms)
8698
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (369.0ms)
8699
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8700
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8701
+  (2.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8702
+ Rendered products/index.html.haml within layouts/application (627.0ms)
8703
+ Completed 200 OK in 18489ms (Views: 2768.2ms | ActiveRecord: 26.0ms)
8704
+
8705
+
8706
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8707
+
8708
+
8709
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8710
+
8711
+
8712
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8713
+
8714
+
8715
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8716
+
8717
+
8718
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8719
+
8720
+
8721
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8722
+
8723
+
8724
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8725
+
8726
+
8727
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8728
+
8729
+
8730
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8731
+
8732
+
8733
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8734
+
8735
+
8736
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8737
+
8738
+
8739
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8740
+
8741
+
8742
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8743
+
8744
+
8745
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8746
+
8747
+
8748
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8749
+
8750
+
8751
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8752
+
8753
+
8754
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8755
+
8756
+
8757
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:33 +0300
8758
+
8759
+
8760
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:12:34 +0300
8761
+
8762
+
8763
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:17:08 +0300
8764
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
8765
+ Processing by ProductsController#index as HTML
8766
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (92.0ms)
8767
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (105.0ms)
8768
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (23.0ms)
8769
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
8770
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8771
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
8772
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
8773
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (28.0ms)
8774
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (33.0ms)
8775
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (35.0ms)
8776
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (40.0ms)
8777
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (254.0ms)
8778
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (4.0ms)
8779
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (13.0ms)
8780
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (340.0ms)
8781
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (353.0ms)
8782
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8783
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8784
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8785
+ Rendered products/index.html.haml within layouts/application (567.0ms)
8786
+ Completed 200 OK in 7109ms (Views: 2326.1ms | ActiveRecord: 20.0ms)
8787
+
8788
+
8789
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8790
+
8791
+
8792
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8793
+
8794
+
8795
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8796
+
8797
+
8798
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8799
+
8800
+
8801
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8802
+
8803
+
8804
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8805
+
8806
+
8807
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8808
+
8809
+
8810
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8811
+
8812
+
8813
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8814
+
8815
+
8816
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8817
+
8818
+
8819
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8820
+
8821
+
8822
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8823
+
8824
+
8825
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:16 +0300
8826
+
8827
+
8828
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:17 +0300
8829
+
8830
+
8831
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:17 +0300
8832
+
8833
+
8834
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:17 +0300
8835
+
8836
+
8837
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:17 +0300
8838
+
8839
+
8840
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:17 +0300
8841
+
8842
+
8843
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:17:17 +0300
8844
+
8845
+
8846
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:17:22 +0300
8847
+ Processing by ProductsController#search as HTML
8848
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"i8bdlloVDjjCm3LdbkhFHNks/qq1qfRgH6lF64N/z/PtP8Yx+eIRDdGU2kKr4+uHm+ok6G5UqSa+QaK9FP2tXQ==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"1"}}
8849
+ Redirected to http://localhost:3000/products
8850
+ Completed 302 Found in 3980ms (ActiveRecord: 0.0ms)
8851
+
8852
+
8853
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:17:26 +0300
8854
+ Processing by ProductsController#index as HTML
8855
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
8856
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
8857
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8858
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
8859
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8860
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
8861
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8862
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (18.0ms)
8863
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
8864
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (21.0ms)
8865
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
8866
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (134.0ms)
8867
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8868
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
8869
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (150.0ms)
8870
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (154.0ms)
8871
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8872
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8873
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8874
+ Rendered products/index.html.haml within layouts/application (228.0ms)
8875
+ Completed 200 OK in 3244ms (Views: 1035.1ms | ActiveRecord: 1.0ms)
8876
+
8877
+
8878
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:17:34 +0300
8879
+ Processing by ProductsController#search as HTML
8880
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"rDRKgrK7TIiXKWLYyY5KmECYBW/UPgVG0e+M/1yZBKrKzVElEUxTvYQmykcMJeQDAl7fLQ/DWABwB2upyxtmBA==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
8881
+ Redirected to http://localhost:3000/products
8882
+ Completed 302 Found in 3229ms (ActiveRecord: 0.0ms)
8883
+
8884
+
8885
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:17:38 +0300
8886
+ Processing by ProductsController#index as HTML
8887
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
8888
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
8889
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8890
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
8891
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
8892
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
8893
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8894
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (18.0ms)
8895
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
8896
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (34.0ms)
8897
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (37.0ms)
8898
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (152.0ms)
8899
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
8900
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (6.0ms)
8901
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (171.0ms)
8902
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (176.0ms)
8903
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8904
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8905
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8906
+ Rendered products/index.html.haml within layouts/application (240.0ms)
8907
+ Completed 200 OK in 7128ms (Views: 1066.1ms | ActiveRecord: 1.0ms)
8908
+
8909
+
8910
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:18:31 +0300
8911
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
8912
+ Processing by ProductsController#index as HTML
8913
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (90.0ms)
8914
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (116.0ms)
8915
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
8916
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
8917
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
8918
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
8919
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
8920
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (30.0ms)
8921
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (36.0ms)
8922
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (40.0ms)
8923
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (45.0ms)
8924
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (272.0ms)
8925
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (4.0ms)
8926
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (13.0ms)
8927
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (359.0ms)
8928
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (371.0ms)
8929
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
8930
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
8931
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
8932
+ Rendered products/index.html.haml within layouts/application (601.0ms)
8933
+ Completed 200 OK in 7367ms (Views: 2507.1ms | ActiveRecord: 15.0ms)
8934
+
8935
+
8936
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:38 +0300
8937
+
8938
+
8939
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:38 +0300
8940
+
8941
+
8942
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:18:38 +0300
8943
+
8944
+
8945
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:38 +0300
8946
+
8947
+
8948
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8949
+
8950
+
8951
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8952
+
8953
+
8954
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8955
+
8956
+
8957
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8958
+
8959
+
8960
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8961
+
8962
+
8963
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8964
+
8965
+
8966
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8967
+
8968
+
8969
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8970
+
8971
+
8972
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8973
+
8974
+
8975
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8976
+
8977
+
8978
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8979
+
8980
+
8981
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8982
+
8983
+
8984
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8985
+
8986
+
8987
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8988
+
8989
+
8990
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:18:39 +0300
8991
+
8992
+
8993
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:18:44 +0300
8994
+ Processing by ProductsController#search as HTML
8995
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"M83L7rJMyfxwKmXgtkN7/Fo+w1+gGZbIOBmj/9oHsllVNNBJEbvWyWMlzX9z6NVnGPgZHXvky46Z8USpTYXQ9w==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
8996
+ Redirected to http://localhost:3000/products
8997
+ Completed 302 Found in 4927ms (ActiveRecord: 0.0ms)
8998
+
8999
+
9000
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:18:49 +0300
9001
+ Processing by ProductsController#index as HTML
9002
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
9003
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (126.0ms)
9004
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (26.0ms)
9005
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (34.0ms)
9006
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9007
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
9008
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
9009
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (20.0ms)
9010
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
9011
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (24.0ms)
9012
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (29.0ms)
9013
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (268.0ms)
9014
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
9015
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
9016
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (293.0ms)
9017
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (297.0ms)
9018
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9019
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9020
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9021
+ Rendered products/index.html.haml within layouts/application (366.0ms)
9022
+ Completed 200 OK in 3929ms (Views: 1285.1ms | ActiveRecord: 1.0ms)
9023
+
9024
+
9025
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:18:57 +0300
9026
+ Processing by ProductsController#search as HTML
9027
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"e1UZ544YquBO8uFzkJgROiAV7JpBt0YpKmpXRLjlRVYdrAJALe+11V39SexVM7+hYtM22JpKG2+LgrASL2cn+A==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
9028
+ Redirected to http://localhost:3000/products
9029
+ Completed 302 Found in 117657ms (ActiveRecord: 0.0ms)
9030
+
9031
+
9032
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:20:55 +0300
9033
+ Processing by ProductsController#index as HTML
9034
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (19.0ms)
9035
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
9036
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
9037
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
9038
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
9039
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
9040
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
9041
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (19.0ms)
9042
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
9043
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (23.0ms)
9044
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
9045
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (136.0ms)
9046
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (9.0ms)
9047
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (13.0ms)
9048
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (161.0ms)
9049
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (166.0ms)
9050
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9051
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9052
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9053
+ Rendered products/index.html.haml within layouts/application (232.0ms)
9054
+ Completed 200 OK in 3638ms (Views: 1135.1ms | ActiveRecord: 3.0ms)
9055
+
9056
+
9057
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:21:06 +0300
9058
+ Processing by ProductsController#search as HTML
9059
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"6m98I+ZwyDh6G40h1l0lXBEoq3+z0wBGh6da4k9HcmOMlmeERYfXDWkUJb4T9ovHU+5xPWguXQAmT7202MUQzQ==", "cmd"=>"clear", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
9060
+ Redirected to http://localhost:3000/products
9061
+ Completed 302 Found in 15ms (ActiveRecord: 0.0ms)
9062
+
9063
+
9064
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:21:07 +0300
9065
+ Processing by ProductsController#index as HTML
9066
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (23.0ms)
9067
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
9068
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9069
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9070
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
9071
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9072
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
9073
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (21.0ms)
9074
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (33.0ms)
9075
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (23.0ms)
9076
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
9077
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (156.0ms)
9078
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
9079
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (6.0ms)
9080
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (174.0ms)
9081
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (179.0ms)
9082
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9083
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9084
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9085
+ Rendered products/index.html.haml within layouts/application (322.0ms)
9086
+ Completed 200 OK in 6464ms (Views: 1456.1ms | ActiveRecord: 22.0ms)
9087
+
9088
+
9089
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:23:02 +0300
9090
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
9091
+ Processing by ProductsController#index as HTML
9092
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (118.0ms)
9093
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (132.0ms)
9094
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (22.0ms)
9095
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
9096
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (21.0ms)
9097
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
9098
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
9099
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (39.0ms)
9100
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (45.0ms)
9101
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (42.0ms)
9102
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (56.0ms)
9103
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (330.0ms)
9104
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (7.0ms)
9105
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (17.0ms)
9106
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (438.0ms)
9107
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (453.0ms)
9108
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9109
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9110
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9111
+ Rendered products/index.html.haml within layouts/application (733.0ms)
9112
+ Completed 200 OK in 13538ms (Views: 2825.2ms | ActiveRecord: 27.0ms)
9113
+
9114
+
9115
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:16 +0300
9116
+
9117
+
9118
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:23:16 +0300
9119
+
9120
+
9121
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:16 +0300
9122
+
9123
+
9124
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:16 +0300
9125
+
9126
+
9127
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:16 +0300
9128
+
9129
+
9130
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:16 +0300
9131
+
9132
+
9133
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9134
+
9135
+
9136
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9137
+
9138
+
9139
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9140
+
9141
+
9142
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9143
+
9144
+
9145
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9146
+
9147
+
9148
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9149
+
9150
+
9151
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9152
+
9153
+
9154
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9155
+
9156
+
9157
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9158
+
9159
+
9160
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9161
+
9162
+
9163
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9164
+
9165
+
9166
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9167
+
9168
+
9169
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:23:17 +0300
9170
+
9171
+
9172
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:23:50 +0300
9173
+ Processing by ProductsController#index as HTML
9174
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (21.0ms)
9175
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
9176
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
9177
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
9178
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
9179
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9180
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
9181
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (16.0ms)
9182
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
9183
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (20.0ms)
9184
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
9185
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (147.0ms)
9186
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
9187
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
9188
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (163.0ms)
9189
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (167.0ms)
9190
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9191
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9192
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9193
+ Rendered products/index.html.haml within layouts/application (234.0ms)
9194
+ Completed 200 OK in 52746ms (Views: 1160.1ms | ActiveRecord: 2.0ms)
9195
+
9196
+
9197
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:43 +0300
9198
+
9199
+
9200
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:24:43 +0300
9201
+
9202
+
9203
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:43 +0300
9204
+
9205
+
9206
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9207
+
9208
+
9209
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9210
+
9211
+
9212
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9213
+
9214
+
9215
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9216
+
9217
+
9218
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9219
+
9220
+
9221
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9222
+
9223
+
9224
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9225
+
9226
+
9227
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9228
+
9229
+
9230
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9231
+
9232
+
9233
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9234
+
9235
+
9236
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9237
+
9238
+
9239
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9240
+
9241
+
9242
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9243
+
9244
+
9245
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9246
+
9247
+
9248
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9249
+
9250
+
9251
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:24:44 +0300
9252
+
9253
+
9254
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:25:00 +0300
9255
+ Processing by ProductsController#search as HTML
9256
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"/4adEWU/ey90pQU0TjGZgH6GYFYgL4VUrX6MoVEeKumZf4a2xshkGmeqrauLmjcbPEC6FPvS2BIMlmv3xpxIRw==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
9257
+ Redirected to http://localhost:3000/products
9258
+ Completed 302 Found in 25653ms (ActiveRecord: 0.0ms)
9259
+
9260
+
9261
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:25:25 +0300
9262
+ Processing by ProductsController#index as HTML
9263
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
9264
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
9265
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (13.0ms)
9266
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (17.0ms)
9267
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (24.0ms)
9268
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
9269
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
9270
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (18.0ms)
9271
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9272
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (19.0ms)
9273
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (23.0ms)
9274
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (134.0ms)
9275
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
9276
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
9277
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (149.0ms)
9278
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (153.0ms)
9279
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9280
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9281
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9282
+ Rendered products/index.html.haml within layouts/application (218.0ms)
9283
+ Completed 200 OK in 18514ms (Views: 1110.1ms | ActiveRecord: 2.0ms)
9284
+
9285
+
9286
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:26:09 +0300
9287
+ Processing by ProductsController#search as HTML
9288
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"aBBgdBOHV4z4NJkNrMsMf0+EsKqErLBIS1dnOTeQ29AO6XvTsHBIues7MZJpYKLkDUJq6F9R7Q7qv4BvoBK5fg==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
9289
+ Redirected to http://localhost:3000/products
9290
+ Completed 302 Found in 6129ms (ActiveRecord: 0.0ms)
9291
+
9292
+
9293
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:26:16 +0300
9294
+ Processing by ProductsController#index as HTML
9295
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (21.0ms)
9296
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
9297
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
9298
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
9299
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
9300
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9301
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
9302
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (18.0ms)
9303
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9304
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (20.0ms)
9305
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
9306
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (146.0ms)
9307
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
9308
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
9309
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (162.0ms)
9310
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (166.0ms)
9311
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9312
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9313
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9314
+ Rendered products/index.html.haml within layouts/application (232.0ms)
9315
+ Completed 200 OK in 97366ms (Views: 1044.1ms | ActiveRecord: 1.0ms)
9316
+
9317
+
9318
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:29:11 +0300
9319
+ Processing by ProductsController#index as HTML
9320
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (29.0ms)
9321
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (33.0ms)
9322
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9323
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
9324
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9325
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
9326
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
9327
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (17.0ms)
9328
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9329
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (20.0ms)
9330
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
9331
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (147.0ms)
9332
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
9333
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
9334
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (162.0ms)
9335
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (167.0ms)
9336
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9337
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9338
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9339
+ Rendered products/index.html.haml within layouts/application (236.0ms)
9340
+ Completed 200 OK in 74494ms (Views: 1026.1ms | ActiveRecord: 2.0ms)
9341
+
9342
+
9343
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9344
+
9345
+
9346
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9347
+
9348
+
9349
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9350
+
9351
+
9352
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9353
+
9354
+
9355
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9356
+
9357
+
9358
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9359
+
9360
+
9361
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9362
+
9363
+
9364
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9365
+
9366
+
9367
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9368
+
9369
+
9370
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9371
+
9372
+
9373
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:26 +0300
9374
+
9375
+
9376
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:27 +0300
9377
+
9378
+
9379
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:27 +0300
9380
+
9381
+
9382
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:27 +0300
9383
+
9384
+
9385
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:27 +0300
9386
+
9387
+
9388
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:27 +0300
9389
+
9390
+
9391
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:27 +0300
9392
+
9393
+
9394
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:27 +0300
9395
+
9396
+
9397
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:30:27 +0300
9398
+
9399
+
9400
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:31:23 +0300
9401
+ Processing by ProductsController#index as HTML
9402
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (21.0ms)
9403
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
9404
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (14.0ms)
9405
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (17.0ms)
9406
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
9407
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9408
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
9409
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (26.0ms)
9410
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (31.0ms)
9411
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (19.0ms)
9412
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
9413
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (145.0ms)
9414
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
9415
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (3.0ms)
9416
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (159.0ms)
9417
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (163.0ms)
9418
+ Product Load (2.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9419
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9420
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9421
+ Rendered products/index.html.haml within layouts/application (232.0ms)
9422
+ Completed 200 OK in 7757ms (Views: 1002.1ms | ActiveRecord: 2.0ms)
9423
+
9424
+
9425
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9426
+
9427
+
9428
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9429
+
9430
+
9431
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9432
+
9433
+
9434
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9435
+
9436
+
9437
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9438
+
9439
+
9440
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9441
+
9442
+
9443
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9444
+
9445
+
9446
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9447
+
9448
+
9449
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9450
+
9451
+
9452
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9453
+
9454
+
9455
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9456
+
9457
+
9458
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9459
+
9460
+
9461
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9462
+
9463
+
9464
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9465
+
9466
+
9467
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9468
+
9469
+
9470
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9471
+
9472
+
9473
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9474
+
9475
+
9476
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:31 +0300
9477
+
9478
+
9479
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:31:32 +0300
9480
+
9481
+
9482
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:43:57 +0300
9483
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
9484
+ Processing by ProductsController#search as HTML
9485
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"mblKz0wb94UoQnZ8LsaMO3l+mGkl1OdY4ubzIRQjFyL/QFFo7+zosDtN3uPrbSKgO7hCK/4puh5DDhR3g6F1jA==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
9486
+ Redirected to http://localhost:3000/products
9487
+ Completed 302 Found in 2609ms (ActiveRecord: 0.0ms)
9488
+
9489
+
9490
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:43:59 +0300
9491
+ Processing by ProductsController#index as HTML
9492
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (89.0ms)
9493
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (103.0ms)
9494
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9495
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
9496
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9497
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
9498
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
9499
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (28.0ms)
9500
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (33.0ms)
9501
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (36.0ms)
9502
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (41.0ms)
9503
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (253.0ms)
9504
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (4.0ms)
9505
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (13.0ms)
9506
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (336.0ms)
9507
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (347.0ms)
9508
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9509
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9510
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9511
+ Rendered products/index.html.haml within layouts/application (543.0ms)
9512
+ Completed 200 OK in 7744ms (Views: 2134.1ms | ActiveRecord: 19.0ms)
9513
+
9514
+
9515
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:44:21 +0300
9516
+ Processing by ProductsController#search as HTML
9517
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"eeOJUXsR00Vx+2jq2BhEVEk4GOAwmWgxbLEKF9nL8DEfGpL22ObMcGL0wHUds+rPC/7CoutkNXfNWe1BTkmSnw==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
9518
+ Redirected to http://localhost:3000/products
9519
+ Completed 302 Found in 3753ms (ActiveRecord: 0.0ms)
9520
+
9521
+
9522
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:44:25 +0300
9523
+ Processing by ProductsController#index as HTML
9524
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (21.0ms)
9525
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
9526
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9527
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (20.0ms)
9528
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
9529
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9530
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
9531
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (25.0ms)
9532
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (32.0ms)
9533
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (29.0ms)
9534
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (36.0ms)
9535
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (158.0ms)
9536
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
9537
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
9538
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (179.0ms)
9539
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (185.0ms)
9540
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9541
+ Category Load (0.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9542
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9543
+ Rendered products/index.html.haml within layouts/application (266.0ms)
9544
+ Completed 200 OK in 38650ms (Views: 1121.1ms | ActiveRecord: 1.0ms)
9545
+
9546
+
9547
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:45:06 +0300
9548
+ Processing by ProductsController#search as HTML
9549
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"8LVkGlRXnrSUtkjMfZxPpeoRBLyNpheviCbiy8kjxGWWTH+996CBgYe54FO4N+E+qNfe/lZbSukpzgWdXqGmyw==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
9550
+ Redirected to http://localhost:3000/products
9551
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
9552
+
9553
+
9554
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:45:06 +0300
9555
+ Processing by ProductsController#index as HTML
9556
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (24.0ms)
9557
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (28.0ms)
9558
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9559
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
9560
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18.0ms)
9561
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9562
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
9563
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (19.0ms)
9564
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9565
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (20.0ms)
9566
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
9567
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (140.0ms)
9568
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
9569
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
9570
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (155.0ms)
9571
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (159.0ms)
9572
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9573
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9574
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9575
+ Rendered products/index.html.haml within layouts/application (227.0ms)
9576
+ Completed 200 OK in 13343ms (Views: 1063.1ms | ActiveRecord: 2.0ms)
9577
+
9578
+
9579
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:45:22 +0300
9580
+ Processing by ProductsController#search as HTML
9581
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"zJyZGr0kpyBNKBzb8ugh2KP09gtlOy7yl0hKLDhhn3mqZYK9HtO4FV4ntEQ3Q49D4TIsSb7Gc7Q2oK16r+P91w==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"0"}}
9582
+ Redirected to http://localhost:3000/products
9583
+ Completed 302 Found in 17ms (ActiveRecord: 0.0ms)
9584
+
9585
+
9586
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:45:22 +0300
9587
+ Processing by ProductsController#index as HTML
9588
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (22.0ms)
9589
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
9590
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16.0ms)
9591
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
9592
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
9593
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
9594
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
9595
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (22.0ms)
9596
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
9597
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (20.0ms)
9598
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
9599
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (144.0ms)
9600
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
9601
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
9602
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (160.0ms)
9603
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (164.0ms)
9604
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE `products`.`archived` = 0 AND (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9605
+ Mysql2::Error: Unknown column 'products.archived' in 'where clause': SELECT `products`.* FROM `products` WHERE `products`.`archived` = 0 AND (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9606
+ Rendered products/index.html.haml within layouts/application (221.0ms)
9607
+ Completed 500 Internal Server Error in 2828ms (ActiveRecord: 11.0ms)
9608
+
9609
+ ActionView::Template::Error (Mysql2::Error: Unknown column 'products.archived' in 'where clause': SELECT `products`.* FROM `products` WHERE `products`.`archived` = 0 AND (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0):
9610
+ 11: %th Category
9611
+ 12: %th= link_to_sortable_column :price, 'Price'
9612
+ 13:
9613
+ 14: - @items.each do |item|
9614
+ 15: %tr
9615
+ 16: %td=item.title
9616
+ 17: %td= item.category.title
9617
+ app/views/products/index.html.haml:14:in `_app_views_products_index_html_haml___565749426_33623760'
9618
+
9619
+
9620
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
9621
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (61.0ms)
9622
+ 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)
9623
+ 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 (158.0ms)
9624
+
9625
+
9626
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:45:37 +0300
9627
+ Processing by ProductsController#index as HTML
9628
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (23.0ms)
9629
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
9630
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (21.0ms)
9631
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
9632
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (20.0ms)
9633
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
9634
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (0.0ms)
9635
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (22.0ms)
9636
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (27.0ms)
9637
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (21.0ms)
9638
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (26.0ms)
9639
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (160.0ms)
9640
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
9641
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (5.0ms)
9642
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (176.0ms)
9643
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (181.0ms)
9644
+ Product Load (0.0ms) SELECT `products`.* FROM `products` WHERE `products`.`is_archived` = 0 AND (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9645
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9646
+  (1.0ms) SELECT COUNT(*) FROM `products` WHERE `products`.`is_archived` = 0 AND (1=1 )
9647
+ Rendered products/index.html.haml within layouts/application (366.0ms)
9648
+ Completed 200 OK in 11176ms (Views: 1316.1ms | ActiveRecord: 22.0ms)
9649
+
9650
+
9651
+ Started GET "/assets/bootstrap/affix.self-68d1a5161d04ca9fe1b9d9f4114d9426c7798bf90f2703a97aca35c8113469bb.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:49 +0300
9652
+
9653
+
9654
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:49 +0300
9655
+
9656
+
9657
+ Started GET "/assets/bootstrap/alert.self-15ce09eba576e56db3edfd87accc0ff48823df915169e350b4fd97290f96aee1.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:49 +0300
9658
+
9659
+
9660
+ Started GET "/assets/jquery_ujs.self-8e98a7a072a6cee1372d19fff9ff3e6aa1e39a37d89d6f06861637d061113ee7.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:49 +0300
9661
+
9662
+
9663
+ Started GET "/assets/application.self-496d979cc936ab42d51a5a182c80644a11a39c132a501803bf5ce61fe8c65e80.css?body=1" for 127.0.0.1 at 2015-05-26 09:45:49 +0300
9664
+
9665
+
9666
+ Started GET "/assets/bootstrap/button.self-37c62bff1d75f86f3348b8679873d5156d8b9938b62841038dca21690f4740f1.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:49 +0300
9667
+
9668
+
9669
+ Started GET "/assets/bootstrap/carousel.self-9aaab1a477b9c1156bab751cb8da47f77dace6da88eef8ae830e60f3cff3a8be.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:49 +0300
9670
+
9671
+
9672
+ Started GET "/assets/bootstrap/collapse.self-eeece00cd06a3d7cc071ab7845b549d4991edd0f0895e4be70fe40bac2fb5f4b.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:49 +0300
9673
+
9674
+
9675
+ Started GET "/assets/bootstrap/dropdown.self-a3998e7ca949c04cb86b5c635deb0abcc7a24dc02e81be66b8acfef02d811e45.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9676
+
9677
+
9678
+ Started GET "/assets/bootstrap/modal.self-f2759e138605770e60526c00c6d86cbb3378da203641f9d6b204c9f0192b9267.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9679
+
9680
+
9681
+ Started GET "/assets/bootstrap/scrollspy.self-5ea180afe4404f83fc97d997833f2edefd34475b0b5ddab310e27abc2bbd5f2f.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9682
+
9683
+
9684
+ Started GET "/assets/bootstrap/tab.self-e1bba7115c90301056ee94c4716de2fcbe4498015def2dab9ff9879f339bd245.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9685
+
9686
+
9687
+ Started GET "/assets/bootstrap/transition.self-7742dca5e6acf313fbb217811b48468282cddf1a9baea5c89ec92e367ef242cb.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9688
+
9689
+
9690
+ Started GET "/assets/bootstrap/tooltip.self-c3b5c16f394ab9c0391db4431aac4f2d2ddf1bba4c5d3228ed343de05ecc8e83.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9691
+
9692
+
9693
+ Started GET "/assets/bootstrap/popover.self-2674d99c3ab0415dba0b958a80b3840f70ff6368b155d890306c0291be49453b.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9694
+
9695
+
9696
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9697
+
9698
+
9699
+ Started GET "/assets/bootstrap3-typeahead.min.self-78fcb50a4b38a41b52a51f8662133e39712218bbacbb337469c3ed64bb88ae9d.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9700
+
9701
+
9702
+ Started GET "/assets/bootstrap3-autocomplete-input.min.self-0294b06e928f59350483dca8ca299d23704b3312297841b9fc5e2bebeb1c95c3.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9703
+
9704
+
9705
+ Started GET "/assets/application.self-44dc72337fbefc4f8c73fc8781b922cf9e4f99f8d068e6563c3820851d9390f6.js?body=1" for 127.0.0.1 at 2015-05-26 09:45:50 +0300
9706
+
9707
+
9708
+ Started POST "/products/search" for 127.0.0.1 at 2015-05-26 09:45:53 +0300
9709
+ Processing by ProductsController#search as HTML
9710
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"tmFnBbvbvDT5E6GhGMG0ZBnmVSq313QMGWDItKc/uxXQmHyiGCyjAeocCT7dahr/WyCPaGwqKUq4iC/iML3Zuw==", "cmd"=>"apply", "filter"=>{"title"=>"", "price_from"=>"", "price_to"=>"", "category_id"=>"0", "category"=>"", "archived"=>"1"}}
9711
+ Redirected to http://localhost:3000/products
9712
+ Completed 302 Found in 12ms (ActiveRecord: 0.0ms)
9713
+
9714
+
9715
+ Started GET "/products" for 127.0.0.1 at 2015-05-26 09:45:54 +0300
9716
+ Processing by ProductsController#index as HTML
9717
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9718
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
9719
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (13.0ms)
9720
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (17.0ms)
9721
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17.0ms)
9722
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (22.0ms)
9723
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (1.0ms)
9724
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_autocomplete.html.haml (19.0ms)
9725
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (24.0ms)
9726
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/fields_simple_form/_checkbox.html.haml (21.0ms)
9727
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_field_simple_form.html.haml (25.0ms)
9728
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_fields.html.haml (140.0ms)
9729
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
9730
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (4.0ms)
9731
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form_horizontal.html.haml (155.0ms)
9732
+ Rendered W:/myrails/mygems/simple_search_filter/app/views/simple_search_filter/_form.html.haml (159.0ms)
9733
+ Product Load (1.0ms) SELECT `products`.* FROM `products` WHERE (1=1 ) ORDER BY price asc LIMIT 3 OFFSET 0
9734
+ Category Load (1.0ms) SELECT `categories`.* FROM `categories` WHERE `categories`.`id` IN (2, 1)
9735
+  (0.0ms) SELECT COUNT(*) FROM `products` WHERE (1=1 )
9736
+ Rendered products/index.html.haml within layouts/application (227.0ms)
9737
+ Completed 200 OK in 3515ms (Views: 1072.1ms | ActiveRecord: 2.0ms)
9738
+
9739
+
9740
+ Started GET "/ac/orders/1132" for 127.0.0.1 at 2015-05-26 09:50:13 +0300
9741
+
9742
+ ActionController::RoutingError (No route matches [GET] "/ac/orders/1132"):
9743
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
9744
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9745
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
9746
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
9747
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9748
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
9749
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
9750
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
9751
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9752
+ rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
9753
+ rack (1.6.1) lib/rack/runtime.rb:18:in `call'
9754
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9755
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
9756
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
9757
+ rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
9758
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
9759
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
9760
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
9761
+ rack (1.6.1) lib/rack/content_length.rb:15:in `call'
9762
+ rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
9763
+ D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
9764
+ D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
9765
+ D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
9766
+
9767
+
9768
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (10.0ms)
9769
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (17.0ms)
9770
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.0ms)
9771
+ 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 (8.0ms)
9772
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (220.0ms)
9773
+
9774
+
9775
+ Started GET "/ac/catalogs" for 127.0.0.1 at 2015-05-26 09:55:26 +0300
9776
+
9777
+ ActionController::RoutingError (No route matches [GET] "/ac/catalogs"):
9778
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
9779
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9780
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
9781
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
9782
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9783
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
9784
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
9785
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
9786
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9787
+ rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
9788
+ rack (1.6.1) lib/rack/runtime.rb:18:in `call'
9789
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9790
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
9791
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
9792
+ rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
9793
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
9794
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
9795
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
9796
+ rack (1.6.1) lib/rack/content_length.rb:15:in `call'
9797
+ rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
9798
+ D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
9799
+ D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
9800
+ D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
9801
+
9802
+
9803
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (12.0ms)
9804
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (19.0ms)
9805
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.0ms)
9806
+ 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 (8.0ms)
9807
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (171.0ms)