Skip to content

Commit

Permalink
drop support for ruby 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
abeidahmed committed Jan 5, 2024
1 parent 92f7366 commit c5126cd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.3
bundler: 2.2.33
bundler: default
bundler-cache: true
rubygems: latest
- name: Lint
Expand All @@ -27,13 +27,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: [2.7, 3.0, 3.1, 3.2, 3.3]
ruby_version: [3.0, 3.1, 3.2, 3.3]
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler: 2.2.33
bundler: default
bundler-cache: true
rubygems: latest
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.7
3.2.2
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ gemspec
group :development, :test do
gem "byebug", "~> 11.1", ">= 11.1.3"
gem "minitest", "~> 5.0"
gem "nokogiri", "~> 1.13", ">= 1.13.10"
gem "nokogiri", "~> 1.16"
gem "rake", "~> 13.0"
gem "standard", "~> 1.16", ">= 1.16.1"
end
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ GEM
nokogiri (>= 1.12.0)
method_source (1.0.0)
minitest (5.20.0)
nokogiri (1.13.10-x86_64-linux)
nokogiri (1.16.0-x86_64-linux)
racc (~> 1.4)
parallel (1.22.1)
parser (3.2.0.0)
ast (~> 2.4.1)
racc (1.6.2)
racc (1.7.3)
rack (2.2.8)
rack-test (2.1.0)
rack (>= 1.3)
Expand Down Expand Up @@ -99,7 +99,7 @@ PLATFORMS
DEPENDENCIES
byebug (~> 11.1, >= 11.1.3)
minitest (~> 5.0)
nokogiri (~> 1.13, >= 1.13.10)
nokogiri (~> 1.16)
rails_heroicon!
rake (~> 13.0)
standard (~> 1.16, >= 1.16.1)
Expand Down
2 changes: 1 addition & 1 deletion rails_heroicon.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.summary = "Ruby on Rails view helpers for the awesome Heroicons by Steve Schoger."
spec.homepage = "https://github.com/abeidahmed/rails-heroicon"
spec.license = "MIT"
spec.required_ruby_version = Gem::Requirement.new(">= 2.7")
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/abeidahmed/rails-heroicon"
Expand Down

0 comments on commit c5126cd

Please sign in to comment.