class Lce::Product

Public Class Methods

all() click to toggle source
# File lib/lce/product.rb, line 9
def all
  response = Lce.client.get('products', nil, nil, nil , nil)
  response.map! do |q|
    new(q)
  end        
end