Skip to content

Commit

Permalink
minor improve
Browse files Browse the repository at this point in the history
  • Loading branch information
jasl committed Apr 8, 2024
1 parent b25cd02 commit a9cd251
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
- ruby-version: 2.7
env:
BUNDLE_GEMFILE: gemfiles/active_record_52.gemfile
- ruby-version: "3.0"
- ruby-version: 3.0
env:
BUNDLE_GEMFILE: gemfiles/active_record_61.gemfile
- ruby-version: 3.1
Expand All @@ -88,6 +88,9 @@ jobs:
- ruby-version: 3.2
env:
BUNDLE_GEMFILE: gemfiles/active_record_70.gemfile
- ruby-version: 3.3
env:
BUNDLE_GEMFILE: gemfiles/active_record_71.gemfile
fail-fast: false
env: ${{ matrix.env }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ source "https://rubygems.org"

git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }

gemspec

gem "rails", "~> 7.1"
gem "pg"
gem "sqlite3"
# gem "mysql2"

gemspec path: "./"
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ PATH
specs:
pagy_cursor (0.7.0)
activerecord (>= 5)
pagy (>= 6)
pagy (>= 6, < 9)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion pagy_cursor.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency "pagy", ">= 6"
spec.add_dependency "pagy", ">= 6", "< 9"
spec.add_dependency "activerecord", ">= 5"

spec.add_development_dependency "bundler", "~> 2"
Expand Down
2 changes: 1 addition & 1 deletion spec/dummy/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.3.0
ruby-3.3.0

0 comments on commit a9cd251

Please sign in to comment.