소스 검색

Adds to_f to prices to get correct range.

Jason Normore 12 년 전
부모
커밋
1cb327940f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/shopify_api/resources/product.rb

+ 1 - 1
lib/shopify_api/resources/product.rb

@@ -5,7 +5,7 @@ module ShopifyAPI
 
     # compute the price range
     def price_range
-      prices = variants.collect(&:price)
+      prices = variants.collect(&:price).collect(&:to_f)
       format =  "%0.2f"
       if prices.min != prices.max
         "#{format % prices.min} - #{format % prices.max}"