busser-cucumber 0.1.0 → 0.2.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 +7 -0
- data/.travis.yml +1 -6
- data/CHANGELOG.md +10 -2
- data/Gemfile +2 -2
- data/LICENSE.txt +1 -1
- data/README.md +46 -16
- data/Rakefile +4 -4
- data/busser-cucumber.gemspec +10 -10
- data/features/plugin_install_command.feature +3 -1
- data/features/support/env.rb +1 -1
- data/features/test_command.feature +62 -9
- data/lib/busser/cucumber/runner.rb +3 -4
- data/lib/busser/cucumber/version.rb +3 -6
- data/lib/busser/runner_plugin/cucumber.rb +57 -18
- metadata +42 -46
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b172d782d8d9975e5b40490356f97babeb5cd3b0
|
4
|
+
data.tar.gz: eb1102f37f218ad74e8f0b048e29d9e527e02dee
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8653a46de5ed5802c2ec0aa3bb39ea8baf402d37ac17474bf8796d72d6ff9df529c59473316b1cd56f744f4e047dd806f6f6e66cbcc72822e5eddf4943c3ebaa
|
7
|
+
data.tar.gz: 2e39d7339aedae7f19c00faadd59db6429a5ccb281d6ae65eecd63148b2b88a7bd3232e7c5589dc70b6be18a748942baa40cdcf3cf20ef97b5a36d6843647440
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
-
|
1
|
+
Busser-Cucumber Gem CHANGELOG
|
2
|
+
=============================
|
2
3
|
|
3
|
-
|
4
|
+
v0.2.0 (2014-10-08)
|
5
|
+
-------------------
|
6
|
+
- Add support for included `Gemfile`s
|
7
|
+
- Add support for included `setup-recipe.rb` Chef recipes
|
8
|
+
|
9
|
+
v0.1.0 (2013-10-11)
|
10
|
+
-------------------
|
11
|
+
- Initial release
|
data/Gemfile
CHANGED
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,17 +1,29 @@
|
|
1
|
-
|
1
|
+
Busser-Cucumber
|
2
|
+
===============
|
3
|
+
|
4
|
+
[][fury]
|
5
|
+
[][travis]
|
6
|
+
[][codeclimate]
|
7
|
+
[][gemnasium]
|
8
|
+
|
9
|
+
[fury]: http://badge.fury.io/rb/busser-cucumber
|
10
|
+
[travis]: https://travis-ci.org/test-kitchen/busser-cucumber
|
11
|
+
[codeclimate]: https://codeclimate.com/github/test-kitchen/busser-cucumber
|
12
|
+
[gemnasium]: https://gemnasium.com/test-kitchen/busser-cucumber
|
2
13
|
|
3
|
-
# Busser::Cucumber
|
4
14
|
|
5
15
|
A Busser runner plugin for Cucumber.
|
6
16
|
|
7
|
-
|
17
|
+
Installation
|
18
|
+
------------
|
8
19
|
|
9
|
-
See the [Busser](https://github.com/
|
10
|
-
[Test Kitchen](https://github.com/
|
20
|
+
See the [Busser](https://github.com/test-kitchen/busser) and
|
21
|
+
[Test Kitchen](https://github.com/test-kitchen/test-kitchen) pages for more details.
|
11
22
|
|
12
|
-
|
23
|
+
Usage
|
24
|
+
-----
|
13
25
|
|
14
|
-
Place test files in [COOKBOOK]/test/integration/[SUITE]/cucumber
|
26
|
+
Place test files in `[COOKBOOK]/test/integration/[SUITE]/cucumber/`
|
15
27
|
|
16
28
|
cookbook
|
17
29
|
-- test
|
@@ -19,23 +31,41 @@ Place test files in [COOKBOOK]/test/integration/[SUITE]/cucumber/
|
|
19
31
|
-- default
|
20
32
|
-- cucumber
|
21
33
|
|
22
|
-
|
34
|
+
When Test Kitchen runs Busser, it will automatically install this plugin on
|
35
|
+
your server under test.
|
36
|
+
|
37
|
+
In some cases, your tests may require some additional setup. This plugin will
|
38
|
+
run any `Gemfile` or `setup-recipe.rb` Chef recipe included in the test file
|
39
|
+
directory. For example, if you need the `aruba` and `rest-client` gems for some
|
40
|
+
tests, place a file in `[COOKBOOK]/test/integration/[SUITE]/cucumber/Gemfile`:
|
41
|
+
|
42
|
+
source 'https://rubygems.org'
|
43
|
+
|
44
|
+
gem 'cucumber'
|
45
|
+
gem 'aruba'
|
46
|
+
gem 'rest_client'
|
47
|
+
|
48
|
+
Contributing
|
49
|
+
------------
|
23
50
|
|
24
51
|
1. Fork it
|
25
52
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
26
|
-
3.
|
27
|
-
4.
|
28
|
-
5.
|
53
|
+
3. Ensure any changes are tested and all tests pass (`rake`)
|
54
|
+
4. Commit your changes (`git commit -am 'Add some feature'`)
|
55
|
+
5. Push to the branch (`git push origin my-new-feature`)
|
56
|
+
6. Create new Pull Request
|
29
57
|
|
30
|
-
|
58
|
+
Authors
|
59
|
+
-------
|
31
60
|
|
32
61
|
- Author:: Jonathan Hartman (<j@p4nt5.com>)
|
33
62
|
|
34
63
|
Based mostly on work by [Adam Jacob](https://github.com/adamhjk) on
|
35
|
-
[busser-rspec](https://github.com/
|
36
|
-
done by [Daisuke Higuchi](https://github.com/cl-lab-k) on
|
37
|
-
[busser-serverspec](https://github.com/
|
64
|
+
[busser-rspec](https://github.com/test-kitchen/busser-rspec), in turn based on
|
65
|
+
work done by [Daisuke Higuchi](https://github.com/cl-lab-k) on
|
66
|
+
[busser-serverspec](https://github.com/test-kitchen/busser-serverspec).
|
38
67
|
|
39
|
-
|
68
|
+
License
|
69
|
+
-------
|
40
70
|
|
41
71
|
Apache 2.0 (see [LICENSE](license.txt)).
|
data/Rakefile
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
# Encoding: UTF-8
|
2
|
+
|
3
|
+
require 'bundler/setup'
|
2
4
|
require 'cane/rake_task'
|
3
5
|
require 'rubocop/rake_task'
|
4
6
|
require 'cucumber/rake/task'
|
@@ -11,10 +13,8 @@ task :loc do
|
|
11
13
|
Kernel.system 'countloc -r .'
|
12
14
|
end
|
13
15
|
|
14
|
-
|
16
|
+
RuboCop::RakeTask.new
|
15
17
|
|
16
18
|
Cucumber::Rake::Task.new
|
17
19
|
|
18
20
|
task 'default' => [:cane, :loc, :rubocop, :cucumber]
|
19
|
-
|
20
|
-
# vim: ai et ts=2 sts=2 sw=2 ft=ruby
|
data/busser-cucumber.gemspec
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
-
#
|
1
|
+
# Encoding: UTF-8
|
2
|
+
|
2
3
|
lib = File.expand_path('../lib', __FILE__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
5
|
require 'busser/cucumber/version'
|
@@ -7,26 +8,25 @@ Gem::Specification.new do |spec|
|
|
7
8
|
spec.name = 'busser-cucumber'
|
8
9
|
spec.version = Busser::Cucumber::VERSION
|
9
10
|
spec.authors = ['Jonathan Hartman']
|
10
|
-
spec.email =
|
11
|
-
spec.description =
|
11
|
+
spec.email = %w(j@p4nt5.com)
|
12
|
+
spec.description = 'A Busser plugin for Cucumber'
|
12
13
|
spec.summary = spec.description
|
13
|
-
spec.homepage = 'https://github.com/
|
14
|
+
spec.homepage = 'https://github.com/test-kitchen/busser-cucumber'
|
14
15
|
spec.license = 'Apache 2.0'
|
15
16
|
|
16
|
-
spec.files = `git ls-files`.split(
|
17
|
+
spec.files = `git ls-files -z`.split("\x0")
|
17
18
|
spec.executables = []
|
18
|
-
spec.test_files = spec.files.grep(
|
19
|
-
spec.require_paths =
|
19
|
+
spec.test_files = spec.files.grep(/^(test|spec|features)\//)
|
20
|
+
spec.require_paths = %w(lib)
|
20
21
|
|
21
22
|
spec.add_dependency 'busser'
|
22
23
|
|
23
|
-
spec.add_development_dependency 'bundler'
|
24
|
+
spec.add_development_dependency 'bundler'
|
24
25
|
spec.add_development_dependency 'rake'
|
25
26
|
spec.add_development_dependency 'cane'
|
26
27
|
spec.add_development_dependency 'rubocop'
|
27
28
|
spec.add_development_dependency 'countloc'
|
28
29
|
spec.add_development_dependency 'aruba'
|
29
30
|
spec.add_development_dependency 'cucumber'
|
31
|
+
spec.add_development_dependency 'rspec'
|
30
32
|
end
|
31
|
-
|
32
|
-
# vim: ai et ts=2 sts=2 sw=2 ft=ruby
|
@@ -5,7 +5,9 @@ Feature: Plugin install command
|
|
5
5
|
|
6
6
|
Background:
|
7
7
|
Given a test BUSSER_ROOT directory named "busser-cucumber-install"
|
8
|
+
And a sandboxed GEM_HOME directory named "busser-cucumber-gem-home"
|
8
9
|
|
9
10
|
Scenario: Running the postinstall generator
|
10
11
|
When I run `busser plugin install busser-cucumber --force-postinstall`
|
11
|
-
Then
|
12
|
+
Then a gem named "cucumber" is installed
|
13
|
+
And the exit status should be 0
|
data/features/support/env.rb
CHANGED
@@ -5,27 +5,80 @@ Feature: Test command
|
|
5
5
|
|
6
6
|
Background:
|
7
7
|
Given a test BUSSER_ROOT directory named "busser-cucumber-test"
|
8
|
+
And a sandboxed GEM_HOME directory named "busser-cucumber-gem-home"
|
9
|
+
And a suite directory named "cucumber"
|
8
10
|
When I successfully run `busser plugin install busser-cucumber --force-postinstall`
|
9
|
-
Given a suite directory named "cucumber"
|
10
11
|
|
11
12
|
Scenario: A passing test suite
|
12
|
-
Given a file in suite "cucumber" named "
|
13
|
+
Given a file in suite "cucumber" named "something.feature" with:
|
13
14
|
"""
|
14
|
-
|
15
|
+
Feature: Something
|
16
|
+
In order to do things
|
17
|
+
As a user
|
18
|
+
I want to do something
|
15
19
|
|
16
|
-
|
20
|
+
Scenario: Do something
|
21
|
+
Given 2
|
22
|
+
When I add 2
|
23
|
+
Then I get 4
|
24
|
+
"""
|
25
|
+
And a file in suite "cucumber" named "step_definitions/steps.rb" with:
|
26
|
+
"""
|
27
|
+
require 'rspec'
|
28
|
+
|
29
|
+
Given(/^([0-9]+)$/) do |num|
|
30
|
+
@num = num.to_i
|
31
|
+
end
|
32
|
+
|
33
|
+
When(/^I add ([0-9]+)$/) do |num|
|
34
|
+
@num += num.to_i
|
35
|
+
end
|
36
|
+
|
37
|
+
Then(/^I get ([0-9]+)$/) do |num|
|
38
|
+
expect(@num).to eq(num.to_i)
|
39
|
+
end
|
17
40
|
"""
|
18
41
|
When I run `busser test cucumber`
|
19
|
-
Then
|
42
|
+
Then the output should contain:
|
43
|
+
"""
|
44
|
+
1 scenario (1 passed)
|
45
|
+
3 steps (3 passed)
|
46
|
+
"""
|
20
47
|
And the exit status should be 0
|
21
48
|
|
22
49
|
Scenario: A failing test suite
|
23
|
-
Given a file in suite "cucumber" named "
|
50
|
+
Given a file in suite "cucumber" named "something.feature" with:
|
24
51
|
"""
|
25
|
-
|
52
|
+
Feature: Something
|
53
|
+
In order to do things
|
54
|
+
As a user
|
55
|
+
I want to do something
|
26
56
|
|
27
|
-
|
57
|
+
Scenario: Do something
|
58
|
+
Given 2
|
59
|
+
When I add 2
|
60
|
+
Then I get 5
|
61
|
+
"""
|
62
|
+
And a file in suite "cucumber" named "step_definitions/steps.rb" with:
|
63
|
+
"""
|
64
|
+
require 'rspec'
|
65
|
+
|
66
|
+
Given(/^([0-9]+)$/) do |num|
|
67
|
+
@num = num.to_i
|
68
|
+
end
|
69
|
+
|
70
|
+
When(/^I add ([0-9]+)$/) do |num|
|
71
|
+
@num += num.to_i
|
72
|
+
end
|
73
|
+
|
74
|
+
Then(/^I get ([0-9]+)$/) do |num|
|
75
|
+
expect(@num).to eq(num.to_i)
|
76
|
+
end
|
28
77
|
"""
|
29
78
|
When I run `busser test cucumber`
|
30
|
-
Then
|
79
|
+
Then the output should contain:
|
80
|
+
"""
|
81
|
+
1 scenario (1 failed)
|
82
|
+
3 steps (1 failed, 2 passed)
|
83
|
+
"""
|
31
84
|
And the exit status should not be 0
|
@@ -1,9 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
#
|
2
|
+
# Encoding: UTF-8
|
3
3
|
#
|
4
4
|
# Author:: Jonathan Hartman (<j@p4nt5.com>)
|
5
5
|
#
|
6
|
-
# Copyright (C) 2013, Jonathan Hartman
|
6
|
+
# Copyright (C) 2013-2014, Jonathan Hartman
|
7
7
|
#
|
8
8
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
9
9
|
# you may not use this file except in compliance with the License.
|
@@ -17,8 +17,7 @@
|
|
17
17
|
# See the License for the specific language governing permissions and
|
18
18
|
# limitations under the License.
|
19
19
|
|
20
|
+
require 'bundler/setup'
|
20
21
|
require 'cucumber/cli/main'
|
21
22
|
|
22
23
|
exit Cucumber::Cli::Main.new(ARGV.dup).execute!
|
23
|
-
|
24
|
-
# vim: ai et ts=2 sts=2 sw=2 ft=ruby
|
@@ -1,8 +1,8 @@
|
|
1
|
-
#
|
1
|
+
# Encoding: UTF-8
|
2
2
|
#
|
3
3
|
# Author:: Jonathan Hartman (<j@p4nt5.com>)
|
4
4
|
#
|
5
|
-
# Copyright (C) 2013, Jonathan Hartman
|
5
|
+
# Copyright (C) 2013-2014, Jonathan Hartman
|
6
6
|
#
|
7
7
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
8
8
|
# you may not use this file except in compliance with the License.
|
@@ -20,10 +20,7 @@ module Busser
|
|
20
20
|
# A Busser runner for Cucumber
|
21
21
|
#
|
22
22
|
# @author Jonathan Hartman <j@p4nt5.com>
|
23
|
-
#
|
24
23
|
module Cucumber
|
25
|
-
VERSION = '0.
|
24
|
+
VERSION = '0.2.0'
|
26
25
|
end
|
27
26
|
end
|
28
|
-
|
29
|
-
# vim: ai et ts=2 sts=2 sw=2 ft=ruby
|
@@ -1,9 +1,9 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
#
|
2
|
+
# Encoding: UTF-8
|
3
3
|
#
|
4
4
|
# Author:: Jonathan Hartman (<j@p4nt5.com>)
|
5
5
|
#
|
6
|
-
# Copyright (C) 2013, Jonathan Hartman
|
6
|
+
# Copyright (C) 2013-2014, Jonathan Hartman
|
7
7
|
#
|
8
8
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
9
9
|
# you may not use this file except in compliance with the License.
|
@@ -19,22 +19,61 @@
|
|
19
19
|
|
20
20
|
require 'busser/runner_plugin'
|
21
21
|
|
22
|
-
|
23
|
-
|
24
|
-
#
|
25
|
-
#
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
22
|
+
module Busser
|
23
|
+
module RunnerPlugin
|
24
|
+
# A Busser runner for Cucumber
|
25
|
+
#
|
26
|
+
# @author Jonathan Hartman <j@p4nt5.com>
|
27
|
+
#
|
28
|
+
class Cucumber < Busser::RunnerPlugin::Base
|
29
|
+
postinstall do
|
30
|
+
install_gem('cucumber')
|
31
|
+
install_gem('bundler')
|
32
|
+
end
|
33
|
+
|
34
|
+
def test
|
35
|
+
Dir.chdir(cuke_path) do
|
36
|
+
bundle_install
|
37
|
+
chef_apply
|
38
|
+
run_ruby_script!("#{runner} #{cuke_path}")
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
30
43
|
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
44
|
+
def chef_apply
|
45
|
+
return nil unless File.exist?(setup_file)
|
46
|
+
unless File.exist?('/opt/chef/bin/chef-apply')
|
47
|
+
fail("You have a chef setup file at #{setup_file}, but " \
|
48
|
+
'/opt/chef/bin/chef-apply does not if exist')
|
49
|
+
end
|
50
|
+
run("/opt/chef/bin/chef-apply #{setup_file}")
|
51
|
+
end
|
52
|
+
|
53
|
+
def bundle_install
|
54
|
+
return nil unless File.exist?(File.join(cuke_path, 'Gemfile'))
|
55
|
+
# Bundle install local completes quickly if the gems are already found
|
56
|
+
# locally. It fails if it needs to talk to the internet. The || below
|
57
|
+
# is the fallback to the Internet-enabled version. It's a speed
|
58
|
+
# optimization.
|
59
|
+
run("PATH=#{ENV['PATH']}:#{Gem.bindir}; " \
|
60
|
+
'bundle install --local || bundle install')
|
61
|
+
end
|
62
|
+
|
63
|
+
def runner
|
64
|
+
File.expand_path(File.join(File.dirname(__FILE__),
|
65
|
+
'..',
|
66
|
+
'cucumber',
|
67
|
+
'runner.rb'))
|
68
|
+
end
|
69
|
+
|
70
|
+
def setup_file
|
71
|
+
File.join(cuke_path, 'setup-recipe.rb')
|
72
|
+
end
|
73
|
+
|
74
|
+
def cuke_path
|
75
|
+
suite_path('cucumber').to_s
|
76
|
+
end
|
77
|
+
end
|
37
78
|
end
|
38
79
|
end
|
39
|
-
|
40
|
-
# vim: ai et ts=2 sts=2 sw=2 ft=ruby
|
metadata
CHANGED
@@ -1,142 +1,139 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: busser-cucumber
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.2.0
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Jonathan Hartman
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2014-10-08 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: busser
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ">="
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ">="
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '0'
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
28
|
name: bundler
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - ">="
|
36
32
|
- !ruby/object:Gem::Version
|
37
|
-
version: '
|
33
|
+
version: '0'
|
38
34
|
type: :development
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - ">="
|
44
39
|
- !ruby/object:Gem::Version
|
45
|
-
version: '
|
40
|
+
version: '0'
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
42
|
name: rake
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
|
-
- -
|
45
|
+
- - ">="
|
52
46
|
- !ruby/object:Gem::Version
|
53
47
|
version: '0'
|
54
48
|
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
|
-
- -
|
52
|
+
- - ">="
|
60
53
|
- !ruby/object:Gem::Version
|
61
54
|
version: '0'
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: cane
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
|
-
- -
|
59
|
+
- - ">="
|
68
60
|
- !ruby/object:Gem::Version
|
69
61
|
version: '0'
|
70
62
|
type: :development
|
71
63
|
prerelease: false
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
65
|
requirements:
|
75
|
-
- -
|
66
|
+
- - ">="
|
76
67
|
- !ruby/object:Gem::Version
|
77
68
|
version: '0'
|
78
69
|
- !ruby/object:Gem::Dependency
|
79
70
|
name: rubocop
|
80
71
|
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
72
|
requirements:
|
83
|
-
- -
|
73
|
+
- - ">="
|
84
74
|
- !ruby/object:Gem::Version
|
85
75
|
version: '0'
|
86
76
|
type: :development
|
87
77
|
prerelease: false
|
88
78
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
79
|
requirements:
|
91
|
-
- -
|
80
|
+
- - ">="
|
92
81
|
- !ruby/object:Gem::Version
|
93
82
|
version: '0'
|
94
83
|
- !ruby/object:Gem::Dependency
|
95
84
|
name: countloc
|
96
85
|
requirement: !ruby/object:Gem::Requirement
|
97
|
-
none: false
|
98
86
|
requirements:
|
99
|
-
- -
|
87
|
+
- - ">="
|
100
88
|
- !ruby/object:Gem::Version
|
101
89
|
version: '0'
|
102
90
|
type: :development
|
103
91
|
prerelease: false
|
104
92
|
version_requirements: !ruby/object:Gem::Requirement
|
105
|
-
none: false
|
106
93
|
requirements:
|
107
|
-
- -
|
94
|
+
- - ">="
|
108
95
|
- !ruby/object:Gem::Version
|
109
96
|
version: '0'
|
110
97
|
- !ruby/object:Gem::Dependency
|
111
98
|
name: aruba
|
112
99
|
requirement: !ruby/object:Gem::Requirement
|
113
|
-
none: false
|
114
100
|
requirements:
|
115
|
-
- -
|
101
|
+
- - ">="
|
116
102
|
- !ruby/object:Gem::Version
|
117
103
|
version: '0'
|
118
104
|
type: :development
|
119
105
|
prerelease: false
|
120
106
|
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
none: false
|
122
107
|
requirements:
|
123
|
-
- -
|
108
|
+
- - ">="
|
124
109
|
- !ruby/object:Gem::Version
|
125
110
|
version: '0'
|
126
111
|
- !ruby/object:Gem::Dependency
|
127
112
|
name: cucumber
|
128
113
|
requirement: !ruby/object:Gem::Requirement
|
129
|
-
none: false
|
130
114
|
requirements:
|
131
|
-
- -
|
115
|
+
- - ">="
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - ">="
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '0'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: rspec
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
132
130
|
- !ruby/object:Gem::Version
|
133
131
|
version: '0'
|
134
132
|
type: :development
|
135
133
|
prerelease: false
|
136
134
|
version_requirements: !ruby/object:Gem::Requirement
|
137
|
-
none: false
|
138
135
|
requirements:
|
139
|
-
- -
|
136
|
+
- - ">="
|
140
137
|
- !ruby/object:Gem::Version
|
141
138
|
version: '0'
|
142
139
|
description: A Busser plugin for Cucumber
|
@@ -146,8 +143,8 @@ executables: []
|
|
146
143
|
extensions: []
|
147
144
|
extra_rdoc_files: []
|
148
145
|
files:
|
149
|
-
- .gitignore
|
150
|
-
- .travis.yml
|
146
|
+
- ".gitignore"
|
147
|
+
- ".travis.yml"
|
151
148
|
- CHANGELOG.md
|
152
149
|
- Gemfile
|
153
150
|
- LICENSE.txt
|
@@ -161,30 +158,29 @@ files:
|
|
161
158
|
- lib/busser/cucumber/runner.rb
|
162
159
|
- lib/busser/cucumber/version.rb
|
163
160
|
- lib/busser/runner_plugin/cucumber.rb
|
164
|
-
homepage: https://github.com/
|
161
|
+
homepage: https://github.com/test-kitchen/busser-cucumber
|
165
162
|
licenses:
|
166
163
|
- Apache 2.0
|
164
|
+
metadata: {}
|
167
165
|
post_install_message:
|
168
166
|
rdoc_options: []
|
169
167
|
require_paths:
|
170
168
|
- lib
|
171
169
|
required_ruby_version: !ruby/object:Gem::Requirement
|
172
|
-
none: false
|
173
170
|
requirements:
|
174
|
-
- -
|
171
|
+
- - ">="
|
175
172
|
- !ruby/object:Gem::Version
|
176
173
|
version: '0'
|
177
174
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
178
|
-
none: false
|
179
175
|
requirements:
|
180
|
-
- -
|
176
|
+
- - ">="
|
181
177
|
- !ruby/object:Gem::Version
|
182
178
|
version: '0'
|
183
179
|
requirements: []
|
184
180
|
rubyforge_project:
|
185
|
-
rubygems_version:
|
181
|
+
rubygems_version: 2.4.1
|
186
182
|
signing_key:
|
187
|
-
specification_version:
|
183
|
+
specification_version: 4
|
188
184
|
summary: A Busser plugin for Cucumber
|
189
185
|
test_files:
|
190
186
|
- features/plugin_install_command.feature
|