summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-06-08 13:04:39 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-06-10 01:42:17 -0500
commitfa9f4cd07bcd5b868886db84111e7ea94b3d13f1 (patch)
tree7575d6b10aea41ca802f06d8edb90e9fb38db6ff
parent848d33ca47805fd6817cc301dc82ac1bc3924046 (diff)
downloadbundler-fa9f4cd07bcd5b868886db84111e7ea94b3d13f1.tar.gz
Update PostIt to rescue an error that exists on old RGVs
-rw-r--r--lib/bundler/vendor/postit/lib/postit/installer.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/vendor/postit/lib/postit/installer.rb b/lib/bundler/vendor/postit/lib/postit/installer.rb
index 9117a1ac35..30a74a0190 100644
--- a/lib/bundler/vendor/postit/lib/postit/installer.rb
+++ b/lib/bundler/vendor/postit/lib/postit/installer.rb
@@ -6,7 +6,7 @@ module BundlerVendoredPostIt
def installed?
!Gem::Specification.find_by_name('bundler', @bundler_version).nil?
- rescue Gem::MissingSpecVersionError
+ rescue LoadError
false
end