Sha256: 49283f8c3a5839bb73002e0ab96a6cce8924e3206a4e384a96a914d42aacb026
Contents?: true
Size: 413 Bytes
Versions: 46
Compression:
Stored size: 413 Bytes
Contents
# frozen_string_literal: true require "lutaml/uml/has_attributes" module Lutaml module Uml module Node class Base include HasAttributes # rubocop:disable Rails/ActiveRecordAliases def initialize(attributes = {}) update_attributes(attributes) end # rubocop:enable Rails/ActiveRecordAliases attr_accessor :parent end end end end
Version data entries
46 entries across 46 versions & 2 rubygems