Sha256: d492a7064dee4f32f71333118fc93eb7a23503282f0966ecd0185d24411b9873
Contents?: true
Size: 451 Bytes
Versions: 28
Compression:
Stored size: 451 Bytes
Contents
module Expressir module Model class InterfacedItem < ModelElement include Identifier undef :source undef :source= attr_accessor :base_item def initialize(options = {}) @id = options[:id] @remarks = options.fetch(:remarks, []) # @source = options[:source] @base_item = options[:base_item] super end def path base_item.path end end end end
Version data entries
28 entries across 28 versions & 1 rubygems