aruba 0.5.4 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.travis.yml +15 -8
- data/CONTRIBUTING.md +60 -0
- data/Gemfile +5 -0
- data/History.md +6 -1
- data/README.md +3 -3
- data/Rakefile +4 -1
- data/aruba.gemspec +3 -2
- data/features/exit_statuses.feature +2 -2
- data/features/flushing.feature +2 -2
- data/features/step_definitions/aruba_dev_steps.rb +4 -4
- data/lib/aruba/cucumber.rb +6 -1
- data/spec/aruba/api_spec.rb +2 -2
- data/spec/aruba/hooks_spec.rb +1 -1
- data/spec/aruba/jruby_spec.rb +4 -1
- data/spec/spec_helper.rb +0 -1
- metadata +65 -31
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1c57ab964ee2b570039772b4c25a48e5c29ac7f3
|
4
|
+
data.tar.gz: 2a3ae133538910c61a2abb9ec980fbe5a5ae03d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3f4e0203537678fb2341a3d0f880805c98acf094317c6b5ac63bf7f1b5f5baba6d4c05eb51698eb1ff8a2b61972780ff22dc06b5466d8e7ec0d535e54a3af2f1
|
7
|
+
data.tar.gz: 1471f170b99a6569819d13b577f4178593a285c730e5cdf327e9d7d36bef3df96d6a07223962641e3158d7b454ca5b999b4aea42b4ed3569e6149bb2ded54593
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
@@ -1,12 +1,19 @@
|
|
1
1
|
language: ruby
|
2
|
-
rvm:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
2
|
+
rvm:
|
3
|
+
- 2.1.1
|
4
|
+
- 2.1.0
|
5
|
+
- 2.0.0
|
6
|
+
- 1.9.3
|
7
|
+
- jruby-19mode
|
8
|
+
- rbx
|
9
|
+
matrix:
|
10
|
+
allow_failures:
|
11
|
+
- rvm: rbx
|
8
12
|
notifications:
|
9
13
|
email:
|
10
|
-
|
14
|
+
- cukes-devs@googlegroups.com
|
11
15
|
irc:
|
12
|
-
|
16
|
+
- irc.freenode.org#cucumber
|
17
|
+
env:
|
18
|
+
global:
|
19
|
+
secure: l8uznA5K4K9mZ1krmP3lTMD8WcJ32qGxFOR3jubKHcOBSLB4xSzU2aIqjyJdO+rLzebkwamhJc8pGSIWOUDQYvFiX7splK+uEkbBJ5huAhXtLF4Qgl86bCWbEXYzN7rvn0DQfpJAovyFMNRMnfo70XhwqWzFsaYa7Z0YbqYsJE4=
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
## About to create a new Github Issue?
|
2
|
+
|
3
|
+
We appreciate that. But before you do, please learn our basic rules:
|
4
|
+
|
5
|
+
* This is not a support forum. If you have a question, please go to [The Cukes Google Group](http://groups.google.com/group/cukes).
|
6
|
+
* Do you have an idea for a new feature? Then don't expect it to be implemented unless you or someone else sends a [pull request](https://help.github.com/articles/using-pull-requests). You might be better to start a discussion on [the google group](http://groups.google.com/group/cukes).
|
7
|
+
* Reporting a bug? Please tell us:
|
8
|
+
* which version of Aruba you're using
|
9
|
+
* which version of Ruby you're using.
|
10
|
+
* How to reproduce it. Bugs with a failing test in a [pull request](https://help.github.com/articles/using-pull-requests) get fixed much quicker. Some bugs may never be fixed.
|
11
|
+
* Want to paste some code or output? Put \`\`\` on a line above and below your code/output. See [GFM](https://help.github.com/articles/github-flavored-markdown)'s *Fenced Code Blocks* for details.
|
12
|
+
* We love [pull requests](https://help.github.com/articles/using-pull-requests). But if you don't have a test to go with it we probably won't merge it.
|
13
|
+
|
14
|
+
# Contributing to Aruba
|
15
|
+
|
16
|
+
This document is a guide for those maintaining Aruba, and others who would like to submit patches.
|
17
|
+
|
18
|
+
## Note on Patches/Pull Requests
|
19
|
+
|
20
|
+
* Fork the project. Make a branch for your change.
|
21
|
+
* Make your feature addition or bug fix.
|
22
|
+
* Make sure your patch is well covered by tests. We don't accept changes that aren't tested.
|
23
|
+
* Please do not change the Rakefile, version, or history.
|
24
|
+
(if you want to have your own version, that is fine but
|
25
|
+
bump version in a commit by itself so we can ignore when we merge your change)
|
26
|
+
* Send us a pull request.
|
27
|
+
|
28
|
+
## Running tests
|
29
|
+
|
30
|
+
gem install bundler
|
31
|
+
bundle install
|
32
|
+
bundle exec rake
|
33
|
+
|
34
|
+
## Release Process
|
35
|
+
|
36
|
+
* Bump the version number in `aruba.gemspec`
|
37
|
+
* Make sure `History.md` is updated with the upcoming version number, and has entries for all fixes.
|
38
|
+
* No need to add a `History.md` header at this point - this should be done when a new change is made, later.
|
39
|
+
|
40
|
+
Now release it
|
41
|
+
|
42
|
+
bundle update
|
43
|
+
bundle exec rake
|
44
|
+
git commit -m "Release X.Y.Z"
|
45
|
+
rake release
|
46
|
+
|
47
|
+
## Gaining Release Karma
|
48
|
+
|
49
|
+
To become a release manager, create a pull request adding your name to the list below, and include your Rubygems email address in the ticket. One of the existing Release managers will then add you.
|
50
|
+
|
51
|
+
Current release managers:
|
52
|
+
* Jarl Friis
|
53
|
+
* Matt Wynne
|
54
|
+
* Aslak Hellesøy
|
55
|
+
* Tom Brand
|
56
|
+
|
57
|
+
To grant release karma, issue the following command:
|
58
|
+
|
59
|
+
gem owner cucumber --add <NEW OWNER RUBYGEMS EMAIL>
|
60
|
+
|
data/Gemfile
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
2
|
gemspec
|
3
3
|
|
4
|
+
platforms :rbx do
|
5
|
+
gem 'rubysl', '~> 2.0'
|
6
|
+
gem 'rubinius-developer_tools'
|
7
|
+
end
|
8
|
+
|
4
9
|
# Use source from sibling folders (if available) instead of gems
|
5
10
|
# %w[cucumber].each do |g|
|
6
11
|
# if File.directory?(File.dirname(__FILE__) + "/../#{g}")
|
data/History.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
|
-
## [master](https://github.com/cucumber/aruba/compare/v0.
|
1
|
+
## [master](https://github.com/cucumber/aruba/compare/v0.6.0...master)
|
2
|
+
|
3
|
+
## [v0.6.0](https://github.com/cucumber/aruba/compare/v0.5.4...v0.6.0)
|
4
|
+
* Dropped support for ruby 1.8
|
5
|
+
* Added support for ruby 2.1.0
|
6
|
+
* Added rspec 3.0.0 support
|
2
7
|
|
3
8
|
## [v0.5.4](https://github.com/cucumber/aruba/compare/v0.5.3...v0.5.4)
|
4
9
|
* Added support for piping in files (#154 maxmeyer, dg-vrnetze)
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
[![Build Status](https://
|
1
|
+
[![Build Status](https://travis-ci.org/cucumber/aruba.png)](http://travis-ci.org/cucumber/aruba) [![Code Climate](https://codeclimate.com/github/cucumber/aruba.png)](https://codeclimate.com/github/cucumber/aruba)
|
2
2
|
|
3
3
|
Aruba is Cucumber extension for testing command line applications written in any programming language. Features at a glance:
|
4
4
|
|
@@ -18,8 +18,8 @@ Then, `require` the library in one of your ruby files under `features/support` (
|
|
18
18
|
require 'aruba/cucumber'
|
19
19
|
```
|
20
20
|
|
21
|
-
You now have a bunch of step definitions that you can use in your features. Look at `lib/aruba/cucumber.rb`
|
22
|
-
to see them all. Look at `features/*.feature` for examples (which are also testing Aruba
|
21
|
+
You now have a bunch of step definitions that you can use in your features. Look at [`lib/aruba/cucumber.rb`](lib/aruba/cucumber.rb)
|
22
|
+
to see them all. Look at [`features/*.feature`](features/) for examples (which are also testing Aruba
|
23
23
|
itself).
|
24
24
|
|
25
25
|
## Configuration
|
data/Rakefile
CHANGED
@@ -7,6 +7,9 @@ Bundler::GemHelper.install_tasks
|
|
7
7
|
require 'cucumber/rake/task'
|
8
8
|
|
9
9
|
Cucumber::Rake::Task.new do |t|
|
10
|
+
t.cucumber_opts = ""
|
11
|
+
t.cucumber_opts = "--format Cucumber::Pro --out cucumber-pro.log" if ENV['CUCUMBER_PRO_TOKEN']
|
12
|
+
t.cucumber_opts << "--format pretty"
|
10
13
|
end
|
11
14
|
|
12
15
|
Cucumber::Rake::Task.new(:cucumber_wip) do |t|
|
@@ -17,7 +20,7 @@ require 'rspec/core/rake_task'
|
|
17
20
|
desc "Run RSpec"
|
18
21
|
RSpec::Core::RakeTask.new do |spec|
|
19
22
|
spec.pattern = 'spec/**/*_spec.rb'
|
20
|
-
spec.rspec_opts = ['--color', '--format
|
23
|
+
spec.rspec_opts = ['--color', '--format documentation']
|
21
24
|
end
|
22
25
|
|
23
26
|
desc "Run tests, both RSpec and Cucumber"
|
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.
|
5
|
+
s.version = '0.6.0'
|
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}"
|
@@ -16,8 +16,9 @@ Gem::Specification.new do |s|
|
|
16
16
|
s.add_development_dependency 'bcat', '>= 0.6.1'
|
17
17
|
s.add_development_dependency 'kramdown', '>= 0.14'
|
18
18
|
s.add_development_dependency 'rake', '>= 0.9.2'
|
19
|
-
s.add_development_dependency 'rspec', '>=
|
19
|
+
s.add_development_dependency 'rspec', '>= 3.0.0'
|
20
20
|
s.add_development_dependency 'fuubar', '>= 1.1.1'
|
21
|
+
s.add_development_dependency 'cucumber-pro', '~> 0.0'
|
21
22
|
|
22
23
|
s.rubygems_version = ">= 1.6.1"
|
23
24
|
s.files = `git ls-files`.split("\n")
|
@@ -17,11 +17,11 @@ Feature: exit statuses
|
|
17
17
|
When I successfully run `true`
|
18
18
|
|
19
19
|
Scenario: Successfully run something for a long time
|
20
|
-
Given
|
20
|
+
Given the default aruba timeout is 0 seconds
|
21
21
|
When I successfully run `sleep 1` for up to 2 seconds
|
22
22
|
|
23
23
|
Scenario: Unsuccessfully run something that takes too long
|
24
|
-
Given
|
24
|
+
Given the default aruba timeout is 0 seconds
|
25
25
|
When I do aruba I successfully run `sleep 1`
|
26
26
|
Then aruba should fail with "process still alive after 0 seconds"
|
27
27
|
|
data/features/flushing.feature
CHANGED
@@ -11,14 +11,14 @@ Feature: Flushing output
|
|
11
11
|
And the exit status should be 0
|
12
12
|
|
13
13
|
Scenario: Tons of output
|
14
|
-
Given
|
14
|
+
Given the default aruba timeout is 10 seconds
|
15
15
|
When I run `bash -c 'for ((c=0; c<65536; c = c+1)); do echo -n "a"; done'`
|
16
16
|
Then the output should contain "a"
|
17
17
|
And the output should be 65536 bytes long
|
18
18
|
And the exit status should be 0
|
19
19
|
|
20
20
|
Scenario: Tons of interactive output
|
21
|
-
Given
|
21
|
+
Given the default aruba timeout is 10 seconds
|
22
22
|
When I run `bash -c 'read size; for ((c=0; c<$size; c = c+1)); do echo -n "a"; done'` interactively
|
23
23
|
And I type "65536"
|
24
24
|
Then the output should contain "a"
|
@@ -1,7 +1,7 @@
|
|
1
1
|
When /^I do aruba (.*)$/ do |aruba_step|
|
2
2
|
begin
|
3
3
|
step(aruba_step)
|
4
|
-
rescue => e
|
4
|
+
rescue Exception => e
|
5
5
|
@aruba_exception = e
|
6
6
|
end
|
7
7
|
end
|
@@ -16,13 +16,13 @@ When /^I set env variable "(\w+)" to "([^"]*)"$/ do |var, value|
|
|
16
16
|
end
|
17
17
|
|
18
18
|
Then /^aruba should fail with "([^"]*)"$/ do |error_message|
|
19
|
-
@aruba_exception.message.
|
19
|
+
expect(@aruba_exception.message).to include(unescape(error_message))
|
20
20
|
end
|
21
21
|
|
22
22
|
Then /^the following step should fail with Spec::Expectations::ExpectationNotMetError:$/ do |multiline_step|
|
23
|
-
|
23
|
+
expect{steps multiline_step}.to raise_error(RSpec::Expectations::ExpectationNotMetError)
|
24
24
|
end
|
25
25
|
|
26
26
|
Then /^the output should be (\d+) bytes long$/ do |length|
|
27
|
-
all_output.length.
|
27
|
+
expect(all_output.length).to eq length.to_i
|
28
28
|
end
|
data/lib/aruba/cucumber.rb
CHANGED
@@ -4,7 +4,12 @@ require 'aruba/reporting'
|
|
4
4
|
|
5
5
|
World(Aruba::Api)
|
6
6
|
|
7
|
+
Given /the default aruba timeout is (\d+) seconds/ do |seconds|
|
8
|
+
@aruba_timeout_seconds = seconds.to_i
|
9
|
+
end
|
10
|
+
|
7
11
|
Given /The default aruba timeout is (\d+) seconds/ do |seconds|
|
12
|
+
warn(%{\e[35m The /^The default aruba timeout is (\d+) seconds/ step definition is deprecated. Please use the one with `the` and not `The` at the beginning.\e[0m})
|
8
13
|
@aruba_timeout_seconds = seconds.to_i
|
9
14
|
end
|
10
15
|
|
@@ -264,7 +269,7 @@ end
|
|
264
269
|
|
265
270
|
Then /^the (stderr|stdout) should not contain anything$/ do |stream_name|
|
266
271
|
stream = self.send("all_#{stream_name}")
|
267
|
-
stream.
|
272
|
+
expect(stream).to be_empty
|
268
273
|
end
|
269
274
|
|
270
275
|
Then /^the stdout should not contain "([^"]*)"$/ do |unexpected|
|
data/spec/aruba/api_spec.rb
CHANGED
@@ -38,13 +38,13 @@ describe Aruba::Api do
|
|
38
38
|
write_file( 'test', 'test test test' )
|
39
39
|
|
40
40
|
in_current_dir do
|
41
|
-
expect( File.exist? 'test' ).to
|
41
|
+
expect( File.exist? 'test' ).to be_truthy
|
42
42
|
end
|
43
43
|
|
44
44
|
clean_current_dir
|
45
45
|
|
46
46
|
in_current_dir do
|
47
|
-
expect( File.exist? 'test' ).to
|
47
|
+
expect( File.exist? 'test' ).to be_falsey
|
48
48
|
end
|
49
49
|
|
50
50
|
end
|
data/spec/aruba/hooks_spec.rb
CHANGED
@@ -5,7 +5,7 @@ describe Aruba::Hooks do
|
|
5
5
|
hook_was_run = false
|
6
6
|
subject.append :hook_label, lambda { hook_was_run = true }
|
7
7
|
subject.execute :hook_label, self
|
8
|
-
expect(hook_was_run).to
|
8
|
+
expect(hook_was_run).to be_truthy
|
9
9
|
end
|
10
10
|
|
11
11
|
it 'executes a stored hook that takes multiple arguments' do
|
data/spec/aruba/jruby_spec.rb
CHANGED
@@ -24,7 +24,10 @@ describe "Aruba JRuby Startup Helper" do
|
|
24
24
|
|
25
25
|
it 'configuration loads for java and merges existing environment variables' do
|
26
26
|
with_constants :ENV => @fake_env, :RUBY_PLATFORM => 'java' do
|
27
|
-
|
27
|
+
rb_config = double('rb_config')
|
28
|
+
allow(rb_config).to receive(:[]).and_return('solaris')
|
29
|
+
stub_const 'RbConfig::CONFIG', rb_config
|
30
|
+
|
28
31
|
load 'aruba/jruby.rb'
|
29
32
|
Aruba.config.hooks.execute :before_cmd, self
|
30
33
|
expect(ENV['JRUBY_OPTS']).to eq "-X-C --1.9"
|
data/spec/spec_helper.rb
CHANGED
@@ -38,7 +38,6 @@ end unless Kernel.respond_to? :silence_warnings
|
|
38
38
|
RSpec.configure do |config|
|
39
39
|
config.filter_run :focus => true
|
40
40
|
config.run_all_when_everything_filtered = true
|
41
|
-
config.treat_symbols_as_metadata_keys_with_true_values = true
|
42
41
|
config.include(ManipulatesConstants)
|
43
42
|
config.expect_with :rspec do |c|
|
44
43
|
c.syntax = :expect
|
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.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aslak Hellesøy
|
@@ -11,131 +11,146 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2014-
|
14
|
+
date: 2014-06-30 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: cucumber
|
18
18
|
requirement: !ruby/object:Gem::Requirement
|
19
19
|
requirements:
|
20
|
-
- -
|
20
|
+
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 1.1.1
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 1.1.1
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: childprocess
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
33
33
|
requirements:
|
34
|
-
- -
|
34
|
+
- - ">="
|
35
35
|
- !ruby/object:Gem::Version
|
36
36
|
version: 0.3.6
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
|
-
- -
|
41
|
+
- - ">="
|
42
42
|
- !ruby/object:Gem::Version
|
43
43
|
version: 0.3.6
|
44
44
|
- !ruby/object:Gem::Dependency
|
45
45
|
name: rspec-expectations
|
46
46
|
requirement: !ruby/object:Gem::Requirement
|
47
47
|
requirements:
|
48
|
-
- -
|
48
|
+
- - ">="
|
49
49
|
- !ruby/object:Gem::Version
|
50
50
|
version: 2.7.0
|
51
51
|
type: :runtime
|
52
52
|
prerelease: false
|
53
53
|
version_requirements: !ruby/object:Gem::Requirement
|
54
54
|
requirements:
|
55
|
-
- -
|
55
|
+
- - ">="
|
56
56
|
- !ruby/object:Gem::Version
|
57
57
|
version: 2.7.0
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: bcat
|
60
60
|
requirement: !ruby/object:Gem::Requirement
|
61
61
|
requirements:
|
62
|
-
- -
|
62
|
+
- - ">="
|
63
63
|
- !ruby/object:Gem::Version
|
64
64
|
version: 0.6.1
|
65
65
|
type: :development
|
66
66
|
prerelease: false
|
67
67
|
version_requirements: !ruby/object:Gem::Requirement
|
68
68
|
requirements:
|
69
|
-
- -
|
69
|
+
- - ">="
|
70
70
|
- !ruby/object:Gem::Version
|
71
71
|
version: 0.6.1
|
72
72
|
- !ruby/object:Gem::Dependency
|
73
73
|
name: kramdown
|
74
74
|
requirement: !ruby/object:Gem::Requirement
|
75
75
|
requirements:
|
76
|
-
- -
|
76
|
+
- - ">="
|
77
77
|
- !ruby/object:Gem::Version
|
78
78
|
version: '0.14'
|
79
79
|
type: :development
|
80
80
|
prerelease: false
|
81
81
|
version_requirements: !ruby/object:Gem::Requirement
|
82
82
|
requirements:
|
83
|
-
- -
|
83
|
+
- - ">="
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: '0.14'
|
86
86
|
- !ruby/object:Gem::Dependency
|
87
87
|
name: rake
|
88
88
|
requirement: !ruby/object:Gem::Requirement
|
89
89
|
requirements:
|
90
|
-
- -
|
90
|
+
- - ">="
|
91
91
|
- !ruby/object:Gem::Version
|
92
92
|
version: 0.9.2
|
93
93
|
type: :development
|
94
94
|
prerelease: false
|
95
95
|
version_requirements: !ruby/object:Gem::Requirement
|
96
96
|
requirements:
|
97
|
-
- -
|
97
|
+
- - ">="
|
98
98
|
- !ruby/object:Gem::Version
|
99
99
|
version: 0.9.2
|
100
100
|
- !ruby/object:Gem::Dependency
|
101
101
|
name: rspec
|
102
102
|
requirement: !ruby/object:Gem::Requirement
|
103
103
|
requirements:
|
104
|
-
- -
|
104
|
+
- - ">="
|
105
105
|
- !ruby/object:Gem::Version
|
106
|
-
version:
|
106
|
+
version: 3.0.0
|
107
107
|
type: :development
|
108
108
|
prerelease: false
|
109
109
|
version_requirements: !ruby/object:Gem::Requirement
|
110
110
|
requirements:
|
111
|
-
- -
|
111
|
+
- - ">="
|
112
112
|
- !ruby/object:Gem::Version
|
113
|
-
version:
|
113
|
+
version: 3.0.0
|
114
114
|
- !ruby/object:Gem::Dependency
|
115
115
|
name: fuubar
|
116
116
|
requirement: !ruby/object:Gem::Requirement
|
117
117
|
requirements:
|
118
|
-
- -
|
118
|
+
- - ">="
|
119
119
|
- !ruby/object:Gem::Version
|
120
120
|
version: 1.1.1
|
121
121
|
type: :development
|
122
122
|
prerelease: false
|
123
123
|
version_requirements: !ruby/object:Gem::Requirement
|
124
124
|
requirements:
|
125
|
-
- -
|
125
|
+
- - ">="
|
126
126
|
- !ruby/object:Gem::Version
|
127
127
|
version: 1.1.1
|
128
|
+
- !ruby/object:Gem::Dependency
|
129
|
+
name: cucumber-pro
|
130
|
+
requirement: !ruby/object:Gem::Requirement
|
131
|
+
requirements:
|
132
|
+
- - "~>"
|
133
|
+
- !ruby/object:Gem::Version
|
134
|
+
version: '0.0'
|
135
|
+
type: :development
|
136
|
+
prerelease: false
|
137
|
+
version_requirements: !ruby/object:Gem::Requirement
|
138
|
+
requirements:
|
139
|
+
- - "~>"
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '0.0'
|
128
142
|
description: CLI Steps for Cucumber, hand-crafted for you in Aruba
|
129
143
|
email: cukes@googlegroups.com
|
130
144
|
executables: []
|
131
145
|
extensions: []
|
132
146
|
extra_rdoc_files: []
|
133
147
|
files:
|
134
|
-
- .document
|
135
|
-
- .gitignore
|
136
|
-
- .rspec
|
137
|
-
- .rvmrc
|
138
|
-
- .travis.yml
|
148
|
+
- ".document"
|
149
|
+
- ".gitignore"
|
150
|
+
- ".rspec"
|
151
|
+
- ".rvmrc"
|
152
|
+
- ".travis.yml"
|
153
|
+
- CONTRIBUTING.md
|
139
154
|
- Gemfile
|
140
155
|
- History.md
|
141
156
|
- LICENSE
|
@@ -193,23 +208,42 @@ licenses:
|
|
193
208
|
metadata: {}
|
194
209
|
post_install_message:
|
195
210
|
rdoc_options:
|
196
|
-
- --charset=UTF-8
|
211
|
+
- "--charset=UTF-8"
|
197
212
|
require_paths:
|
198
213
|
- lib
|
199
214
|
required_ruby_version: !ruby/object:Gem::Requirement
|
200
215
|
requirements:
|
201
|
-
- -
|
216
|
+
- - ">="
|
202
217
|
- !ruby/object:Gem::Version
|
203
218
|
version: '0'
|
204
219
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
205
220
|
requirements:
|
206
|
-
- -
|
221
|
+
- - ">="
|
207
222
|
- !ruby/object:Gem::Version
|
208
223
|
version: '0'
|
209
224
|
requirements: []
|
210
225
|
rubyforge_project:
|
211
|
-
rubygems_version: 2.
|
226
|
+
rubygems_version: 2.2.2
|
212
227
|
signing_key:
|
213
228
|
specification_version: 4
|
214
|
-
summary: aruba-0.
|
215
|
-
test_files:
|
229
|
+
summary: aruba-0.6.0
|
230
|
+
test_files:
|
231
|
+
- features/before_cmd_hooks.feature
|
232
|
+
- features/command_environment_variables.feature
|
233
|
+
- features/custom_ruby_process.feature
|
234
|
+
- features/exit_statuses.feature
|
235
|
+
- features/file_system_commands.feature
|
236
|
+
- features/flushing.feature
|
237
|
+
- features/interactive.feature
|
238
|
+
- features/no_clobber.feature
|
239
|
+
- features/output.feature
|
240
|
+
- features/step_definitions/aruba_dev_steps.rb
|
241
|
+
- features/support/custom_main.rb
|
242
|
+
- features/support/env.rb
|
243
|
+
- features/support/jruby.rb
|
244
|
+
- features/utf-8.feature
|
245
|
+
- spec/aruba/api_spec.rb
|
246
|
+
- spec/aruba/hooks_spec.rb
|
247
|
+
- spec/aruba/jruby_spec.rb
|
248
|
+
- spec/aruba/spawn_process_spec.rb
|
249
|
+
- spec/spec_helper.rb
|