Sha256: 0f67e09dd6a6c0273d2d8e1436b81ef91d8427f9293b793913a1665a623d86f1

Contents?: true

Size: 334 Bytes

Versions: 2

Compression:

Stored size: 334 Bytes

Contents

module Mill

  class Resource

    class GoogleSiteVerification < Resource

      attr_accessor :key

      def initialize(key:, **args)
        @key = key
        @public = false
        super(**args)
      end

      def load
        @content = "google-site-verification: #{@key}.html\n"
        super
      end

    end

  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
mill-0.4 lib/mill/resources/google_site_verification.rb
mill-0.3 lib/mill/resources/google_site_verification.rb