File tree 2 files changed +26
-1
lines changed
2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ smart people at [Hashrocket](http://hashrocket.com/).
10
10
For a steady stream of TILs from a variety of rocketeers, checkout
11
11
[ til.hashrocket.com] ( https://til.hashrocket.com/ ) .
12
12
13
- _ 821 TILs and counting..._
13
+ _ 822 TILs and counting..._
14
14
15
15
---
16
16
@@ -665,6 +665,7 @@ _821 TILs and counting..._
665
665
- [ Require Entire Gemfile In Pry Session] ( ruby/require-entire-gemfile-in-pry-session.md )
666
666
- [ Rerun Only Failures With RSpec] ( ruby/rerun-only-failures-with-rspec.md )
667
667
- [ Returning With Sequel] ( ruby/returning-with-sequel.md )
668
+ - [ Run An Older Version Of Bundler] ( ruby/run-an-older-version-of-bundler.md )
668
669
- [ Running A Single MiniTest Example] ( ruby/running-a-single-minitest-example.md )
669
670
- [ Safe Navigation Operator] ( ruby/safe-navigation-operator.md )
670
671
- [ Scripting With RVM] ( ruby/scripting-with-rvm.md )
Original file line number Diff line number Diff line change
1
+ # Run An Older Version Of Bundler
2
+
3
+ You can check your current version of bundler like so:
4
+
5
+ ``` bash
6
+ $ bundle --version
7
+ 1.17.3
8
+ ```
9
+
10
+ If you have older versions of bundler, you run against those by specifying the
11
+ version in the command:
12
+
13
+ ``` bash
14
+ $ bundle _1.16.6_ --version
15
+ 1.16.6
16
+ ```
17
+
18
+ Likewise this can be used with any bundler command:
19
+
20
+ ``` bash
21
+ $ bundle _1.16.6_ install
22
+ ```
23
+
24
+ [ source] ( https://makandracards.com/makandra/9741-run-specific-version-of-bundler )
You can’t perform that action at this time.
0 commit comments