Skip to content

Commit

Permalink
Merge pull request #16 from DannyBen/housekeeping
Browse files Browse the repository at this point in the history
Drop support for Ruby 3.0
  • Loading branch information
DannyBen committed Jul 30, 2024
2 parents 14a738b + f9d4f05 commit 8bf0758
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest

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

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install OS dependencies
run: sudo apt-get -y install libyaml-dev
Expand Down
4 changes: 3 additions & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ inherit_gem:
- rspec.yml

AllCops:
TargetRubyVersion: 3.0
TargetRubyVersion: 3.1
SuggestExtensions: false

4 changes: 0 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,8 @@ source 'https://rubygems.org'

gem 'byebug'
gem 'puma'
gem 'rentacop'
gem 'rspec'
gem 'rspec_approvals'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rspec'
gem 'runfile'
gem 'runfile-tasks'
gem 'simplecov'
Expand Down
5 changes: 3 additions & 2 deletions icodi.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ Gem::Specification.new do |s|
s.files = Dir['README.md', 'lib/**/*.*']
s.homepage = 'https://github.com/dannyben/icodi'
s.license = 'MIT'
s.required_ruby_version = '>= 3.0'
s.required_ruby_version = '>= 3.1'

s.add_runtime_dependency 'victor', '~> 0.2'
s.add_dependency 'victor', '~> 0.2'

s.metadata = {
'bug_tracker_uri' => 'https://github.com/DannyBen/icodi/issues',
'source_code_uri' => 'https://github.com/DannyBen/icodi',
'changelog_uri' => 'https://github.com/DannyBen/icodi/blob/master/CHANGELOG.md',
'rubygems_mfa_required' => 'true',
}
end

0 comments on commit 8bf0758

Please sign in to comment.