Last active
June 3, 2025 15:38
-
-
Save technicalpickles/814bc1fc770b373aab3053b84a7e416c to your computer and use it in GitHub Desktop.
tapioca bundler stuck on 0.16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
source "https://rubygems.org" | |
# NOTE: `bundle add` ends up locking it to this version, even though it is `bundle add`'d without a version | |
gem "tapioca", "~> 0.16.11" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GEM | |
remote: https://rubygems.org/ | |
specs: | |
benchmark (0.4.1) | |
erubi (1.13.1) | |
logger (1.7.0) | |
netrc (0.11.0) | |
parallel (1.27.0) | |
prism (1.4.0) | |
rbi (0.3.3) | |
prism (~> 1.0) | |
rbs (>= 3.4.4) | |
sorbet-runtime (>= 0.5.9204) | |
rbs (3.9.4) | |
logger | |
rexml (3.4.1) | |
sorbet (0.5.12142) | |
sorbet-static (= 0.5.12142) | |
sorbet-runtime (0.5.12142) | |
sorbet-static (0.5.12142-aarch64-linux) | |
sorbet-static (0.5.12142-universal-darwin) | |
sorbet-static (0.5.12142-x86_64-linux) | |
sorbet-static-and-runtime (0.5.12142) | |
sorbet (= 0.5.12142) | |
sorbet-runtime (= 0.5.12142) | |
spoom (1.6.3) | |
erubi (>= 1.10.0) | |
prism (>= 0.28.0) | |
rbi (>= 0.3.3) | |
rexml (>= 3.2.6) | |
sorbet-static-and-runtime (>= 0.5.10187) | |
thor (>= 0.19.2) | |
tapioca (0.16.11) | |
benchmark | |
bundler (>= 2.2.25) | |
netrc (>= 0.11.0) | |
parallel (>= 1.21.0) | |
rbi (~> 0.2) | |
sorbet-static-and-runtime (>= 0.5.11087) | |
spoom (>= 1.2.0) | |
thor (>= 1.2.0) | |
yard-sorbet | |
thor (1.3.2) | |
yard (0.9.37) | |
yard-sorbet (0.9.0) | |
sorbet-runtime | |
yard | |
PLATFORMS | |
aarch64-linux | |
universal-darwin | |
x86_64-linux | |
DEPENDENCIES | |
tapioca (~> 0.16.11) | |
BUNDLED WITH | |
2.6.9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❯ bundle init | |
Writing new Gemfile to /Users/josh.nichols/workspace/tapioca-test/Gemfile | |
❯ bundle add tapioca | |
Fetching gem metadata from https://rubygems.org/........ | |
Resolving dependencies... | |
❯ bundle info tapioca | |
* tapioca (0.16.11) | |
Summary: A Ruby Interface file generator for gems, core types and the Ruby standard library | |
Homepage: https://github.com/Shopify/tapioca | |
Path: /Users/josh.nichols/.local/share/mise/installs/ruby/3.4.2/lib/ruby/gems/3.4.0/gems/tapioca-0.16.11 | |
❯ bundle outdated tapioca | |
Fetching gem metadata from https://rubygems.org/....... | |
Resolving dependencies... | |
Resolving dependencies... | |
Gem Current Latest Requested Groups | |
tapioca 0.16.11 0.17.1 ~> 0.16.11 default | |
❯ bundle update tapioca | |
Fetching gem metadata from https://rubygems.org/....... | |
Resolving dependencies... | |
Resolving dependencies... | |
Bundler attempted to update tapioca but its version stayed the same | |
Bundle updated! | |
❯ bundle --version | |
Bundler version 2.6.9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment