-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #113 from fhir-crucible/FI-2832-version-support
FI-2832 Add multi-version support
Showing
619 changed files
with
2,360,129 additions
and
25,137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,6 @@ tmp/ | |
|
||
# User-specific | ||
.idea | ||
|
||
# ig-extraction | ||
lib/fhir_models/igs/packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,3 @@ | ||
root = File.expand_path '..', File.dirname(File.absolute_path(__FILE__)) | ||
|
||
require File.join(root, 'lib', 'fhir_models', 'version') | ||
require File.join(root, 'lib', 'fhir_models', 'deprecate') | ||
|
||
# Need to require Hashable first | ||
require File.join(root, 'lib', 'fhir_models', 'bootstrap', 'hashable.rb') | ||
require File.join(root, 'lib', 'fhir_models', 'bootstrap', 'json.rb') | ||
|
||
Dir.glob(File.join(root, 'lib', 'fhir_models', 'bootstrap', '*.rb')).sort.each do |file| | ||
require file | ||
end | ||
Dir.glob(File.join(root, 'lib', 'fhir_models', 'bootstrap', '**', '*.rb')).sort.each do |file| | ||
require file | ||
end | ||
|
||
require File.join(root, 'lib', 'fhir_models', 'fhir.rb') | ||
|
||
# Require the generated code | ||
Dir.glob(File.join(root, 'lib', 'fhir_models', 'fhir', '*.rb')).sort.each do |file| | ||
require file | ||
end | ||
Dir.glob(File.join(root, 'lib', 'fhir_models', 'fhir', '**', '*.rb')).sort.each do |file| | ||
require file | ||
end | ||
|
||
# Require the FHIRPath code | ||
Dir.glob(File.join(root, 'lib', 'fhir_models', 'fhirpath', '*.rb')).sort.each do |file| | ||
require file | ||
end | ||
|
||
# Require the fhir_ext code | ||
Dir.glob(File.join(root, 'lib', 'fhir_models', 'fhir_ext', '*.rb')).sort.each do |file| | ||
require file | ||
end | ||
# require versions | ||
require_relative 'fhir_models/r4' | ||
require_relative 'fhir_models/r4b' |
Oops, something went wrong.