scout-rig 0.2.0 → 0.2.1
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/VERSION +1 -1
- data/lib/scout/python/run.rb +8 -2
- data/lib/scout/workflow/python/task.rb +1 -0
- data/scout-rig.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d34d9beba93482d6fdac2fae8ccf7c2a7dec45c36ed2a4f108887d9d32b98115
|
|
4
|
+
data.tar.gz: 6e47a0cf50320930b9781ece3496b17f9fcd62ad5f21b92ced385902392d5b48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 499c0b0c768e4ab955175244fb7ec5066503232d05bd2faf978aa5d4e8bcb364afe83b05b4e7d27f65e8c6ca3bdc225b96568d2d576992415832fee68f636b86
|
|
7
|
+
data.tar.gz: a30bcba9ce89f5f1622b89ffc0bd7a01971f4dbbba7c546321883e5d2ff74148a1529ab8dd044381b22f4ff98e64dce7fe3053f92a6e45f3f9a78dcd0be55b88
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.1
|
data/lib/scout/python/run.rb
CHANGED
|
@@ -78,11 +78,17 @@ module ScoutPython
|
|
|
78
78
|
if Hash === imports
|
|
79
79
|
pyimport mod, **imports
|
|
80
80
|
elsif imports.nil?
|
|
81
|
-
|
|
81
|
+
if Array === mod
|
|
82
|
+
mod.each do |m|
|
|
83
|
+
pyimport m
|
|
84
|
+
end
|
|
85
|
+
else
|
|
86
|
+
pyimport mod
|
|
87
|
+
end
|
|
82
88
|
else
|
|
83
89
|
pyfrom mod, :import => imports
|
|
84
90
|
end
|
|
85
|
-
end
|
|
91
|
+
end
|
|
86
92
|
|
|
87
93
|
module_eval(&block)
|
|
88
94
|
end
|
data/scout-rig.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: scout-rig 0.2.
|
|
5
|
+
# stub: scout-rig 0.2.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "scout-rig".freeze
|
|
9
|
-
s.version = "0.2.
|
|
9
|
+
s.version = "0.2.1".freeze
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
@@ -51,7 +51,7 @@ Gem::Specification.new do |s|
|
|
|
51
51
|
]
|
|
52
52
|
s.homepage = "http://github.com/mikisvaz/scout-rig".freeze
|
|
53
53
|
s.licenses = ["MIT".freeze]
|
|
54
|
-
s.rubygems_version = "3.7.
|
|
54
|
+
s.rubygems_version = "3.7.2".freeze
|
|
55
55
|
s.summary = "Scouts rigging things together".freeze
|
|
56
56
|
|
|
57
57
|
s.specification_version = 4
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scout-rig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Miguel Vazquez
|
|
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
92
92
|
- !ruby/object:Gem::Version
|
|
93
93
|
version: '0'
|
|
94
94
|
requirements: []
|
|
95
|
-
rubygems_version: 3.7.
|
|
95
|
+
rubygems_version: 3.7.2
|
|
96
96
|
specification_version: 4
|
|
97
97
|
summary: Scouts rigging things together
|
|
98
98
|
test_files: []
|