sushi_fabric 1.1.9 → 1.2.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/lib/sushi_fabric/sushiApp.rb +1 -2
- data/lib/sushi_fabric/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2624e396ce9d663acbeb4dd22bfbd4463cba7c14699d6e171907517c2636bee7
|
|
4
|
+
data.tar.gz: 8117911fa8b21fdc81bb1672b9c40f25ae383d22c7d496a964be55ac0703b272
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1be2262ff2a7180e0d110fd06d1d7c2ab8a38252e514dca4cae35c9a29b15010751ab1ce36509005a1628c107cdd90de9fa032290674600d734a066e7173d0c9
|
|
7
|
+
data.tar.gz: f57ab1b10f1f382b68a7e517b499e46160d64046b9363e36f2d8f9c13b0b981e44e031c4674aa579252e45de9635672da36f3d9cb98e5b582bb801525aa031c6
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env ruby
|
|
2
2
|
# encoding: utf-8
|
|
3
|
-
# Version = '20230404-
|
|
3
|
+
# Version = '20230404-145037'
|
|
4
4
|
|
|
5
5
|
require 'csv'
|
|
6
6
|
require 'fileutils'
|
|
@@ -813,7 +813,6 @@ rm -rf #{@scratch_dir} || exit 1
|
|
|
813
813
|
end
|
|
814
814
|
def save_parameters_in_sushi_db
|
|
815
815
|
if @next_dataset_id and next_dataset = DataSet.find_by_id(@next_dataset_id)
|
|
816
|
-
@output_params['sushi_app'] = self.class
|
|
817
816
|
next_dataset.job_parameters = @output_params
|
|
818
817
|
next_dataset.save
|
|
819
818
|
end
|
data/lib/sushi_fabric/version.rb
CHANGED