Sha256: 36ef8f4cc0fe7c3d57425fc815465c37d430cd5942ec97ca85887342a93feb53
Contents?: true
Size: 526 Bytes
Versions: 8
Compression:
Stored size: 526 Bytes
Contents
module Vedeu class ParentPresentationColourTestClass include Vedeu::Presentation attr_reader :colour def initialize @colour = { background: '#330000', foreground: '#00aadd' } @parent = nil end end # ParentPresentationColourTestClass class PresentationColourTestClass include Vedeu::Presentation attr_reader :parent def initialize(attributes = {}) @colour = attributes[:colour] @parent = attributes[:parent] end end # PresentationTestClass end # Vedeu
Version data entries
8 entries across 8 versions & 1 rubygems