simple_search_filter 0.0.29 → 0.0.30
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 +4 -4
- data/lib/simple_search_filter/controller.rb +6 -2
- data/lib/simple_search_filter/version.rb +1 -1
- data/test/dummy/app/controllers/demos_controller.rb +19 -1
- data/test/dummy/app/controllers/orders_controller.rb +20 -0
- data/test/dummy/app/controllers/products_controller.rb +1 -0
- data/test/dummy/app/models/client.rb +19 -0
- data/test/dummy/app/models/order.rb +30 -0
- data/test/dummy/app/models/order_product.rb +5 -0
- data/test/dummy/app/models/product.rb +1 -0
- data/test/dummy/app/views/demos/client_orders.html.haml +0 -0
- data/test/dummy/app/views/home/index.html.haml +6 -1
- data/test/dummy/app/views/orders/index.html.haml +23 -0
- data/test/dummy/config/routes.rb +12 -0
- data/test/dummy/db/migrate/20150723154723_create_clients.rb +10 -0
- data/test/dummy/db/migrate/20150723154730_create_orders.rb +9 -0
- data/test/dummy/db/migrate/20150723154914_create_order_products.rb +9 -0
- data/test/dummy/db/migrate/20150723230023_add_city_to_client.rb +10 -0
- data/test/dummy/db/schema.rb +23 -4
- data/test/dummy/log/development.log +844 -0
- metadata +22 -6
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/tmp/pids/server.pid +0 -1
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_search_filter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.30
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Max Ivak
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -89,13 +89,19 @@ files:
|
|
89
89
|
- test/dummy/app/controllers/categories_controller.rb
|
90
90
|
- test/dummy/app/controllers/demos_controller.rb
|
91
91
|
- test/dummy/app/controllers/home_controller.rb
|
92
|
+
- test/dummy/app/controllers/orders_controller.rb
|
92
93
|
- test/dummy/app/controllers/products_controller.rb
|
93
94
|
- test/dummy/app/helpers/application_helper.rb
|
94
95
|
- test/dummy/app/models/category.rb
|
96
|
+
- test/dummy/app/models/client.rb
|
97
|
+
- test/dummy/app/models/order.rb
|
98
|
+
- test/dummy/app/models/order_product.rb
|
95
99
|
- test/dummy/app/models/product.rb
|
96
100
|
- test/dummy/app/views/demos/basic_index.html.haml
|
101
|
+
- test/dummy/app/views/demos/client_orders.html.haml
|
97
102
|
- test/dummy/app/views/home/index.html.haml
|
98
103
|
- test/dummy/app/views/layouts/application.html.erb
|
104
|
+
- test/dummy/app/views/orders/index.html.haml
|
99
105
|
- test/dummy/app/views/products/index.html.haml
|
100
106
|
- test/dummy/bin/bundle
|
101
107
|
- test/dummy/bin/rails
|
@@ -125,12 +131,15 @@ files:
|
|
125
131
|
- test/dummy/config/locales/simple_form.en.yml
|
126
132
|
- test/dummy/config/routes.rb
|
127
133
|
- test/dummy/config/secrets.yml
|
128
|
-
- test/dummy/db/development.sqlite3
|
129
134
|
- test/dummy/db/migrate/20150512105802_create_products.rb
|
130
135
|
- test/dummy/db/migrate/20150512110331_change_price_in_products.rb
|
131
136
|
- test/dummy/db/migrate/20150518183142_create_categories.rb
|
132
137
|
- test/dummy/db/migrate/20150518183417_add_category_to_products.rb
|
133
138
|
- test/dummy/db/migrate/20150526054424_add_archived_to_products.rb
|
139
|
+
- test/dummy/db/migrate/20150723154723_create_clients.rb
|
140
|
+
- test/dummy/db/migrate/20150723154730_create_orders.rb
|
141
|
+
- test/dummy/db/migrate/20150723154914_create_order_products.rb
|
142
|
+
- test/dummy/db/migrate/20150723230023_add_city_to_client.rb
|
134
143
|
- test/dummy/db/schema.rb
|
135
144
|
- test/dummy/log/development.log
|
136
145
|
- test/dummy/public/404.html
|
@@ -805,7 +814,6 @@ files:
|
|
805
814
|
- test/dummy/tmp/cache/assets/development/sprockets/v3.0/znLi_g--cOzgCoKAqtlFPUgWJ9unCsXnEvjrFOVsgt8.cache
|
806
815
|
- test/dummy/tmp/cache/assets/development/sprockets/v3.0/zvGwr55LmRTcpn_qmLf9EFICIXWA4cfH_4nBFi_cfj0.cache
|
807
816
|
- test/dummy/tmp/cache/assets/development/sprockets/v3.0/zxS8Tu3AwLjiFU0cs3pGX-IWrHVCoQBBBbliUPrWe3E.cache
|
808
|
-
- test/dummy/tmp/pids/server.pid
|
809
817
|
- test/fixtures/categories.yml
|
810
818
|
- test/fixtures/products.yml
|
811
819
|
- test/integration/navigation_test.rb
|
@@ -845,13 +853,19 @@ test_files:
|
|
845
853
|
- test/dummy/app/controllers/categories_controller.rb
|
846
854
|
- test/dummy/app/controllers/demos_controller.rb
|
847
855
|
- test/dummy/app/controllers/home_controller.rb
|
856
|
+
- test/dummy/app/controllers/orders_controller.rb
|
848
857
|
- test/dummy/app/controllers/products_controller.rb
|
849
858
|
- test/dummy/app/helpers/application_helper.rb
|
850
859
|
- test/dummy/app/models/category.rb
|
860
|
+
- test/dummy/app/models/client.rb
|
861
|
+
- test/dummy/app/models/order.rb
|
862
|
+
- test/dummy/app/models/order_product.rb
|
851
863
|
- test/dummy/app/models/product.rb
|
852
864
|
- test/dummy/app/views/demos/basic_index.html.haml
|
865
|
+
- test/dummy/app/views/demos/client_orders.html.haml
|
853
866
|
- test/dummy/app/views/home/index.html.haml
|
854
867
|
- test/dummy/app/views/layouts/application.html.erb
|
868
|
+
- test/dummy/app/views/orders/index.html.haml
|
855
869
|
- test/dummy/app/views/products/index.html.haml
|
856
870
|
- test/dummy/bin/bundle
|
857
871
|
- test/dummy/bin/rails
|
@@ -881,12 +895,15 @@ test_files:
|
|
881
895
|
- test/dummy/config/routes.rb
|
882
896
|
- test/dummy/config/secrets.yml
|
883
897
|
- test/dummy/config.ru
|
884
|
-
- test/dummy/db/development.sqlite3
|
885
898
|
- test/dummy/db/migrate/20150512105802_create_products.rb
|
886
899
|
- test/dummy/db/migrate/20150512110331_change_price_in_products.rb
|
887
900
|
- test/dummy/db/migrate/20150518183142_create_categories.rb
|
888
901
|
- test/dummy/db/migrate/20150518183417_add_category_to_products.rb
|
889
902
|
- test/dummy/db/migrate/20150526054424_add_archived_to_products.rb
|
903
|
+
- test/dummy/db/migrate/20150723154723_create_clients.rb
|
904
|
+
- test/dummy/db/migrate/20150723154730_create_orders.rb
|
905
|
+
- test/dummy/db/migrate/20150723154914_create_order_products.rb
|
906
|
+
- test/dummy/db/migrate/20150723230023_add_city_to_client.rb
|
890
907
|
- test/dummy/db/schema.rb
|
891
908
|
- test/dummy/log/development.log
|
892
909
|
- test/dummy/public/404.html
|
@@ -1563,7 +1580,6 @@ test_files:
|
|
1563
1580
|
- test/dummy/tmp/cache/assets/development/sprockets/v3.0/_HqBvRhZwKsB7cuKZoO5r5Ut4SP3y_90m8vbU9guYps.cache
|
1564
1581
|
- test/dummy/tmp/cache/assets/development/sprockets/v3.0/_uTxqC5iwzUGjNZWJUFnxL8-jngVDQtxfl76-1rSO-E.cache
|
1565
1582
|
- test/dummy/tmp/cache/assets/development/sprockets/v3.0/_ZjZ4vRiEy4hUT4dUNx8lMAsZTs_Cqvrb045k4O8sgM.cache
|
1566
|
-
- test/dummy/tmp/pids/server.pid
|
1567
1583
|
- test/fixtures/categories.yml
|
1568
1584
|
- test/fixtures/products.yml
|
1569
1585
|
- test/integration/navigation_test.rb
|
Binary file
|
@@ -1 +0,0 @@
|
|
1
|
-
15868
|