Sha256: ebffd8a285ffc87065efcd876bd4ab370d5aa1854eb8a65262b0a823f6871000
Contents?: true
Size: 890 Bytes
Versions: 37
Compression:
Stored size: 890 Bytes
Contents
module Onebox module Engine class GooglePlayAppOnebox include Engine include LayoutSupport include HTML DEFAULTS = { MAX_DESCRIPTION_CHARS: 500 } matches_regexp Regexp.new("^https?://play\\.(?:(?:\\w)+\\.)?(google)\\.com(?:/)?/store/apps/") always_https private def data result = { link: link, title: raw.css(".document-title div").inner_text, developer: raw.css(".document-subtitle.primary").inner_text, image: raw.css(".cover-image").first["src"], description: raw.css(".text-body div").inner_text[0..DEFAULTS[:MAX_DESCRIPTION_CHARS]].chop + "...", price: raw.css(".price.buy meta[itemprop=price]").first["content"] } if result[:price] == "0" result[:price] = "Free" end result end end end end
Version data entries
37 entries across 37 versions & 1 rubygems