Skip to content
This repository was archived by the owner on Jul 30, 2021. It is now read-only.

Commit 3fe1a35

Browse files
committed
restrict ruby versions
1 parent 4ed5014 commit 3fe1a35

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ruby.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
ruby-version: ['2.7', '2.6', '2.5', '2.4']
23+
ruby-version: ['2.7', '2.6']
2424

2525
steps:
2626
- uses: actions/checkout@v2

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AllCops:
2-
TargetRubyVersion: 2.4
2+
TargetRubyVersion: 2.6
33
NewCops: enable
44
Exclude:
55
- 'test/*.rb'

pass-station.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
2828
'source_code_uri' => 'https://github.com/sec-it/pass-station/'
2929
}
3030

31-
s.required_ruby_version = ['>= 2.4.0', '< 3.0']
31+
s.required_ruby_version = ['>= 2.6.0', '< 3.0']
3232

3333
s.add_runtime_dependency('docopt', '~> 0.6') # for argument parsing
3434
s.add_runtime_dependency('paint', '~> 2.2') # for colorized ouput

0 commit comments

Comments
 (0)