werein/prestashop

View on GitHub
lib/prestashop.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'prestashop/api'
require 'prestashop/client'
require 'prestashop/mapper'

# == This module is wrapper of three submodules API, Client and Mapper
# 
# === API
# Is used for comunication with Prestashop WebService
# 
# === Client
# Create instance of API, it's holded on current thread
# 
# === Mapper
# Map available Prestashop objects to class and instances.
#
# @see Api
# @see Client
# @see Mapper
# 
module Prestashop
end