Skip to content

Commit

Permalink
Merge pull request #16 from DannyBen/drop/ruby2-support
Browse files Browse the repository at this point in the history
Drop support for Ruby 2.x
  • Loading branch information
DannyBen committed Jul 1, 2023
2 parents f6f4fc1 + 8eb6f5a commit f723618
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

strategy:
matrix: { ruby: ['2.7', '3.0', '3.1', '3.2', head] }
matrix: { ruby: ['3.0', '3.1', '3.2', head] }

steps:
- name: Check out code
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Expand Up @@ -8,4 +8,4 @@ inherit_gem:
- rspec.yml

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
2 changes: 1 addition & 1 deletion secret_hub.gemspec
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.executables = ['secrethub']
s.homepage = 'https://github.com/dannyben/secret_hub'
s.license = 'MIT'
s.required_ruby_version = '>= 2.7'
s.required_ruby_version = '>= 3.0'

s.add_runtime_dependency 'colsole', '>= 0.8.1', '< 2'
s.add_runtime_dependency 'httparty', '~> 0.21'
Expand Down

0 comments on commit f723618

Please sign in to comment.