Skip to content

Commit

Permalink
chore: Update Ruby and SQLite dependencies (#262) (#263)
Browse files Browse the repository at this point in the history
Update Ruby version to 3.3.1 and SQLite version to 2.0.2 in gemspec and Appraisals file. Also, update the RubyGems and Bundler versions in the gem-publish workflow.
  • Loading branch information
mnovelo authored May 24, 2024
1 parent 906d6d0 commit 55c7ca6
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/gem-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,7 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
rubygems: latest
bundler: latest
- name: Publish to RubyGems
uses: rubygems/release-gem@v1
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.4
3.3.1
8 changes: 4 additions & 4 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
appraise 'rails-6-1' do
gem 'rails', '~> 6.1.0'
platforms :ruby do
gem 'sqlite3', '~> 1.4'
gem 'sqlite3', '~> 2.0'
end
platforms :jruby do
gem 'activerecord-jdbc-adapter', '~> 61.0'
Expand All @@ -15,7 +15,7 @@ end
appraise 'rails-7-0' do
gem 'rails', '~> 7.0.0'
platforms :ruby do
gem 'sqlite3', '~> 1.4'
gem 'sqlite3', '~> 2.0'
end
platforms :jruby do
gem 'activerecord-jdbc-adapter', '~> 61.0'
Expand All @@ -27,7 +27,7 @@ end
appraise 'rails-7-1' do
gem 'rails', '~> 7.1.0'
platforms :ruby do
gem 'sqlite3', '~> 1.6'
gem 'sqlite3', '~> 2.0'
end
platforms :jruby do
gem 'activerecord-jdbc-adapter', '~> 61.0'
Expand All @@ -39,7 +39,7 @@ end
appraise 'rails-master' do
gem 'rails', git: 'https://github.com/rails/rails.git'
platforms :ruby do
gem 'sqlite3', '~> 1.4'
gem 'sqlite3', '~> 2.0'
end
platforms :jruby do
gem 'activerecord-jdbc-adapter', '~> 61.0'
Expand Down
4 changes: 2 additions & 2 deletions ros-apartment.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Gem::Specification.new do |s|
s.add_development_dependency 'jdbc-postgres'
else
s.add_development_dependency 'mysql2', '~> 0.5'
s.add_development_dependency 'pg', '~> 1.2'
s.add_development_dependency 'sqlite3', '~> 1.3.6'
s.add_development_dependency 'pg', '~> 1.5'
s.add_development_dependency 'sqlite3', '~> 2.0.2'
end
end

0 comments on commit 55c7ca6

Please sign in to comment.