Sha256: ef997c399ba7b42f7d890ebcf84bc5bcedf96cff9dac675f262f43ba113f6544
Contents?: true
Size: 447 Bytes
Versions: 13
Compression:
Stored size: 447 Bytes
Contents
# frozen_string_literal: true module ThemeCheck 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 directories raise NotImplementedError end def versioned? false end end end
Version data entries
13 entries across 13 versions & 1 rubygems