Skip to content

Commit

Permalink
Use correct sqlite3 versions in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fatkodima committed May 16, 2024
1 parent 946c4a9 commit 52d1fb9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source "https://rubygems.org"
# Development dependencies
group :development do
gem "activerecord-jdbcsqlite3-adapter", platforms: [:jruby]
gem "sqlite3", platforms: [:ruby]
gem "sqlite3", "~> 1.4", platforms: [:ruby]
end

gemspec
2 changes: 1 addition & 1 deletion gemfiles/active_record_61.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gem "activesupport", "~> 6.1.0", require: "active_support"

group :development do
gem "activerecord-jdbcsqlite3-adapter", "~> 61.1", platforms: [:jruby]
gem "sqlite3", platforms: [:ruby]
gem "sqlite3", "~> 1.4", platforms: [:ruby]
end

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/active_record_70.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gem "activesupport", "~> 7.0.0", require: "active_support"

group :development do
gem "activerecord-jdbcsqlite3-adapter", "~> 70.0", platforms: [:jruby]
gem "sqlite3", platforms: [:ruby]
gem "sqlite3", "~> 1.4", platforms: [:ruby]
end

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/active_record_71.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gem "activesupport", "~> 7.1.0", require: "active_support"

group :development do
gem "activerecord-jdbcsqlite3-adapter", "~> 70.0", platforms: [:jruby]
gem "sqlite3", platforms: [:ruby]
gem "sqlite3", "~> 1.4", platforms: [:ruby]
end

gemspec path: "../"

0 comments on commit 52d1fb9

Please sign in to comment.