pipa 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/lib/pipa.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3dd1e6933d281f0b640bcba942e153ed3488b6f8
|
4
|
+
data.tar.gz: a653cb4034ba084d768e966b1e5cc5a00c38dc63
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b3e50295ee8ac297e7a57a9b70b2685e6b90a97f73a418bc0980ff39052bcaf92a469bf0849ccda1f6198b50d7e4aa1ad6e03b54f64ae895950cf2c63c66528
|
7
|
+
data.tar.gz: 28080cb95351b6224a8c8664646a4420ccb638dde3eb61e67ded2b48f96dbe8ccc4dda87dbd81e88af0922fe3a9d98140135840a2ec2f6c5f9dfa522be2605d6
|
data/lib/pipa.rb
CHANGED
@@ -87,7 +87,7 @@ class Pipa
|
|
87
87
|
exit_status = wait_thr.value
|
88
88
|
if exit_status.success?
|
89
89
|
ret_fd = IO.open(3, 'w')
|
90
|
-
ret_fd.write(ret.to_json);
|
90
|
+
ret_fd.write(ret.force_encoding('UTF-8').to_json);
|
91
91
|
ret_fd.close
|
92
92
|
end
|
93
93
|
exit(exit_status.exitstatus)
|
@@ -121,7 +121,7 @@ class Pipa
|
|
121
121
|
require 'json'
|
122
122
|
puts ___ret = HTTPClient.get_content("#{@stages[stage][mode]}")
|
123
123
|
___ret_fd = IO.open(3, 'w')
|
124
|
-
___ret_fd.write(___ret.to_json);
|
124
|
+
___ret_fd.write(___ret.force_encoding('UTF-8').to_json);
|
125
125
|
___ret_fd.close
|
126
126
|
)]
|
127
127
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pipa
|
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 Cantón Cortés
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.6.12
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: Pipelines, easy
|