$:.unshift File.join(File.dirname(__FILE__)) #! /usr/bin/env ruby # component: openEHR Ruby reference implementation # description: This file includes Archetype # class that contains Archetype values. # Main concept is based on Java ref impl. # We should make refactoring to suit for Ruby way. # keywords: archetype # author: Akimichi TATSUKAWA, Shinji KOBAYASHI # support: openEHR.jp # license: openEHR open source license # require 'rm/common/resource.rb' #require 'rm/support/terminology/openehr_code_set_identifier.rb' module OpenEHR module AM module Archetype autoload :Archetype, "am/archetype/archetype.rb" autoload :Constraint_Model, "am/archetype/constraint_model/archetype_constraint.rb" autoload :Ontology, "am/archetype/ontology.rb" autoload :Archetype_Description, "am/archetype/archetype_description/archetype_description.rb" module Constraint_Model autoload :Assertion, "am/archetype/constraint_model/assertion.rb" autoload :Primitive, "am/archetype/constraint_model/primitive.rb" end #end of ConstraintModel end # of Archetype end # of AM end # of OpenEHR