labimotion 2.2.0.rc9 → 2.2.0.rc11
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/CHANGELOG.md +117 -0
- data/LICENSE +661 -0
- data/README.md +68 -0
- data/lib/labimotion/apis/generic_element_api.rb +0 -1
- data/lib/labimotion/apis/labimotion_api.rb +3 -0
- data/lib/labimotion/apis/labimotion_doi_api.rb +170 -0
- data/lib/labimotion/apis/labimotion_template_browse_api.rb +120 -0
- data/lib/labimotion/apis/user_api.rb +56 -0
- data/lib/labimotion/entities/labimotion_template_doi_entity.rb +30 -0
- data/lib/labimotion/entities/user_entity.rb +9 -0
- data/lib/labimotion/helpers/element_helpers.rb +15 -21
- data/lib/labimotion/libs/converter.rb +2 -1
- data/lib/labimotion/libs/nmr_mapper.rb +2 -2
- data/lib/labimotion/models/concerns/attachment_converter.rb +1 -0
- data/lib/labimotion/models/concerns/element_fetchable.rb +2 -2
- data/lib/labimotion/models/element.rb +2 -2
- data/lib/labimotion/utils/search.rb +2 -2
- data/lib/labimotion/version.rb +1 -1
- data/lib/labimotion.rb +5 -0
- metadata +10 -2
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: labimotion
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.0.
|
|
4
|
+
version: 2.2.0.rc11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chia-Lin Lin
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2026-06-
|
|
12
|
+
date: 2026-06-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: caxlsx
|
|
@@ -53,6 +53,9 @@ executables: []
|
|
|
53
53
|
extensions: []
|
|
54
54
|
extra_rdoc_files: []
|
|
55
55
|
files:
|
|
56
|
+
- CHANGELOG.md
|
|
57
|
+
- LICENSE
|
|
58
|
+
- README.md
|
|
56
59
|
- lib/labimotion.rb
|
|
57
60
|
- lib/labimotion/apis/converter_api.rb
|
|
58
61
|
- lib/labimotion/apis/dose_resp_request_api.rb
|
|
@@ -62,11 +65,14 @@ files:
|
|
|
62
65
|
- lib/labimotion/apis/generic_element_api.rb
|
|
63
66
|
- lib/labimotion/apis/generic_klass_api.rb
|
|
64
67
|
- lib/labimotion/apis/labimotion_api.rb
|
|
68
|
+
- lib/labimotion/apis/labimotion_doi_api.rb
|
|
65
69
|
- lib/labimotion/apis/labimotion_hub_api.rb
|
|
70
|
+
- lib/labimotion/apis/labimotion_template_browse_api.rb
|
|
66
71
|
- lib/labimotion/apis/mtt_api.rb
|
|
67
72
|
- lib/labimotion/apis/segment_api.rb
|
|
68
73
|
- lib/labimotion/apis/standard_api.rb
|
|
69
74
|
- lib/labimotion/apis/standard_layer_api.rb
|
|
75
|
+
- lib/labimotion/apis/user_api.rb
|
|
70
76
|
- lib/labimotion/apis/vocabulary_api.rb
|
|
71
77
|
- lib/labimotion/collection/export.rb
|
|
72
78
|
- lib/labimotion/collection/import.rb
|
|
@@ -84,10 +90,12 @@ files:
|
|
|
84
90
|
- lib/labimotion/entities/generic_klass_entity.rb
|
|
85
91
|
- lib/labimotion/entities/generic_public_entity.rb
|
|
86
92
|
- lib/labimotion/entities/klass_revision_entity.rb
|
|
93
|
+
- lib/labimotion/entities/labimotion_template_doi_entity.rb
|
|
87
94
|
- lib/labimotion/entities/properties_entity.rb
|
|
88
95
|
- lib/labimotion/entities/segment_entity.rb
|
|
89
96
|
- lib/labimotion/entities/segment_klass_entity.rb
|
|
90
97
|
- lib/labimotion/entities/segment_revision_entity.rb
|
|
98
|
+
- lib/labimotion/entities/user_entity.rb
|
|
91
99
|
- lib/labimotion/entities/vocabulary_entity.rb
|
|
92
100
|
- lib/labimotion/helpers/converter_helpers.rb
|
|
93
101
|
- lib/labimotion/helpers/dataset_helpers.rb
|