dcm_dict 0.66.0 → 0.67.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/README.md +2 -2
- data/bin/dcm_dict_converter.rb +2 -2
- data/lib/dcm_dict/dictionary/base_dictionary.rb +1 -1
- data/lib/dcm_dict/dictionary/base_record.rb +1 -1
- data/lib/dcm_dict/dictionary/data_element_dictionary.rb +1 -1
- data/lib/dcm_dict/dictionary/data_element_record.rb +1 -1
- data/lib/dcm_dict/dictionary/uid_record.rb +1 -1
- data/lib/dcm_dict/encoder/data_to_code.rb +1 -1
- data/lib/dcm_dict/error/dictionary_error.rb +1 -1
- data/lib/dcm_dict/ext/object_extension.rb +1 -1
- data/lib/dcm_dict/refine/array_refine.rb +1 -1
- data/lib/dcm_dict/refine/data_element_refine.rb +1 -1
- data/lib/dcm_dict/refine/internal/array_refine_internal.rb +1 -1
- data/lib/dcm_dict/refine/internal/hash_refine_internal.rb +1 -1
- data/lib/dcm_dict/refine/internal/string_refine_internal.rb +1 -1
- data/lib/dcm_dict/refine/string_refine.rb +1 -1
- data/lib/dcm_dict/refine/symbol_refine.rb +1 -1
- data/lib/dcm_dict/refine/uid_refine.rb +1 -1
- data/lib/dcm_dict/rubies/rb_ext.rb +1 -1
- data/lib/dcm_dict/source_data/data_elements_data.rb +8 -2
- data/lib/dcm_dict/source_data/detached_data.rb +1 -1
- data/lib/dcm_dict/source_data/uid_values_data.rb +1 -1
- data/lib/dcm_dict/version.rb +3 -3
- data/lib/dcm_dict/xml/constant.rb +1 -1
- data/lib/dcm_dict/xml/field_data.rb +1 -1
- data/lib/dcm_dict/xml/nokogiri_tool.rb +1 -1
- data/lib/dcm_dict/xml/rexml_tool.rb +1 -1
- data/lib/dcm_dict/xml/tag_field_data.rb +1 -1
- data/lib/dcm_dict/xml/uid_field_data.rb +1 -1
- data/lib/dcm_dict/xml/xml_tool.rb +1 -1
- data/lib/dcm_dict.rb +1 -1
- data/spec/data_element_sample_spec_helper.rb +1 -1
- data/spec/data_element_shared_example_spec_helper.rb +1 -1
- data/spec/dcm_dict/dictionary/data_element_dictionary_spec.rb +1 -1
- data/spec/dcm_dict/dictionary/data_element_record_spec.rb +1 -1
- data/spec/dcm_dict/dictionary/uid_record_spec.rb +1 -1
- data/spec/dcm_dict/encoder/data_to_code_spec.rb +1 -1
- data/spec/dcm_dict/ext/object_extension_spec.rb +1 -1
- data/spec/dcm_dict/refine/array_refine_spec.rb +1 -1
- data/spec/dcm_dict/refine/internal/array_refine_internal_spec.rb +1 -1
- data/spec/dcm_dict/refine/internal/hash_refine_internal_spec.rb +1 -1
- data/spec/dcm_dict/refine/internal/string_refine_internal_spec.rb +1 -1
- data/spec/dcm_dict/refine/string_refine_spec.rb +1 -1
- data/spec/dcm_dict/refine/symbol_refine_spec.rb +1 -1
- data/spec/dcm_dict/rubies/rb_ext_spec.rb +1 -1
- data/spec/dcm_dict/source_data/data_elements_data_spec.rb +1 -1
- data/spec/dcm_dict/source_data/detached_data_spec.rb +1 -1
- data/spec/dcm_dict/source_data/uid_values_data_spec.rb +1 -1
- data/spec/dcm_dict/version_spec.rb +1 -1
- data/spec/dcm_dict/xml/tag_field_data_spec.rb +1 -1
- data/spec/dcm_dict/xml/uid_field_data_spec.rb +1 -1
- data/spec/dictionary_shared_example_spec_helper.rb +1 -1
- data/spec/refine_shared_example_spec_helper.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/spec/xml_sample_spec_helper.rb +1 -1
- metadata +12 -12
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 756bed21b5d9f253c78c9ff781fcaee8584a5a1899cceeb5b015b1709524c907
|
|
4
|
+
data.tar.gz: c73c0adaf0cbfc1d3d488b0c48fc1cd48f69b630f87e024ba34f299dd4a183b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29fed03b2e2076ff12eea305eaf9d12b4ccfd4f9a6d79d69530386f9ab55333aa2108076a3ec58cce629fecd19bb77f215f9176fee1a555491613c8a5abe1e7a
|
|
7
|
+
data.tar.gz: 7bb152bb4d05833dbd493faaaf50baa015ac66501d247aa692b6a5f2e13cc37e1151b730135ccc865c09371f7970641861b29f6313f09524eb3ce1665f22aa5f
|
data/LICENSE
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
DcmDict is a Ruby gem (dcm_dict) to handle
|
|
2
2
|
in a simple way the Data defined within the DICOM Standard.
|
|
3
3
|
|
|
4
|
-
Copyright (C) 2014-
|
|
4
|
+
Copyright (C) 2014-2026 Enrico Rivarola
|
|
5
5
|
|
|
6
6
|
DcmDict is free software: you can redistribute it and/or modify
|
|
7
7
|
it under the terms of the GNU General Public License as published by
|
data/README.md
CHANGED
|
@@ -312,7 +312,7 @@ Check the file for other details.
|
|
|
312
312
|
|
|
313
313
|
## Note
|
|
314
314
|
|
|
315
|
-
Current library version is aligned to _DICOM Base Standard_ **
|
|
315
|
+
Current library version is aligned to _DICOM Base Standard_ **2026a**
|
|
316
316
|
|
|
317
317
|
## Install
|
|
318
318
|
|
|
@@ -338,7 +338,7 @@ TBD
|
|
|
338
338
|
|
|
339
339
|
## License
|
|
340
340
|
|
|
341
|
-
Copyright (C) 2014-
|
|
341
|
+
Copyright (C) 2014-2026 Enrico Rivarola.
|
|
342
342
|
See the `LICENSE` and `COPYING` files for license details.
|
|
343
343
|
|
|
344
344
|
## Ruby Gem
|
data/bin/dcm_dict_converter.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# -*- ruby -*-
|
|
3
3
|
#
|
|
4
|
-
# Copyright (C) 2014-
|
|
4
|
+
# Copyright (C) 2014-2026 Enrico Rivarola
|
|
5
5
|
#
|
|
6
6
|
# This file is part of DcmDict gem (dcm_dict).
|
|
7
7
|
#
|
|
@@ -29,7 +29,7 @@ require 'dcm_dict'
|
|
|
29
29
|
require 'dcm_dict/xml/xml_tool'
|
|
30
30
|
|
|
31
31
|
LICENSE_TEXT=<<END_LICENSE
|
|
32
|
-
Copyright (C) 2014-
|
|
32
|
+
Copyright (C) 2014-2026 Enrico Rivarola
|
|
33
33
|
|
|
34
34
|
This file is part of DcmDict gem (dcm_dict).
|
|
35
35
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
2
|
#
|
|
3
|
-
# Copyright (C) 2014-
|
|
3
|
+
# Copyright (C) 2014-2026 Enrico Rivarola
|
|
4
4
|
#
|
|
5
5
|
# This file is part of DcmDict gem (dcm_dict).
|
|
6
6
|
#
|
|
@@ -156,6 +156,7 @@ Only characters from the Default Character Repertoire may be used.'},
|
|
|
156
156
|
{ tag_ps: '(0008,001A)', tag_name: "Related General SOP Class UID", tag_key: 'RelatedGeneralSOPClassUID', tag_vr: [:UI], tag_vm: ["1-n"], tag_str: '(0008,001A)', tag_sym: :related_general_sop_class_uid, tag_ndm: '0008001A', tag_ary: [0x0008,0x001A], tag_multiple: false, tag_note: ''},
|
|
157
157
|
{ tag_ps: '(0008,001B)', tag_name: "Original Specialized SOP Class UID", tag_key: 'OriginalSpecializedSOPClassUID', tag_vr: [:UI], tag_vm: ["1"], tag_str: '(0008,001B)', tag_sym: :original_specialized_sop_class_uid, tag_ndm: '0008001B', tag_ary: [0x0008,0x001B], tag_multiple: false, tag_note: ''},
|
|
158
158
|
{ tag_ps: '(0008,001C)', tag_name: "Synthetic Data", tag_key: 'SyntheticData', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0008,001C)', tag_sym: :synthetic_data, tag_ndm: '0008001C', tag_ary: [0x0008,0x001C], tag_multiple: false, tag_note: ''},
|
|
159
|
+
{ tag_ps: '(0008,001D)', tag_name: "Sensitive Content Code Sequence", tag_key: 'SensitiveContentCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0008,001D)', tag_sym: :sensitive_content_code_sequence, tag_ndm: '0008001D', tag_ary: [0x0008,0x001D], tag_multiple: false, tag_note: ''},
|
|
159
160
|
{ tag_ps: '(0008,0020)', tag_name: "Study Date", tag_key: 'StudyDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0020)', tag_sym: :study_date, tag_ndm: '00080020', tag_ary: [0x0008,0x0020], tag_multiple: false, tag_note: ''},
|
|
160
161
|
{ tag_ps: '(0008,0021)', tag_name: "Series Date", tag_key: 'SeriesDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0021)', tag_sym: :series_date, tag_ndm: '00080021', tag_ary: [0x0008,0x0021], tag_multiple: false, tag_note: ''},
|
|
161
162
|
{ tag_ps: '(0008,0022)', tag_name: "Acquisition Date", tag_key: 'AcquisitionDate', tag_vr: [:DA], tag_vm: ["1"], tag_str: '(0008,0022)', tag_sym: :acquisition_date, tag_ndm: '00080022', tag_ary: [0x0008,0x0022], tag_multiple: false, tag_note: ''},
|
|
@@ -827,7 +828,7 @@ Only characters from the Default Character Repertoire may be used.'},
|
|
|
827
828
|
{ tag_ps: '(0014,604E)', tag_name: "Moving Window Weights", tag_key: 'MovingWindowWeights', tag_vr: [:DS], tag_vm: ["1-n"], tag_str: '(0014,604E)', tag_sym: :moving_window_weights, tag_ndm: '0014604E', tag_ary: [0x0014,0x604E], tag_multiple: false, tag_note: 'DICONDE'},
|
|
828
829
|
{ tag_ps: '(0014,604F)', tag_name: "Moving Window Pitch", tag_key: 'MovingWindowPitch', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0014,604F)', tag_sym: :moving_window_pitch, tag_ndm: '0014604F', tag_ary: [0x0014,0x604F], tag_multiple: false, tag_note: 'DICONDE'},
|
|
829
830
|
{ tag_ps: '(0014,6050)', tag_name: "Moving Window Padding Scheme", tag_key: 'MovingWindowPaddingScheme', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0014,6050)', tag_sym: :moving_window_padding_scheme, tag_ndm: '00146050', tag_ary: [0x0014,0x6050], tag_multiple: false, tag_note: 'DICONDE'},
|
|
830
|
-
{ tag_ps: '(0014,6051)', tag_name: "Moving Window Padding
|
|
831
|
+
{ tag_ps: '(0014,6051)', tag_name: "Moving Window Padding Length", tag_key: 'MovingWindowPaddingLength', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0014,6051)', tag_sym: :moving_window_padding_length, tag_ndm: '00146051', tag_ary: [0x0014,0x6051], tag_multiple: false, tag_note: 'DICONDE'},
|
|
831
832
|
{ tag_ps: '(0014,6052)', tag_name: "Spatial Filtering Parameters Sequence", tag_key: 'SpatialFilteringParametersSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(0014,6052)', tag_sym: :spatial_filtering_parameters_sequence, tag_ndm: '00146052', tag_ary: [0x0014,0x6052], tag_multiple: false, tag_note: 'DICONDE'},
|
|
832
833
|
{ tag_ps: '(0014,6053)', tag_name: "Spatial Filtering Scheme", tag_key: 'SpatialFilteringScheme', tag_vr: [:CS], tag_vm: ["1"], tag_str: '(0014,6053)', tag_sym: :spatial_filtering_scheme, tag_ndm: '00146053', tag_ary: [0x0014,0x6053], tag_multiple: false, tag_note: 'DICONDE'},
|
|
833
834
|
{ tag_ps: '(0014,6056)', tag_name: "Horizontal Moving Window Size", tag_key: 'HorizontalMovingWindowSize', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(0014,6056)', tag_sym: :horizontal_moving_window_size, tag_ndm: '00146056', tag_ary: [0x0014,0x6056], tag_multiple: false, tag_note: 'DICONDE'},
|
|
@@ -4183,6 +4184,11 @@ Only characters from the Default Character Repertoire may be used.'},
|
|
|
4183
4184
|
{ tag_ps: '(3004,0012)', tag_name: "Dose Value", tag_key: 'DoseValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(3004,0012)', tag_sym: :dose_value, tag_ndm: '30040012', tag_ary: [0x3004,0x0012], tag_multiple: false, tag_note: ''},
|
|
4184
4185
|
{ tag_ps: '(3004,0014)', tag_name: "Tissue Heterogeneity Correction", tag_key: 'TissueHeterogeneityCorrection', tag_vr: [:CS], tag_vm: ["1-3"], tag_str: '(3004,0014)', tag_sym: :tissue_heterogeneity_correction, tag_ndm: '30040014', tag_ary: [0x3004,0x0014], tag_multiple: false, tag_note: ''},
|
|
4185
4186
|
{ tag_ps: '(3004,0016)', tag_name: "Recommended Isodose Level Sequence", tag_key: 'RecommendedIsodoseLevelSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3004,0016)', tag_sym: :recommended_isodose_level_sequence, tag_ndm: '30040016', tag_ary: [0x3004,0x0016], tag_multiple: false, tag_note: ''},
|
|
4187
|
+
{ tag_ps: '(3004,0020)', tag_name: "Dose Unit Code Sequence", tag_key: 'DoseUnitCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3004,0020)', tag_sym: :dose_unit_code_sequence, tag_ndm: '30040020', tag_ary: [0x3004,0x0020], tag_multiple: false, tag_note: ''},
|
|
4188
|
+
{ tag_ps: '(3004,0021)', tag_name: "RT Dose Interpreted Type Code Sequence", tag_key: 'RTDoseInterpretedTypeCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3004,0021)', tag_sym: :rt_dose_interpreted_type_code_sequence, tag_ndm: '30040021', tag_ary: [0x3004,0x0021], tag_multiple: false, tag_note: ''},
|
|
4189
|
+
{ tag_ps: '(3004,0022)', tag_name: "RT Dose Interpreted Type Code Modifier Sequence", tag_key: 'RTDoseInterpretedTypeCodeModifierSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3004,0022)', tag_sym: :rt_dose_interpreted_type_code_modifier_sequence, tag_ndm: '30040022', tag_ary: [0x3004,0x0022], tag_multiple: false, tag_note: ''},
|
|
4190
|
+
{ tag_ps: '(3004,0023)', tag_name: "Dose Radiobiological Interpretation Sequence", tag_key: 'DoseRadiobiologicalInterpretationSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3004,0023)', tag_sym: :dose_radiobiological_interpretation_sequence, tag_ndm: '30040023', tag_ary: [0x3004,0x0023], tag_multiple: false, tag_note: ''},
|
|
4191
|
+
{ tag_ps: '(3004,0024)', tag_name: "RT Dose Intent Code Sequence", tag_key: 'RTDoseIntentCodeSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3004,0024)', tag_sym: :rt_dose_intent_code_sequence, tag_ndm: '30040024', tag_ary: [0x3004,0x0024], tag_multiple: false, tag_note: ''},
|
|
4186
4192
|
{ tag_ps: '(3004,0040)', tag_name: "DVH Normalization Point", tag_key: 'DVHNormalizationPoint', tag_vr: [:DS], tag_vm: ["3"], tag_str: '(3004,0040)', tag_sym: :dvh_normalization_point, tag_ndm: '30040040', tag_ary: [0x3004,0x0040], tag_multiple: false, tag_note: ''},
|
|
4187
4193
|
{ tag_ps: '(3004,0042)', tag_name: "DVH Normalization Dose Value", tag_key: 'DVHNormalizationDoseValue', tag_vr: [:DS], tag_vm: ["1"], tag_str: '(3004,0042)', tag_sym: :dvh_normalization_dose_value, tag_ndm: '30040042', tag_ary: [0x3004,0x0042], tag_multiple: false, tag_note: ''},
|
|
4188
4194
|
{ tag_ps: '(3004,0050)', tag_name: "DVH Sequence", tag_key: 'DVHSequence', tag_vr: [:SQ], tag_vm: ["1"], tag_str: '(3004,0050)', tag_sym: :dvh_sequence, tag_ndm: '30040050', tag_ary: [0x3004,0x0050], tag_multiple: false, tag_note: ''},
|
data/lib/dcm_dict/version.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (C) 2014-
|
|
2
|
+
# Copyright (C) 2014-2026 Enrico Rivarola
|
|
3
3
|
#
|
|
4
4
|
# This file is part of DcmDict gem (dcm_dict).
|
|
5
5
|
#
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
# applicable local, state, national or international regulations.
|
|
23
23
|
#
|
|
24
24
|
module DcmDict
|
|
25
|
-
VERSION = "0.
|
|
26
|
-
DICOM_DOC_VERSION = "
|
|
25
|
+
VERSION = "0.67.0"
|
|
26
|
+
DICOM_DOC_VERSION = "2026a"
|
|
27
27
|
end
|
data/lib/dcm_dict.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dcm_dict
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.67.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Enrico Rivarola
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date:
|
|
10
|
+
date: 2026-03-19 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: nokogiri
|
|
@@ -15,20 +15,20 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - "~>"
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '1.
|
|
18
|
+
version: '1.19'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 1.
|
|
21
|
+
version: 1.19.1
|
|
22
22
|
type: :development
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - "~>"
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: '1.
|
|
28
|
+
version: '1.19'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 1.
|
|
31
|
+
version: 1.19.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: rspec
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -38,7 +38,7 @@ dependencies:
|
|
|
38
38
|
version: '3.13'
|
|
39
39
|
- - ">="
|
|
40
40
|
- !ruby/object:Gem::Version
|
|
41
|
-
version: 3.13.
|
|
41
|
+
version: 3.13.2
|
|
42
42
|
type: :development
|
|
43
43
|
prerelease: false
|
|
44
44
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -48,7 +48,7 @@ dependencies:
|
|
|
48
48
|
version: '3.13'
|
|
49
49
|
- - ">="
|
|
50
50
|
- !ruby/object:Gem::Version
|
|
51
|
-
version: 3.13.
|
|
51
|
+
version: 3.13.2
|
|
52
52
|
- !ruby/object:Gem::Dependency
|
|
53
53
|
name: simplecov
|
|
54
54
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -78,7 +78,7 @@ dependencies:
|
|
|
78
78
|
version: '13.3'
|
|
79
79
|
- - ">="
|
|
80
80
|
- !ruby/object:Gem::Version
|
|
81
|
-
version: 13.3.
|
|
81
|
+
version: 13.3.1
|
|
82
82
|
type: :development
|
|
83
83
|
prerelease: false
|
|
84
84
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -88,7 +88,7 @@ dependencies:
|
|
|
88
88
|
version: '13.3'
|
|
89
89
|
- - ">="
|
|
90
90
|
- !ruby/object:Gem::Version
|
|
91
|
-
version: 13.3.
|
|
91
|
+
version: 13.3.1
|
|
92
92
|
description: DcmDict is a Ruby gem (dcm_dict) to handle in a simple way the Data Dictionary
|
|
93
93
|
defined within the DICOM Standard
|
|
94
94
|
email: henrythebuilder@yahoo.it
|
|
@@ -164,7 +164,7 @@ licenses:
|
|
|
164
164
|
metadata:
|
|
165
165
|
bug_tracker_uri: https://github.com/henrythebuilder/dcm_dict/issues
|
|
166
166
|
changelog_uri: https://github.com/henrythebuilder/dcm_dict/blob/master/CHANGELOG.md
|
|
167
|
-
documentation_uri: http://www.rubydoc.info/gems/dcm_dict/0.
|
|
167
|
+
documentation_uri: http://www.rubydoc.info/gems/dcm_dict/0.67.0
|
|
168
168
|
homepage_uri: http://rubygems.org/gems/dcm_dict
|
|
169
169
|
source_code_uri: https://github.com/henrythebuilder/dcm_dict
|
|
170
170
|
rdoc_options: []
|
|
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
182
|
version: '0'
|
|
183
183
|
requirements: []
|
|
184
|
-
rubygems_version:
|
|
184
|
+
rubygems_version: 4.0.3
|
|
185
185
|
specification_version: 4
|
|
186
186
|
summary: A simple way to handle DICOM Data Dictionary
|
|
187
187
|
test_files:
|