Allow testing on Ruby 2.4 as well
Cucumber 5.x requires at least Ruby 2.5
This commit is contained in:
parent
c9b84e2b35
commit
e59e998b42
2
Gemfile
2
Gemfile
|
@ -15,7 +15,7 @@ end
|
||||||
#
|
#
|
||||||
|
|
||||||
group :test do
|
group :test do
|
||||||
gem "cucumber", "~> 5.1.2"
|
gem "cucumber", RUBY_VERSION >= "2.5" ? "~> 5.1.2" : "~> 4.1"
|
||||||
gem "httpclient"
|
gem "httpclient"
|
||||||
gem "jekyll_test_plugin"
|
gem "jekyll_test_plugin"
|
||||||
gem "jekyll_test_plugin_malicious"
|
gem "jekyll_test_plugin_malicious"
|
||||||
|
|
Loading…
Reference in New Issue