Sha256: 0387352fa02e750657ea2450d4ffc07d575f4eb17cdea443e53e0f8a26462f1f
Contents?: true
Size: 359 Bytes
Versions: 11
Compression:
Stored size: 359 Bytes
Contents
module LanguageCards class CompBitz attr_reader :display, :collection, :value, :mapping, :expected def initialize options @display = options.fetch(:display) @collection = options.fetch(:collection) @expected = options.fetch(:expected) @value = options.fetch(:value) @mapping = options.fetch(:mapping) end end end
Version data entries
11 entries across 11 versions & 1 rubygems