Sha256: a7f1efe0929bcf8c1ca3b651852985558eec77ae318f6f9112fafdba214a9264
Contents?: true
Size: 698 Bytes
Versions: 8
Compression:
Stored size: 698 Bytes
Contents
module Yoda module Model module Types # @abstract class Base def ==(another) eql?(another) end # @abstract # @param paths [Array<Path>] # @return [Base] def change_root(paths) fail NotImplementedError end # @abstract # @param registry [Registry] # @return [Array<Store::Objects::Base>] def resolve(registry) fail NotImplementedError end # @abstract # @return [String] def to_s fail NotImplementedError end # @return [Base] def map yield self end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems