Sha256: ba1f1c84f532cc706078d7804dde89253e42dda237fbd2efc4159db25ab4ff4f
Contents?: true
Size: 332 Bytes
Versions: 9
Compression:
Stored size: 332 Bytes
Contents
module Lingohub module Models class Resource attr_accessor :locale def initialize(client, locale, link) @client = client @locale = locale @link = link end # Downloads the resource content def content @content ||= @client.get(@link) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems