Skip to content

Commit

Permalink
Ensure new enough sqlite3 is used
Browse files Browse the repository at this point in the history
  • Loading branch information
segiddins committed Jul 21, 2024
1 parent 10ea299 commit 7f33fed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gemstash.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ you push your own private gems as well."
if RUBY_PLATFORM == "java"
spec.add_runtime_dependency "jdbc-sqlite3", "~> 3.8"
else
spec.add_runtime_dependency "sqlite3", ">= 1.3", "< 3.0"
# SQLite 3.44+ is required for string_agg support
spec.add_runtime_dependency "sqlite3", ">= 1.68", "< 3.0"
end
end

0 comments on commit 7f33fed

Please sign in to comment.