aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2014-01-26 14:39:17 -0800
committerAndre Arko <andre@arko.net>2014-01-26 14:42:26 -0800
commitaeb3df71e4cd6831b2619731a024e74a2b4c8fdd (patch)
treefd4534381b51a643d001e5a26d13a13aa98779c1 /lib/bundler.rb
parent4873c8a425081e8b0feb31b49398143bc034a3fc (diff)
parentf66b49ebddf4cd20c057c54e594b9758ad29528b (diff)
downloadbundler-aeb3df71e4cd6831b2619731a024e74a2b4c8fdd.tar.gz
Merge pull request #2840 from zizkovrb/bundle-update-message
Don't blow on bundle update gem when lock is not present. Conflicts: lib/bundler/cli.rb
Diffstat (limited to 'lib/bundler.rb')
-rw-r--r--lib/bundler.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb
index da8d8715..933039fb 100644
--- a/lib/bundler.rb
+++ b/lib/bundler.rb
@@ -67,6 +67,7 @@ module Bundler
class SecurityError < BundlerError; status_code(19) ; end
class LockfileError < BundlerError; status_code(20) ; end
class CyclicDependencyError < BundlerError; status_code(21) ; end
+ class GemfileLockNotFound < BundlerError; status_code(22) ; end
# Internal errors, should be rescued
class VersionConflict < BundlerError