Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit 9d05fb9

Browse files
authored
Merge pull request #5 from flipgrid/rails7
Rails 7 & Ruby 3 support
2 parents e9b5d97 + 26805c2 commit 9d05fb9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-latest]
11-
ruby: [2.5, 2.7]
11+
ruby: [2.7, 3.1, 3.2]
1212
runs-on: ${{ matrix.os }}
1313
steps:
1414
- uses: actions/checkout@v3

periscope-activerecord.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
Gem::Specification.new do |gem|
44
gem.name = "periscope-activerecord"
5-
gem.version = "2.2.1"
5+
gem.version = "2.3.0"
66

77
gem.author = "Steve Richert"
88
gem.email = "[email protected]"
99
gem.summary = "Push your Active Record models' scopes up to the surface"
1010
gem.homepage = "https://github.com/laserlemon/periscope"
1111
gem.license = "MIT"
1212

13-
gem.add_dependency "activerecord", ">= 3", "< 7"
13+
gem.add_dependency "activerecord", ">= 3"
1414
gem.add_dependency "periscope", "~> 2.1.0"
1515

1616
gem.files = %w(

periscope.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
Gem::Specification.new do |gem|
44
gem.name = "periscope"
5-
gem.version = "2.1.0"
5+
gem.version = "2.1.1"
66

77
gem.author = "Steve Richert"
88
gem.email = "[email protected]"
99
gem.summary = "Push your models' scopes up to the surface"
1010
gem.homepage = "https://github.com/laserlemon/periscope"
1111
gem.license = "MIT"
1212

13-
gem.add_development_dependency "bundler", "~> 2.2"
14-
gem.add_development_dependency "rake", "~> 10.3"
13+
gem.add_development_dependency "bundler", ">= 2.2"
14+
gem.add_development_dependency "rake", ">= 10.3"
1515

1616
gem.files = %w(
1717
lib/periscope.rb

0 commit comments

Comments
 (0)