Sha256: 46707a46bdece8ff011168543ea421f058f411896b7d41083ac85047c21e311e
Contents?: true
Size: 421 Bytes
Versions: 15
Compression:
Stored size: 421 Bytes
Contents
module Mill class Resource class GoogleSiteVerification < Resource attr_accessor :key def initialize(key:, **args) @key = key @public = false super(**args) end def inspect super + ", key: %p" % [ @key, ] end def load @content = "google-site-verification: #{@key}.html\n" super end end end end
Version data entries
15 entries across 15 versions & 1 rubygems