Sha256: 74620185e6617b7c591ce3ca1fddd0ac046ff2dacbf4ae4c6b5560c8d74ae4ca
Contents?: true
Size: 407 Bytes
Versions: 14
Compression:
Stored size: 407 Bytes
Contents
module Expressir module Model class InterfacedItem < ModelElement include Identifier 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
14 entries across 14 versions & 1 rubygems