labimotion 2.3.0.rc4 → 2.3.0.rc5
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 +12 -0
- data/lib/labimotion/apis/element_variation_api.rb +58 -3
- data/lib/labimotion/libs/element_variation_column_set.rb +426 -0
- data/lib/labimotion/libs/element_variation_header.rb +119 -0
- data/lib/labimotion/libs/export_element_variations.rb +245 -0
- data/lib/labimotion/libs/import_element_variations.rb +411 -0
- data/lib/labimotion/models/concerns/element_fetchable.rb +3 -2
- data/lib/labimotion/models/element.rb +3 -2
- data/lib/labimotion/version.rb +1 -1
- data/lib/labimotion.rb +4 -0
- metadata +19 -1
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.3.0.
|
|
4
|
+
version: 2.3.0.rc5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chia-Lin Lin
|
|
@@ -45,6 +45,20 @@ dependencies:
|
|
|
45
45
|
- - "<"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '8.0'
|
|
48
|
+
- !ruby/object:Gem::Dependency
|
|
49
|
+
name: roo
|
|
50
|
+
requirement: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '2.10'
|
|
55
|
+
type: :runtime
|
|
56
|
+
prerelease: false
|
|
57
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '2.10'
|
|
48
62
|
description:
|
|
49
63
|
email:
|
|
50
64
|
- chia-lin.lin@kit.edu
|
|
@@ -116,8 +130,12 @@ files:
|
|
|
116
130
|
- lib/labimotion/libs/data/vocab/Standard.json
|
|
117
131
|
- lib/labimotion/libs/data/vocab/System.json
|
|
118
132
|
- lib/labimotion/libs/dataset_builder.rb
|
|
133
|
+
- lib/labimotion/libs/element_variation_column_set.rb
|
|
134
|
+
- lib/labimotion/libs/element_variation_header.rb
|
|
119
135
|
- lib/labimotion/libs/export_dataset.rb
|
|
120
136
|
- lib/labimotion/libs/export_element.rb
|
|
137
|
+
- lib/labimotion/libs/export_element_variations.rb
|
|
138
|
+
- lib/labimotion/libs/import_element_variations.rb
|
|
121
139
|
- lib/labimotion/libs/nmr_mapper.rb
|
|
122
140
|
- lib/labimotion/libs/properties_handler.rb
|
|
123
141
|
- lib/labimotion/libs/sample_association.rb
|