source: ruby/trunk/lib/models/rm.rb@ 104

Last change on this file since 104 was 104, checked in by KOBAYASHI, Shinji, 16 years ago

fixed #46
refs #62, #65, #50

arranged structure of test_reference_model.rb
divided test classes

File size: 993 bytes
Line 
1$:.unshift File.join(File.dirname(__FILE__))
2# component: openEHR Ruby reference implementation
3# description: This file contains rm.packages.domain classes
4# keywords: archetype
5# author: Shinji KOBAYASHI, Akimichi TATSUKAWA
6# support: openEHR.jp
7# license: openEHR open source license
8#
9
10# OpenEHR::RM
11module OpenEHR
12 module RM
13 autoload :Demographic, "rm/demographic.rb"
14
15 module Common
16 autoload :Resource, "rm/common/resource.rb"
17 autoload :Archetyped, "rm/common/archetyped.rb"
18 autoload :Generic, "rm/common/generic.rb"
19 end
20
21 module Support
22 autoload :Definition, "rm/support/definition.rb"
23 autoload :Identification, "rm/support/identification.rb"
24 autoload :Terminology, "rm/support/terminology.rb"
25 end
26
27 module Data_Types
28 autoload :Basic, "rm/data_types/basic.rb"
29 autoload :Text, "rm/data_types/text.rb"
30 autoload :URI, "rm/data_types/uri.rb"
31 autoload :Quantity, "rm/data_types/quantity.rb"
32 end
33 end
34end
Note: See TracBrowser for help on using the repository browser.