Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Ruby 3.1 #1135

Merged
merged 4 commits into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["3.1", "3.2", "3.3", "head"]
ruby: ["3.2", "3.3", "head"]
activesupport: ["7.1", "7.2", "main"]
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/activesupport_${{ matrix.activesupport }}.gemfile
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.4
3.3.5
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Rails 7.1 and 7.2
* Ruby 3.3
* Drop Ruby 3.0
* Drop Ruby 3.1
* Drop Rails 6.1
* Drop Rails 7.0

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,4 @@ DEPENDENCIES
webmock

BUNDLED WITH
2.5.15
2.5.21
2 changes: 1 addition & 1 deletion eve_online.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|bin|swagger)/}) }
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 3.1"
spec.required_ruby_version = ">= 3.2"

spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
Expand Down
5 changes: 2 additions & 3 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# frozen_string_literal: true

require "simplecov"

SimpleCov.start do
enable_coverage :branch
if Gem::Version.new(RUBY_VERSION) > Gem::Version.new("3.2.0")
enable_coverage_for_eval
end
enable_coverage_for_eval
end

$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
Expand Down