Sha256: 596fc7b10cb7d8fb7de6e6c85c9e8d094cda0c5e1ff8c848887952027ade0a5f

Contents?: true

Size: 480 Bytes

Versions: 22

Compression:

Stored size: 480 Bytes

Contents

# frozen_string_literal: true

module PlatformosCheck
  class Storage
    def path(relative_path)
      raise NotImplementedError
    end

    def read(relative_path)
      raise NotImplementedError
    end

    def write(relative_path, content)
      raise NotImplementedError
    end

    def files
      raise NotImplementedError
    end

    def platformos_app
      @platformos_app ||= PlatformosCheck::App.new(self)
    end

    def versioned?
      false
    end
  end
end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
platformos-check-0.2.0 lib/platformos_check/storage.rb
platformos-check-0.1.0 lib/platformos_check/storage.rb