Skip to content

Commit f504e9c

Browse files
committed
#216 ruby version above 2
1 parent 72b6b6d commit f504e9c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.rubocop.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ AllCops:
66
NewCops: enable
77
SuggestExtensions: false
88

9+
Gemspec/RequiredRubyVersion:
10+
Enabled: false
911
Layout/EmptyLineAfterGuardClause:
1012
Enabled: false
1113
Metrics/CyclomaticComplexity:

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ end
7474

7575
require 'cucumber/rake/task'
7676
Cucumber::Rake::Task.new(:features) do |t|
77-
t.cucumber_opts = 'features --format progress'
77+
t.cucumber_opts = 'features'
7878
Rake::Cleaner.cleanup_files(['coverage'])
7979
end
8080
Cucumber::Rake::Task.new(:'features:html') do |t|

pdd.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |s|
2929
s.required_rubygems_version =
3030
Gem::Requirement.new('>= 0')
3131
end
32-
s.required_ruby_version = '~> 2.3'
32+
s.required_ruby_version = '~>2'
3333
s.name = 'pdd'
3434
s.version = PDD::VERSION
3535
s.license = 'MIT'

0 commit comments

Comments
 (0)