coque 0.3.0 → 0.4.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/Gemfile.lock +1 -1
- data/README.md +9 -0
- data/lib/coque/redirectable.rb +4 -0
- data/lib/coque/result.rb +10 -3
- data/lib/coque/version.rb +1 -1
- 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: cfcfd929bb5819065fea5e0fc71f132ef3742120
|
4
|
+
data.tar.gz: 7d30643242b2f1fa7216de1d00b36bf7bc2400db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00b68d8a94a7342fc79208c015e0003c80095c9367c01d499934d3e1d16bbb96f9de0e4ff87c107da809282b1d12f251d10e50f2e322d80e71a8d7a49f5d2e6d
|
7
|
+
data.tar.gz: c2c8ac6202947d5d576f9882c91f958e87185f75aeb6afb54a66e55fd95aea35c5a3a9096f1f4422f7c600ccc4d64200dd37dc81df6febb8be388c9a915136df
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -147,3 +147,12 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
147
147
|
## Code of Conduct
|
148
148
|
|
149
149
|
Everyone interacting in the Coque project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[worace]/coque/blob/master/CODE_OF_CONDUCT.md).
|
150
|
+
|
151
|
+
## Building / Releasing
|
152
|
+
|
153
|
+
```
|
154
|
+
gem build coque.gemspec
|
155
|
+
gem push coque-<VERSION>.gem
|
156
|
+
git tag <VERSION>
|
157
|
+
git push origin <VERSION>
|
158
|
+
```
|
data/lib/coque/redirectable.rb
CHANGED
data/lib/coque/result.rb
CHANGED
@@ -8,8 +8,15 @@ class Coque::Result
|
|
8
8
|
end
|
9
9
|
|
10
10
|
def each(&block)
|
11
|
-
|
12
|
-
|
11
|
+
begin
|
12
|
+
@out.each_line do |line|
|
13
|
+
block.call(line.chomp)
|
14
|
+
end
|
15
|
+
rescue IOError
|
16
|
+
# If the command was redirected to an existing standard output stream,
|
17
|
+
# i.e. $stdout or $stderr, that output will be streamed as executed, so
|
18
|
+
# attempting to read from it here will fail.
|
19
|
+
# There may be a better way to handle this case, but for now this is working ok.
|
13
20
|
end
|
14
21
|
unless defined? @exit_code
|
15
22
|
wait
|
@@ -23,7 +30,7 @@ class Coque::Result
|
|
23
30
|
end
|
24
31
|
|
25
32
|
def success?
|
26
|
-
|
33
|
+
wait
|
27
34
|
exit_code == 0
|
28
35
|
end
|
29
36
|
end
|
data/lib/coque/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: coque
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Horace Williams
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|