cucumber_priority 0.1.2 → 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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 242720f5b4e64c6f0ac18ed2dfb6088352b2da43
4
+ data.tar.gz: e34150747914d626ab20c323728331302b0fdcf2
5
+ SHA512:
6
+ metadata.gz: 207cedc8544e1584f1cb38daea7d2355728990918aa9296e41d90214e36d03a8df7c933cb9862e4bcb8f42d23989ae3a5aa25d559f664c77235a0216288376c4
7
+ data.tar.gz: a1b91d31ccb4339e7cb785e200aa3fb60bfd21fc8c6a74b0d68d35f0b8b060f6847823e1b05584d1fa1545817a8d7e30846933f0ff6cbe30b76c5793c63c35dd
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 1.9.3
1
+ 2.3.3
data/.travis.yml ADDED
@@ -0,0 +1,36 @@
1
+ rvm:
2
+ - 1.8.7
3
+ - 2.1.10
4
+ - 2.3.3
5
+
6
+ gemfile:
7
+ - gemfiles/Gemfile.cucumber-1.3
8
+ - gemfiles/Gemfile.cucumber-2.4
9
+ - gemfiles/Gemfile.cucumber-3.0
10
+
11
+ matrix:
12
+ exclude:
13
+ - gemfile: gemfiles/Gemfile.cucumber-3.0
14
+ rvm: 2.1.10
15
+ - gemfile: gemfiles/Gemfile.cucumber-3.0
16
+ rvm: 1.8.7
17
+ - gemfile: gemfiles/Gemfile.cucumber-2.4
18
+ rvm: 1.8.7
19
+ - gemfile: gemfiles/Gemfile.cucumber-1.3
20
+ rvm: 2.3.3 # doesn't work with old RSpec
21
+
22
+ install:
23
+ # Old Travis CI bundler explodes when lockfile version doesn't match recently bumped version
24
+ - gem install bundler --version='=1.12.5'
25
+ # This is the default Travis CI install step
26
+ - bundle install --jobs=3 --retry=3 --deployment --path=${BUNDLE_PATH:-vendor/bundle}
27
+
28
+ script: bundle exec rake current_rspec
29
+
30
+ sudo: false
31
+
32
+ cache: bundler
33
+
34
+ notifications:
35
+ email:
36
+ - fail@makandra.de
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 Henning Koch
1
+ Copyright (c) 2015-2016 Henning Koch
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
- cucumber_priority - overridable step definitions for Cucumber
2
- =============================================================
1
+ cucumber_priority [![Build Status](https://travis-ci.org/makandra/cucumber_priority.svg?branch=master)](https://travis-ci.org/makandra/cucumber_priority)
2
+ =================
3
+
4
+ Overridable step definitions for Cucumber
5
+ -----------------------------------------
3
6
 
4
7
  [Cucumber](https://github.com/cucumber/cucumber-ruby) raises an error if more than one step definitions match a step.
5
8
 
@@ -48,7 +51,7 @@ A non-overridable step will always win over an overridable step regardless of it
48
51
  Supported Cucumber versions
49
52
  ----------------------------
50
53
 
51
- cucumber_priority is tested against Cucumber 1.2, 1.3 and 2.1.
54
+ cucumber_priority is tested against Cucumber 1.3, 2.4 and 3.0.
52
55
 
53
56
 
54
57
  Installation
@@ -64,10 +67,18 @@ Now run `bundle install` and restart your server.
64
67
  Development
65
68
  -----------
66
69
 
67
- - We run tests against several Cucumber versions.
68
- - You can bundle all versions with `rake all:install`.
69
- - You can run specs against all versions with `rake all:spec`.
70
- See `spec/support/database.sample.yml` for an example.
70
+ There are tests in `spec`. We only accept PRs with tests. To run tests:
71
+
72
+ - Install Ruby 2.3.3
73
+ - Install development dependencies using `bundle install`
74
+ - Run tests using `bundle exec rspec`
75
+
76
+ We recommend to test large changes against multiple versions of Ruby and multiple dependency sets. Supported combinations are configured in `.travis.yml`. We provide some rake tasks to help with this:
77
+
78
+ - Install development dependencies using `bundle matrix:install`
79
+ - Run tests using `bundle matrix:spec`
80
+
81
+ Note that we have configured Travis CI to automatically run tests in all supported Ruby versions and dependency sets after each push. We will only merge pull requests after a green Travis build.
71
82
 
72
83
  If you would like to contribute:
73
84
 
data/Rakefile CHANGED
@@ -1,43 +1,10 @@
1
1
  require 'rake'
2
2
  require 'bundler/gem_tasks'
3
3
 
4
- desc 'Default: Run all specs.'
5
- task :default => 'all:spec'
6
-
7
- namespace :all do
8
-
9
- desc "Run specs on all versions"
10
- task :spec do
11
- success = true
12
- for_each_gemfile do |gemfile|
13
- rspec_binary = gemfile.include?('cucumber-1') ? 'spec' : 'rspec'
14
- success &= system("bundle exec #{rspec_binary} spec")
15
- end
16
- fail "Tests failed" unless success
17
- end
18
-
19
- desc "Bundle all versions"
20
- task :install do
21
- for_each_gemfile do |gemfile|
22
- system('bundle install')
23
- end
24
- end
25
-
26
- desc "Update all versions"
27
- task :update do
28
- for_each_gemfile do |gemfile|
29
- system('bundle update')
30
- end
31
- end
32
-
4
+ begin
5
+ require 'gemika/tasks'
6
+ rescue LoadError
7
+ puts 'Run `gem install gemika` for additional tasks'
33
8
  end
34
9
 
35
- def for_each_gemfile
36
- version = ENV['VERSION'] || '*'
37
- Dir["gemfiles/Gemfile.#{version}"].sort.each do |gemfile|
38
- next if gemfile =~ /.lock/
39
- puts '', "\033[44m#{gemfile}\033[0m", ''
40
- ENV['BUNDLE_GEMFILE'] = gemfile
41
- yield(gemfile)
42
- end
43
- end
10
+ task :default => 'matrix:spec'
@@ -18,6 +18,5 @@ Gem::Specification.new do |s|
18
18
  s.require_paths = ["lib"]
19
19
 
20
20
  s.add_dependency('cucumber')
21
- s.add_dependency('activesupport')
22
21
 
23
22
  end
@@ -1,5 +1,13 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'cucumber', '~> 1.3.0'
3
+ # Runtime dependencies
4
+ gem 'cucumber', '~> 1.3.20'
4
5
  gem 'activesupport', '~> 2.3.0'
6
+
7
+ # Development dependencies
5
8
  gem 'rspec', '~> 1.0'
9
+ gem 'gemika'
10
+ gem 'rake', '=10.0.4'
11
+
12
+ # Gem under test
13
+ gem 'cucumber_priority', :path => '..'
@@ -1,3 +1,9 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ cucumber_priority (0.1.2)
5
+ cucumber
6
+
1
7
  GEM
2
8
  remote: https://rubygems.org/
3
9
  specs:
@@ -10,10 +16,12 @@ GEM
10
16
  multi_json (>= 1.7.5, < 2.0)
11
17
  multi_test (>= 0.1.2)
12
18
  diff-lcs (1.2.5)
19
+ gemika (0.3.2)
13
20
  gherkin (2.12.2)
14
21
  multi_json (~> 1.3)
15
22
  multi_json (1.11.2)
16
23
  multi_test (0.1.2)
24
+ rake (10.0.4)
17
25
  rspec (1.3.2)
18
26
 
19
27
  PLATFORMS
@@ -21,8 +29,11 @@ PLATFORMS
21
29
 
22
30
  DEPENDENCIES
23
31
  activesupport (~> 2.3.0)
24
- cucumber (~> 1.3.0)
32
+ cucumber (~> 1.3.20)
33
+ cucumber_priority!
34
+ gemika
35
+ rake (= 10.0.4)
25
36
  rspec (~> 1.0)
26
37
 
27
38
  BUNDLED WITH
28
- 1.10.6
39
+ 1.13.7
@@ -0,0 +1,13 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'cucumber', '~> 2.4.0'
5
+ gem 'activesupport', '~> 4.2.0'
6
+
7
+ # Development dependencies
8
+ gem 'rspec', '~> 3.0'
9
+ gem 'gemika'
10
+ gem 'rake'
11
+
12
+ # Gem under test
13
+ gem 'cucumber_priority', :path => '..'
@@ -1,3 +1,9 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ cucumber_priority (0.1.2)
5
+ cucumber
6
+
1
7
  GEM
2
8
  remote: https://rubygems.org/
3
9
  specs:
@@ -8,24 +14,26 @@ GEM
8
14
  thread_safe (~> 0.3, >= 0.3.4)
9
15
  tzinfo (~> 1.1)
10
16
  builder (3.2.2)
11
- cucumber (2.3.2)
17
+ cucumber (2.4.0)
12
18
  builder (>= 2.1.2)
13
- cucumber-core (~> 1.4.0)
19
+ cucumber-core (~> 1.5.0)
14
20
  cucumber-wire (~> 0.0.1)
15
21
  diff-lcs (>= 1.1.3)
16
- gherkin (~> 3.2.0)
22
+ gherkin (~> 4.0)
17
23
  multi_json (>= 1.7.5, < 2.0)
18
24
  multi_test (>= 0.1.2)
19
- cucumber-core (1.4.0)
20
- gherkin (~> 3.2.0)
25
+ cucumber-core (1.5.0)
26
+ gherkin (~> 4.0)
21
27
  cucumber-wire (0.0.1)
22
28
  diff-lcs (1.2.5)
23
- gherkin (3.2.0)
29
+ gemika (0.3.2)
30
+ gherkin (4.0.0)
24
31
  i18n (0.7.0)
25
32
  json (1.8.3)
26
33
  minitest (5.8.4)
27
- multi_json (1.11.2)
34
+ multi_json (1.12.1)
28
35
  multi_test (0.1.2)
36
+ rake (10.1.0)
29
37
  rspec (3.4.0)
30
38
  rspec-core (~> 3.4.0)
31
39
  rspec-expectations (~> 3.4.0)
@@ -48,8 +56,11 @@ PLATFORMS
48
56
 
49
57
  DEPENDENCIES
50
58
  activesupport (~> 4.2.0)
51
- cucumber (~> 2.3.0)
59
+ cucumber (~> 2.4.0)
60
+ cucumber_priority!
61
+ gemika
62
+ rake
52
63
  rspec (~> 3.0)
53
64
 
54
65
  BUNDLED WITH
55
- 1.11.2
66
+ 1.13.7
@@ -0,0 +1,13 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Runtime dependencies
4
+ gem 'cucumber', '~> 3.0.0.pre.1'
5
+ gem 'activesupport', '~> 5.0.0'
6
+
7
+ # Development dependencies
8
+ gem 'rspec', '~> 3.0'
9
+ gem 'gemika'
10
+ gem 'rake'
11
+
12
+ # Gem under test
13
+ gem 'cucumber_priority'
@@ -0,0 +1,64 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ activesupport (5.0.1)
5
+ concurrent-ruby (~> 1.0, >= 1.0.2)
6
+ i18n (~> 0.7)
7
+ minitest (~> 5.1)
8
+ tzinfo (~> 1.1)
9
+ backports (3.6.8)
10
+ builder (3.2.2)
11
+ concurrent-ruby (1.0.3)
12
+ cucumber (3.0.0.pre.1)
13
+ builder (>= 2.1.2)
14
+ cucumber-core (~> 2.0)
15
+ cucumber-wire (~> 0.0.1)
16
+ diff-lcs (>= 1.1.3)
17
+ gherkin (~> 4.0)
18
+ multi_json (>= 1.7.5, < 2.0)
19
+ multi_test (>= 0.1.2)
20
+ cucumber-core (2.0.0)
21
+ backports (~> 3.6)
22
+ gherkin (~> 4.0)
23
+ cucumber-wire (0.0.1)
24
+ cucumber_priority (0.1.2)
25
+ activesupport
26
+ cucumber
27
+ diff-lcs (1.2.5)
28
+ gemika (0.3.2)
29
+ gherkin (4.0.0)
30
+ i18n (0.7.0)
31
+ minitest (5.10.1)
32
+ multi_json (1.12.1)
33
+ multi_test (0.1.2)
34
+ rake (10.4.2)
35
+ rspec (3.5.0)
36
+ rspec-core (~> 3.5.0)
37
+ rspec-expectations (~> 3.5.0)
38
+ rspec-mocks (~> 3.5.0)
39
+ rspec-core (3.5.4)
40
+ rspec-support (~> 3.5.0)
41
+ rspec-expectations (3.5.0)
42
+ diff-lcs (>= 1.2.0, < 2.0)
43
+ rspec-support (~> 3.5.0)
44
+ rspec-mocks (3.5.0)
45
+ diff-lcs (>= 1.2.0, < 2.0)
46
+ rspec-support (~> 3.5.0)
47
+ rspec-support (3.5.0)
48
+ thread_safe (0.3.5)
49
+ tzinfo (1.2.2)
50
+ thread_safe (~> 0.1)
51
+
52
+ PLATFORMS
53
+ ruby
54
+
55
+ DEPENDENCIES
56
+ activesupport (~> 5.0.0)
57
+ cucumber (~> 3.0.0.pre.1)
58
+ cucumber_priority
59
+ gemika
60
+ rake
61
+ rspec (~> 3.0)
62
+
63
+ BUNDLED WITH
64
+ 1.13.7
@@ -8,7 +8,7 @@ module Cucumber
8
8
  initialize_without_storing_matches(step_name, matches, *args)
9
9
  end
10
10
 
11
- alias_method_chain :initialize, :storing_matches
11
+ CucumberPriority::Util.alias_chain self, :initialize, :storing_matches
12
12
 
13
13
  end
14
14
  end
@@ -13,7 +13,7 @@ module Cucumber
13
13
  resolve_ambiguity_through_priority(e)
14
14
  end
15
15
 
16
- alias_method_chain :step_matches, :priority
16
+ CucumberPriority::Util.alias_chain self, :step_matches, :priority
17
17
 
18
18
  else
19
19
  # Cucumber 2.1 or lower has a single method #step_match which returns a
@@ -26,7 +26,7 @@ module Cucumber
26
26
  resolve_ambiguity_through_priority(e).first
27
27
  end
28
28
 
29
- alias_method_chain :step_match, :priority
29
+ CucumberPriority::Util.alias_chain self, :step_match, :priority
30
30
 
31
31
  # This method doesn't exist in old Cucumbers.
32
32
  # We define it so our specs have a unified API to match steps.
@@ -0,0 +1,30 @@
1
+ module CucumberPriority
2
+ class Util
3
+ class << self
4
+
5
+ def alias_chain(mod, target, feature)
6
+ mod.class_eval do
7
+ # Strip out punctuation on predicates, bang or writer methods since
8
+ # e.g. target?_without_feature is not a valid method name.
9
+ aliased_target, punctuation = target.to_s.sub(/([?!=])$/, ''), $1
10
+ yield(aliased_target, punctuation) if block_given?
11
+
12
+ with_method = "#{aliased_target}_with_#{feature}#{punctuation}"
13
+ without_method = "#{aliased_target}_without_#{feature}#{punctuation}"
14
+
15
+ alias_method without_method, target
16
+ alias_method target, with_method
17
+
18
+ case
19
+ when public_method_defined?(without_method)
20
+ public target
21
+ when protected_method_defined?(without_method)
22
+ protected target
23
+ when private_method_defined?(without_method)
24
+ private target
25
+ end
26
+ end
27
+ end
28
+ end
29
+ end
30
+ end
@@ -1,3 +1,3 @@
1
1
  module CucumberPriority
2
- VERSION = '0.1.2'
2
+ VERSION = '0.2.0'
3
3
  end
@@ -1,7 +1,7 @@
1
1
  require 'cucumber'
2
2
  require 'cucumber/rb_support/rb_language'
3
- require 'active_support/all' # for alias_method_chain
4
3
 
4
+ require 'cucumber_priority/util'
5
5
  require 'cucumber_priority/ambiguous_error_ext'
6
6
  require 'cucumber_priority/rb_step_definition_ext'
7
7
  require 'cucumber_priority/support_code_ext'
@@ -1,7 +1,5 @@
1
1
  require 'spec_helper'
2
2
 
3
- require_relative 'cucumber_helper'
4
-
5
3
  describe Cucumber::Runtime, 'extended with cucumber_priority' do
6
4
 
7
5
  before(:each) do
data/spec/spec_helper.rb CHANGED
@@ -1,14 +1,7 @@
1
- # encoding: utf-8
2
-
3
1
  $: << File.join(File.dirname(__FILE__), "/../../lib" )
4
2
  require 'cucumber_priority'
3
+ require 'gemika'
4
+
5
+ Dir["#{File.dirname(__FILE__)}/support/*.rb"].sort.each {|f| require f}
5
6
 
6
- if defined?(RSpec)
7
- RSpec.configure do |config|
8
- if config.respond_to?(:expect_with)
9
- config.expect_with(:rspec) do |c|
10
- c.syntax = [:expect, :should]
11
- end
12
- end
13
- end
14
- end
7
+ Gemika::RSpec.configure_should_syntax
metadata CHANGED
@@ -1,46 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cucumber_priority
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
5
- prerelease:
4
+ version: 0.2.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Henning Koch
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2016-02-22 00:00:00.000000000 Z
11
+ date: 2016-12-28 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: cucumber
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
- - - ! '>='
28
- - !ruby/object:Gem::Version
29
- version: '0'
30
- - !ruby/object:Gem::Dependency
31
- name: activesupport
32
- requirement: !ruby/object:Gem::Requirement
33
- none: false
34
- requirements:
35
- - - ! '>='
36
- - !ruby/object:Gem::Version
37
- version: '0'
38
- type: :runtime
39
- prerelease: false
40
- version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
- requirements:
43
- - - ! '>='
24
+ - - ">="
44
25
  - !ruby/object:Gem::Version
45
26
  version: '0'
46
27
  description: cucumber_priority provides a way to mark step definitions as overridable,
@@ -51,53 +32,52 @@ executables: []
51
32
  extensions: []
52
33
  extra_rdoc_files: []
53
34
  files:
54
- - .gitignore
55
- - .rspec
56
- - .ruby-version
57
- - MIT-LICENSE
35
+ - ".gitignore"
36
+ - ".rspec"
37
+ - ".ruby-version"
38
+ - ".travis.yml"
39
+ - LICENSE
58
40
  - README.md
59
41
  - Rakefile
60
42
  - cucumber_priority.gemspec
61
- - gemfiles/Gemfile.cucumber-1.2
62
- - gemfiles/Gemfile.cucumber-1.2.lock
63
43
  - gemfiles/Gemfile.cucumber-1.3
64
44
  - gemfiles/Gemfile.cucumber-1.3.lock
65
- - gemfiles/Gemfile.cucumber-2.1
66
- - gemfiles/Gemfile.cucumber-2.1.lock
67
- - gemfiles/Gemfile.cucumber-2.3
68
- - gemfiles/Gemfile.cucumber-2.3.lock
45
+ - gemfiles/Gemfile.cucumber-2.4
46
+ - gemfiles/Gemfile.cucumber-2.4.lock
47
+ - gemfiles/Gemfile.cucumber-3.0
48
+ - gemfiles/Gemfile.cucumber-3.0.lock
69
49
  - lib/cucumber_priority.rb
70
50
  - lib/cucumber_priority/ambiguous_error_ext.rb
71
51
  - lib/cucumber_priority/rb_step_definition_ext.rb
72
52
  - lib/cucumber_priority/support_code_ext.rb
53
+ - lib/cucumber_priority/util.rb
73
54
  - lib/cucumber_priority/version.rb
74
- - spec/cucumber_priority/cucumber_helper.rb
75
55
  - spec/cucumber_priority/support_code_ext_spec.rb
76
56
  - spec/spec.opts
77
57
  - spec/spec_helper.rb
58
+ - spec/support/cucumber_helper.rb
78
59
  homepage: http://github.com/makandra/cucumber_priority
79
60
  licenses:
80
61
  - MIT
62
+ metadata: {}
81
63
  post_install_message:
82
64
  rdoc_options: []
83
65
  require_paths:
84
66
  - lib
85
67
  required_ruby_version: !ruby/object:Gem::Requirement
86
- none: false
87
68
  requirements:
88
- - - ! '>='
69
+ - - ">="
89
70
  - !ruby/object:Gem::Version
90
71
  version: '0'
91
72
  required_rubygems_version: !ruby/object:Gem::Requirement
92
- none: false
93
73
  requirements:
94
- - - ! '>='
74
+ - - ">="
95
75
  - !ruby/object:Gem::Version
96
76
  version: '0'
97
77
  requirements: []
98
78
  rubyforge_project:
99
- rubygems_version: 1.8.30
79
+ rubygems_version: 2.5.2
100
80
  signing_key:
101
- specification_version: 3
81
+ specification_version: 4
102
82
  summary: Overridable step definitions for Cucumber
103
83
  test_files: []
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'cucumber', '~> 1.2.0'
4
- gem 'activesupport', '~> 2.3.0'
5
- gem 'rspec', '~> 1.0'
@@ -1,27 +0,0 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- activesupport (2.3.18)
5
- builder (3.2.2)
6
- cucumber (1.2.3)
7
- builder (>= 2.1.2)
8
- diff-lcs (>= 1.1.3)
9
- gherkin (~> 2.11.6)
10
- multi_json (~> 1.3)
11
- diff-lcs (1.2.5)
12
- gherkin (2.11.6)
13
- json (>= 1.7.6)
14
- json (1.8.3)
15
- multi_json (1.11.2)
16
- rspec (1.3.2)
17
-
18
- PLATFORMS
19
- ruby
20
-
21
- DEPENDENCIES
22
- activesupport (~> 2.3.0)
23
- cucumber (~> 1.2.0)
24
- rspec (~> 1.0)
25
-
26
- BUNDLED WITH
27
- 1.10.6
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'cucumber', '~> 2.1.0'
4
- gem 'activesupport', '~> 4.2.0'
5
- gem 'rspec', '~> 3.0'
@@ -1,53 +0,0 @@
1
- GEM
2
- remote: https://rubygems.org/
3
- specs:
4
- activesupport (4.2.5)
5
- i18n (~> 0.7)
6
- json (~> 1.7, >= 1.7.7)
7
- minitest (~> 5.1)
8
- thread_safe (~> 0.3, >= 0.3.4)
9
- tzinfo (~> 1.1)
10
- builder (3.2.2)
11
- cucumber (2.1.0)
12
- builder (>= 2.1.2)
13
- cucumber-core (~> 1.3.0)
14
- diff-lcs (>= 1.1.3)
15
- gherkin3 (~> 3.1.0)
16
- multi_json (>= 1.7.5, < 2.0)
17
- multi_test (>= 0.1.2)
18
- cucumber-core (1.3.0)
19
- gherkin3 (~> 3.1.0)
20
- diff-lcs (1.2.5)
21
- gherkin3 (3.1.2)
22
- i18n (0.7.0)
23
- json (1.8.3)
24
- minitest (5.8.3)
25
- multi_json (1.11.2)
26
- multi_test (0.1.2)
27
- rspec (3.4.0)
28
- rspec-core (~> 3.4.0)
29
- rspec-expectations (~> 3.4.0)
30
- rspec-mocks (~> 3.4.0)
31
- rspec-core (3.4.1)
32
- rspec-support (~> 3.4.0)
33
- rspec-expectations (3.4.0)
34
- diff-lcs (>= 1.2.0, < 2.0)
35
- rspec-support (~> 3.4.0)
36
- rspec-mocks (3.4.0)
37
- diff-lcs (>= 1.2.0, < 2.0)
38
- rspec-support (~> 3.4.0)
39
- rspec-support (3.4.1)
40
- thread_safe (0.3.5)
41
- tzinfo (1.2.2)
42
- thread_safe (~> 0.1)
43
-
44
- PLATFORMS
45
- ruby
46
-
47
- DEPENDENCIES
48
- activesupport (~> 4.2.0)
49
- cucumber (~> 2.1.0)
50
- rspec (~> 3.0)
51
-
52
- BUNDLED WITH
53
- 1.10.6
@@ -1,5 +0,0 @@
1
- source 'https://rubygems.org'
2
-
3
- gem 'cucumber', '~> 2.3.0'
4
- gem 'activesupport', '~> 4.2.0'
5
- gem 'rspec', '~> 3.0'