This repository was archived by the owner on Jan 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +18
-9
lines changed
Expand file tree Collapse file tree 6 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 33 - ' tmp/**/*'
44 - ' config/**/*'
55 - ' vendor/**/*'
6- TargetRubyVersion : 2.2
6+ TargetRubyVersion : 2.1
77GlobalVars :
88 AllowedVariables : []
99MethodLength :
Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ sudo: false
22language : ruby
33cache : bundler
44rvm :
5+ - 2.1
56 - 2.2
6- - 2.3.4
7- - 2.4.1
7+ - 2.3
8+ - 2.4
89
910before_install :
1011 - gem install bundler --no-document
Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44This project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
55
6+ ## [ Unreleased]
7+
8+ ## [ 4.1.0] - 2017-08-29
9+ ### Added
10+
11+ - support for Ruby 2.1
12+
613## [ 4.0.0] - 2017-08-28
714### Summary
815
916- first public release
1017
1118[ Unreleased ] : https://github.com/dkdeploy/dkdeploy-cucumber/compare/master...develop
19+ [ 4.1.0 ] : https://github.com/dkdeploy/dkdeploy-cucumber/releases/tag/v4.1.0
1220[ 4.0.0 ] : https://github.com/dkdeploy/dkdeploy-cucumber/releases/tag/v4.0.0
Original file line number Diff line number Diff line change 22
33# Dkdeploy::Cucumber
44
5- [ ![ Build Status] ( https://api. travis-ci.org/dkdeploy/dkdeploy-cucumber.svg?branch=develop )] ( https://travis-ci.org/repositories /dkdeploy/dkdeploy-cucumber )
6- [ ![ Gem Version] ( https://badge.fury.io/rb/dkdeploy-cucumber.svg )] ( https://badge.fury.io/rb/dkdeploy-cucumber ) [ ![ Inline docs] ( http://inch-ci.org/github/dkdeploy/dkdeploy-cucumber.svg?branch=develop )] ( http://inch-ci.org/github/dkdeploy/dkdeploy-cucumber )
5+ [ ![ Build Status] ( https://travis-ci.org/dkdeploy/dkdeploy-cucumber.svg?branch=master )] ( https://travis-ci.org/dkdeploy/dkdeploy-cucumber )
6+ [ ![ Gem Version] ( https://badge.fury.io/rb/dkdeploy-cucumber.svg )] ( https://badge.fury.io/rb/dkdeploy-cucumber ) [ ![ Inline docs] ( http://inch-ci.org/github/dkdeploy/dkdeploy-cucumber.svg?branch=master )] ( http://inch-ci.org/github/dkdeploy/dkdeploy-cucumber )
77
88## Description
99
@@ -14,7 +14,7 @@ Tests are run with `capybara` and PhantomJS.
1414
1515Add this line to your application's Gemfile:
1616
17- gem 'dkdeploy-cucumber', '~> 4.0 '
17+ gem 'dkdeploy-cucumber', '~> 4.1 '
1818
1919And then execute:
2020
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
1313 spec . description = 'dkdeploy Cucumber step definitions'
1414 spec . summary = 'Cucumber step definitions for browser tests'
1515 spec . homepage = 'https://github.com/dkdeploy/dkdeploy-cucumber'
16- spec . required_ruby_version = '~> 2.2 '
16+ spec . required_ruby_version = '~> 2.1 '
1717
1818 spec . files = `git ls-files` . split ( $/)
1919 spec . executables = spec . files . grep ( %r{^bin\/ } ) { |f | File . basename ( f ) }
@@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
2222
2323 spec . add_development_dependency 'bundler'
2424 spec . add_development_dependency 'rake'
25- spec . add_development_dependency 'rack' , '~> 2.0 '
25+ spec . add_development_dependency 'rack' , '~> 1.6.8 '
2626 spec . add_development_dependency 'rubocop' , '~> 0.48.1'
2727 spec . add_development_dependency 'rspec' , '~> 3.6'
2828 spec . add_development_dependency 'capybara' , '~> 2.15.1'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ module Cucumber
44 #
55 class Version
66 MAJOR = 4
7- MINOR = 0
7+ MINOR = 1
88 PATCH = 0
99
1010 def self . to_s
You can’t perform that action at this time.
0 commit comments