-
I forgot how much setup was required to…
I forgot how much setup was required to go from a base Ubuntu install to bundling and running ruby things: “mkmf.rb can’t find header files for ruby” and other header files messages with bundler… new to also install ruby-dev with your ruby package install in Ubuntu On Ubuntu… need the following: apt-get install -y ruby…
-
On rails 7 new uninitialized constant Gem Source…
On rails 7 new: uninitialized constant Gem::Source (NameError) (defined?(@source) && @source) || Gem::Source::Installed.new ^^^^^^^^ bundler (2.3.8, default: 2.3.7) Solution was to `gem update bundler` bundler (2.3.11, 2.3.8, default: 2.3.7)
-
Bundler reports errors across several different projects when running `bundle install`
When running bundle install, I was getting the following for several projects: Bundler gave the error “Could not find {gem_name_version} in any of the sources” while processing “{project_path}/Gemfile”. Perhaps you forgot to run “bundle install”? . . . I found someone else was having the same problem too. In my case, I had uninstalled and…