Skip to content

Commit

Permalink
Merge pull request #1875 from Shopify/andyw8/constrain-sqlite3
Browse files Browse the repository at this point in the history
Constrain sqlite3 gem dependency
  • Loading branch information
andyw8 committed Apr 18, 2024
2 parents f29ea5d + 2313534 commit e13dd7c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -35,7 +35,7 @@ group :development, :test do
gem "sprockets"
gem "state_machines"
gem "activerecord-typedstore"
gem "sqlite3"
gem "sqlite3", "~>1.4"
gem "identity_cache"
gem "cityhash",
git: "https://github.com/csfrancis/cityhash.git",
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -406,7 +406,7 @@ DEPENDENCIES
sidekiq
smart_properties
sprockets
sqlite3
sqlite3 (~> 1.4)
state_machines
tapioca!
webmock
Expand Down
2 changes: 1 addition & 1 deletion spec/tapioca/cli/dsl_spec.rb
Expand Up @@ -1618,7 +1618,7 @@ def self.gather_constants

it "generates RBIs for lower versions of activerecord-typedstore" do
@project.require_real_gem("activerecord-typedstore", "1.4.0")
@project.require_real_gem("sqlite3")
@project.require_real_gem("sqlite3", "1.7.3")
@project.bundle_install!
@project.write!("lib/post.rb", <<~RB)
require "active_record"
Expand Down

0 comments on commit e13dd7c

Please sign in to comment.