Sha256: 535b6d69156342fe802f0e29db7ab7d2b02e72fd6c60af730333c8e2e5facd08

Contents?: true

Size: 237 Bytes

Versions: 1

Compression:

Stored size: 237 Bytes

Contents

module SeedGimmick
  module SeedIO
    class Base
      attr_reader :seed_file

      def initialize(seed_file)
        @seed_file = seed_file
      end

      def load_data
        raise NotImplementedError
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
seed_gimmick-0.0.1 lib/seed_gimmick/seed_io/base.rb