Skip to content

Commit 12e5263

Browse files
committed
FR-648 Add Rails 8 support
Ticket: https://ombulabs.atlassian.net/browse/FR-648
1 parent 92d204c commit 12e5263

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
ruby-version: ['3.2', '3.1', '3.0']
12+
ruby-version: ['3.4', '3.3']
1313

1414
steps:
1515
- uses: actions/checkout@v3

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
44
# Specify your gem's dependencies in ombu_labs-auth.gemspec.
55
gemspec
66

7-
gem 'sqlite3', '~> 1.5', '>= 1.5.3'
7+
gem "sqlite3", "~> 2.6"
88

99
gem "sprockets-rails"
1010

ombu_labs-auth.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
1919
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md"]
2020
end
2121

22-
spec.add_dependency "rails", ">= 6.0", "< 7.3"
22+
spec.add_dependency "rails", ">= 6.0", "< 8.1"
2323
spec.add_dependency "devise", "~> 4.9"
2424
spec.add_dependency "omniauth", "~> 2.1.0"
2525
spec.add_dependency "omniauth-github", "~> 2.0.0"

0 commit comments

Comments
 (0)