Sha256: b49c98cb5904f1eff4ff422213eed8231af207950ecb1b96b1228a0fa75555d8
Contents?: true
Size: 407 Bytes
Versions: 28
Compression:
Stored size: 407 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 end end
Version data entries
28 entries across 28 versions & 1 rubygems