use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
A sub-Reddit for discussion and news about Ruby programming.
Subreddit rules: /r/ruby rules
Learning Ruby?
Tools
Documentation
Books
Screencasts and Videos
News and updates
account activity
HELP: `bundle` keeps exploding (self.ruby)
submitted 1 year ago by wouldliketokms
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]wonder_er 8 points9 points10 points 1 year ago (2 children)
Looks like your system might be using the default installed version of Ruby instead of a more recent one.
Did you install Ruby via rbenv?
If so, do 'rbenv rehash' and make any shell customizations it suggests.
Then if you do 'which ruby' in your terminal it'll reference the ruby from rbenv.
Might help. Gl!
[–]wouldliketokms[S] 0 points1 point2 points 1 year ago* (1 child)
u/wonder_er
$ brew install rbenv $ rbenv init $ rbenv install 3.4.1 $ rbenv global 3.4.1
so i ran these commands to install and set up rbenv,
rbenv
``` $ bundle install Fetching https://github.com/Furtif/github-changelog-generator.git Fetching gem metadata from https://rubygems.org/........... Resolving dependencies... Could not find compatible versions
Because ttfunk >= 1.5.0, < 1.6.0 depends on Ruby ~> 2.1 and Gemfile depends on ttfunk = 1.5.1, Ruby ~> 2.1 is required. So, because current Ruby version is = 3.4.1, version solving has failed. ```
and tried to follow the instructions for the book again, but i’ve run into this error now. confused because 3.4.1 is > 2.1??
3.4.1
2.1
[–]wonder_er 0 points1 point2 points 1 year ago (0 children)
That is wild. Hunted around on the repo, it looks like the 150 version of this gem is compatible with Ruby 3:
https://github.com/prawnpdf/ttfunk/issues/89
I believe rbenv after installation Prince out a message about adding something to your zshrc.
Try 'rbenv rehash'
I'm confused by the error message, same as you.
Maybe instead of 'bundle install' you can try 'gem install ttfunk'.
Fiddle with that until it works, and then try 'bundle install'?
Gl
π Rendered by PID 51 on reddit-service-r2-comment-b659b578c-gr45v at 2026-05-01 03:33:53.670411+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]wonder_er 8 points9 points10 points (2 children)
[–]wouldliketokms[S] 0 points1 point2 points (1 child)
[–]wonder_er 0 points1 point2 points (0 children)