Open jmarsh24 opened 10 months ago
Steps to Reproduce ruby version: ruby 3.2.2 (2023-03-30 revision e51014f9c0) [arm64-darwin23] bundler version: Bundler version 2.5.4
Gemfile
# frozen_string_literal: true
source "https://rubygems.org"
gem "sqlite-ulid"
Gemfile.lock
GEM
remote: https://rubygems.org/
specs:
PLATFORMS
aarch64-linux
DEPENDENCIES
BUNDLED WITH
2.5.4
@asg017
Hello, wanted to report encountering the same issue here. @jmarsh24 's fix seems to have worked to install the gem via bundler.
We faced the same issue in one of our Rails projects when trying to install the gem via bundler. To solve it, we had to remove Gemfile.lock
and run bundle
again.
I'm facing an issue when trying to use bundle add sqlite-ulid running the latest ruby version.
I'm on ruby version 3.2.2, arm64-darwin.
It was also happening when trying to add "sqlite-vss" vector full text search.
I was able to get it to bundle with
gem "sqlite-ulid", platforms: :ruby_31
Any ideas what might be causing this? I had a few other friends try installing it. Those who were on ruby 3.1.4 were able to get it to install. We had mixed results. Some people were able to install it and others not.