module Seoshop::Shop

Public Instance Methods

get_shop() click to toggle source
# File lib/seoshop-api/api/shop.rb, line 3
def get_shop
  response = get("#{@shop_language}/shop.json")
  response.body ? response.body['shop'] : false
end
get_shop_company() click to toggle source
# File lib/seoshop-api/api/shop.rb, line 13
def get_shop_company
  response = get("#{@shop_language}/shop/company.json")
  response.body ? response.body['shopCompany'] : false
end
get_shop_website() click to toggle source
# File lib/seoshop-api/api/shop.rb, line 8
def get_shop_website
  response = get("#{@shop_language}/shop/website.json")
  response.body ? response.body['shopWebsite'] : false
end