aruba 0.7.1 → 0.7.2
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/aruba.gemspec +1 -1
- data/lib/aruba/processes/spawn_process.rb +2 -2
- data/spec/aruba/spawn_process_spec.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 261a82b8ce4e9658b41cffc798a0cbeb08b0a595
|
4
|
+
data.tar.gz: bb1412ae8307ecc15a45dbc10cf4222392c6f8cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ceec0c16d6951f2802d362e89c0350fe5562a26629cb644b3f32155bc581d85eda0f1f3f5593e9bb87a9aee56e6a86c175ecc0c2e3a4e803772be21c388de0d5
|
7
|
+
data.tar.gz: eca2abdaf75aa71d48429ab2f10bb451f098035d2b3bca4fc7395067f0c67de96233c3a42413f664d57becb1f12d1aae605b386acbe59af41bb2965b14c7a51f
|
data/aruba.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'aruba'
|
5
|
-
s.version = '0.7.
|
5
|
+
s.version = '0.7.2'
|
6
6
|
s.authors = ["Aslak Hellesøy", "David Chelimsky", "Mike Sassak", "Matt Wynne"]
|
7
7
|
s.description = 'CLI Steps for Cucumber, hand-crafted for you in Aruba'
|
8
8
|
s.summary = "aruba-#{s.version}"
|
@@ -40,8 +40,8 @@ RSpec.describe Aruba::Processes::SpawnProcess do
|
|
40
40
|
before(:each) { process.run! }
|
41
41
|
|
42
42
|
before :each do
|
43
|
-
allow(reader).to receive(:stderr)
|
44
|
-
expect(reader).to receive(:
|
43
|
+
allow(reader).to receive(:announce).with(:stderr, '')
|
44
|
+
expect(reader).to receive(:announce).with(:stdout, "yo\n")
|
45
45
|
end
|
46
46
|
|
47
47
|
context 'when stopped successfully' do
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aruba
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aslak Hellesøy
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2015-07-
|
14
|
+
date: 2015-07-04 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: cucumber
|
@@ -195,7 +195,7 @@ rubyforge_project:
|
|
195
195
|
rubygems_version: 2.4.5
|
196
196
|
signing_key:
|
197
197
|
specification_version: 4
|
198
|
-
summary: aruba-0.7.
|
198
|
+
summary: aruba-0.7.2
|
199
199
|
test_files:
|
200
200
|
- features/before_cmd_hooks.feature
|
201
201
|
- features/command_environment_variables.feature
|