Sha256: 260f6744683b6f864d46b50c0190455c280411284c9a0de56143eb21ed899300
Contents?: true
Size: 317 Bytes
Versions: 8
Compression:
Stored size: 317 Bytes
Contents
module FlipFab class Persistence attr_reader :feature_name, :context def initialize(feature_name, context) @feature_name = feature_name @context = context end def read raise NotImplementedError end def write(state) raise NotImplementedError end end end
Version data entries
8 entries across 8 versions & 1 rubygems