Posted almost 10 years ago. Visible to the public.
Run specific version of bundler
You can specify the version of bundler
to execute a command (most often you need an older version of bundler, but don't want to uninstall newer ones):
Copybundle _1.0.10_ -v Bundler version 1.0.10
An example is rails 3.2, which freezes bundler
at version ~> 1.0
:
CopyBundler could not find compatible versions for gem "bundler": In Gemfile: rails (~> 3.2) was resolved to 3.2.0, which depends on bundler (~> 1.0) Current Bundler version: bundler (1.13.6)
You can solve this with:
Copygem install bundler -v 1.0.10 bundle _1.0.10_ install
Does your version of Ruby on Rails still receive security updates?
Rails LTS provides security patches for unsupported versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2).