Просмотр исходного кода

Fix line-item properties not getting through properly

Maarten van Grootel 11 лет назад
Родитель
Сommit
c9b449fad0
4 измененных файлов с 8 добавлено и 2 удалено
  1. 4 0
      CHANGELOG
  2. 1 1
      Gemfile.lock
  3. 2 0
      lib/shopify_api/resources/line_item.rb
  4. 1 1
      lib/shopify_api/version.rb

+ 4 - 0
CHANGELOG

@@ -1,3 +1,7 @@
+== Version 3.1.6
+
+* Add LineItem::Property resource
+
 == Version 3.1.5
 
 * Expose `orders` action on Customer

+ 1 - 1
Gemfile.lock

@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-    shopify_api (3.1.4)
+    shopify_api (3.1.6)
       activeresource (>= 3.0.0)
       thor (>= 0.14.4)
 

+ 2 - 0
lib/shopify_api/resources/line_item.rb

@@ -1,4 +1,6 @@
 module ShopifyAPI
   class LineItem < Base 
+    class Property < Base
+    end
   end
 end

+ 1 - 1
lib/shopify_api/version.rb

@@ -1,3 +1,3 @@
 module ShopifyAPI
-  VERSION = "3.1.5"
+  VERSION = "3.1.6"
 end