Sha256: 515c2332ced214a0532252aef04c157448d22f9d12dab959f5f84ca1a47744dc
Contents?: true
Size: 407 Bytes
Versions: 7
Compression:
Stored size: 407 Bytes
Contents
# frozen_string_literal: true module ThemeCheck class Storage def read(relative_path) raise NotImplementedError end def write(relative_path, content) raise NotImplementedError end def path(relative_path) raise NotImplementedError end def files raise NotImplementedError end def directories raise NotImplementedError end end end
Version data entries
7 entries across 7 versions & 1 rubygems