scout-gear 10.11.8 → 10.11.9
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/workflow/task/inputs.rb +4 -3
- data/scout-gear.gemspec +2 -2
- 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: 2dbf40ee2c351707d1375ea2fac25b4596c36edc3204502cebaa7207d302d599
|
|
4
|
+
data.tar.gz: 54e9226388d3f788ac384d23ef80ece688a5ca9de9ad39773d2d0c37e2aff657
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 070be9cbfc4e1afc4ccd03912bf5b4bb928a988eea591e9f4f7c9ca24c152d052c435d67b4373adb17db33afc2858ba66dbf93b383cbecd206082691d75a012d
|
|
7
|
+
data.tar.gz: 823fa99f321ed7284b31ea8993502fae31c87932e87b59afd7468083d4cff4bb8c77e01766486d5e47dd3452a5c9c68c63f74f56dc133678b3c02c3cfbc918ea
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
10.11.
|
|
1
|
+
10.11.9
|
|
@@ -4,15 +4,16 @@ module Task
|
|
|
4
4
|
return nil if value.nil?
|
|
5
5
|
return value if IO === value || StringIO === value || Step === value
|
|
6
6
|
|
|
7
|
-
return value.to_i if type == :integer && ! value.nil?
|
|
8
|
-
return value.to_f if type == :float && ! value.nil?
|
|
9
|
-
|
|
10
7
|
if String === value && Path.is_filename?(value) && ! [:path, :file, :folder, :binary, :tsv].include?(type) && ! (options && (options[:noload] || options[:stream] || options[:nofile] || options[:asfile]))
|
|
11
8
|
if Open.exists?(value) && ! Open.directory?(value)
|
|
12
9
|
Persist.load(value, type)
|
|
13
10
|
else
|
|
14
11
|
Persist.deserialize(value, type)
|
|
15
12
|
end
|
|
13
|
+
elsif (String === value) && type == :integer
|
|
14
|
+
value.to_i
|
|
15
|
+
elsif (String === value) && type == :float
|
|
16
|
+
value.to_f
|
|
16
17
|
else
|
|
17
18
|
if m = type.to_s.match(/(.*)_array/)
|
|
18
19
|
if Array === value
|
data/scout-gear.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-gear 10.11.
|
|
5
|
+
# stub: scout-gear 10.11.9 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "scout-gear".freeze
|
|
9
|
-
s.version = "10.11.
|
|
9
|
+
s.version = "10.11.9".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]
|