Sha256: aa81a5ba30c32fe74d626d42d390251084a4c6a14c68ef60d308c1367f1cfcea

Contents?: true

Size: 426 Bytes

Versions: 27

Compression:

Stored size: 426 Bytes

Contents

module Magento
  # http://www.magentocommerce.com/wiki/doc/webservices-api/api/catalog_product_attribute_set
  class ProductAttributeSet < Base
    class << self
      # catalog_product_attribute_set.list
      # Retrieve product attribute sets
      # 
      # Return: array
      def list
        results = commit("list", nil)
        results.collect do |result|
          new(result)
        end
      end
    end
  end
end

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
magentor-0.2.0 lib/magento/product_attribute_set.rb
magentor-0.1.10 lib/magento/product_attribute_set.rb
magentor-0.1.9 lib/magento/product_attribute_set.rb
magentor-0.1.8 lib/magento/product_attribute_set.rb
magentor-0.1.7 lib/magento/product_attribute_set.rb
magentor-0.1.2 lib/magento/product_attribute_set.rb
magentor-0.1.0 lib/magento/product_attribute_set.rb