source: ruby/branches/0.5.0/lib/open_ehr/rm.rb@ 167

Last change on this file since 167 was 167, checked in by KOBAYASHI, Shinji, 15 years ago

adjust for rails

File size: 1.6 KB
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
13 autoload :Assumed_Library_Types, "assumed_library_types.rb"
14
15 module RM
16 autoload :Demographic, "rm/demographic.rb"
17 autoload :Security, "rm/security.rb"
18
19 module Common
20 autoload :Resource, "rm/common/resource.rb"
21 autoload :Archetyped, "rm/common/archetyped.rb"
22 autoload :Generic, "rm/common/generic.rb"
23 autoload :Directory, "rm/common/directory.rb"
24 autoload :Change_Control, "rm/common/change_control.rb"
25 end
26
27 module Support
28 autoload :Definition, "rm/support/definition.rb"
29 autoload :Identification, "rm/support/identification.rb"
30 autoload :Terminology, "rm/support/terminology.rb"
31 end
32
33 module DataTypes
34 autoload :Basic, "rm/data_types/basic.rb"
35 autoload :Text, "rm/data_types/text.rb"
36 autoload :URI, "rm/data_types/uri.rb"
37 autoload :Quantity, "rm/data_types/quantity.rb"
38 autoload :Encapsulated, "rm/data_types/encapsulated.rb"
39 autoload :Time_Specification, 'rm/data_types/time_specification.rb'
40 end
41
42 module DataStructures
43 autoload :Data_Structure, "rm/data_structure.rb"
44 autoload :History, 'rm/data_structures/history.rb'
45 autoload :Item_Structure, 'rm/data_structures/item_structure.rb'
46 end
47
48 module Security
49 autoload :Security, 'rm/security.rb'
50 end
51 end
52
53end
Note: See TracBrowser for help on using the repository browser.