product_home_template 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 75473e916e5eb40f272d0ab242e0ebb63d420ef8
4
- data.tar.gz: 440d31f3d43c745747077276fdd870abd659a5aa
3
+ metadata.gz: daa47e09767176e44446c2e98faaa993e606cec1
4
+ data.tar.gz: 538756b1c7b0af4e4b92c0c48638ca9deca1f288
5
5
  SHA512:
6
- metadata.gz: 5b79387fd8573672b574693f8f0b45dc4547274dba0081e2f1d2c39cbc1775ada6f20b85a03d4fe5515d8aabc3d49ca3b8fca8c435d2851fb786eff0c3baebb1
7
- data.tar.gz: 1bbc8c910b6e16bec6720e132dcf694522e384dd04556e4e98fa4388e99211558f1ab8c055a34950c55ec8a7313a5768314e5926026996512714fdbef1ca7660
6
+ metadata.gz: d6bbd85a587dad90755ab7d417c454260b76b497166cebf9dd5f28510e482cd1d0c4169b772ffdce0d45741bb7faf8672851d46a4b4ec115068d6b659db2328f
7
+ data.tar.gz: 0c2b64dd1bf8e65066e32b884e45ef2a2a5b869bd92b902ae7bab63e851424d087aa70b254512917fd7e50098f02d9f8aaef2d0f70ba9f28d5e80273a41f30d1
@@ -1,3 +1,3 @@
1
1
  module ProductHomeTemplate
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
@@ -93,14 +93,14 @@ class CheckByNormal < BasicWay
93
93
 
94
94
  #this method to run the logic of listing the products with pagination
95
95
  def my_special_method(pages)
96
- @products = @store_detail.products.paginate(page: pages, per_page: 3)
96
+ @products = @store_detail.products.order('id asc').paginate(page: pages, per_page: 3)
97
97
  puts("=== by baisc page ===")
98
98
  return @products
99
99
  end
100
100
 
101
101
  #this method to run the logic of listing the products without pagination
102
102
  def my_special_method_without(member)
103
- @products = @store_detail.products
103
+ @products = @store_detail.products.order('id asc')
104
104
  return @products
105
105
  end
106
106
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: product_home_template
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kishore Kumar