Skip to content

Commit

Permalink
Update required version
Browse files Browse the repository at this point in the history
  • Loading branch information
hunchr committed Nov 4, 2024
1 parent 783a449 commit 61b4184
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [2.7, 3.3]
ruby: [3.0, 3.3]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ inherit_gem:
AllCops:
Exclude: [gemfiles/**/*, spec/dummy/db/schema.rb]
SuggestExtensions: false
TargetRubyVersion: 2.7.0
TargetRubyVersion: 3.0.0
8 changes: 4 additions & 4 deletions Appraisals
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# frozen_string_literal: true

appraise "rails-6" do
gem "rails", "6.0.0"
appraise "rails_6_1" do
gem "rails", "6.1.0"
end

appraise "rails-7" do
appraise "rails_7" do
gem "rails", "7.0.0"
end

appraise "rails-8" do
appraise "rails_8" do
gem "rails", "8.0.0.rc2"
end
4 changes: 2 additions & 2 deletions hotsheet.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ Gem::Specification.new do |spec|
`git ls-files -z`.split("\x0").reject { _1.match %r{^(.git|bin|spec)/} }
end

spec.required_ruby_version = ">= 2.7.0"
spec.add_dependency "rails", ">= 6.0.0"
spec.required_ruby_version = ">= 3.0"
spec.add_dependency "rails", ">= 6.1"
spec.add_dependency "sprockets-rails"
spec.add_dependency "stimulus-rails"
spec.add_dependency "turbo-rails"
Expand Down

0 comments on commit 61b4184

Please sign in to comment.