diff options
author | Homu <homu@barosl.com> | 2015-09-03 10:38:24 +0900 |
---|---|---|
committer | Homu <homu@barosl.com> | 2015-09-03 10:38:24 +0900 |
commit | 9d61e4ff81114e6e42bc4d40305c4f993b1a7988 (patch) | |
tree | 6fd295fde05f1b077110e2f41b0c4856a2e0b6f6 /lib/bundler.rb | |
parent | 4cc8417a68c72e61d477b4f7d8feaeab692025ea (diff) | |
parent | d1e9e01109bdab9d027a14152f65655b2f66af00 (diff) | |
download | bundler-9d61e4ff81114e6e42bc4d40305c4f993b1a7988.tar.gz |
Auto merge of #3971 - agis-:issue-3783, r=indirect
Distinguish Gemfile syntax and evaluation errors
Fixes #3783.
Diffstat (limited to 'lib/bundler.rb')
-rw-r--r-- | lib/bundler.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb index b7b43ed8e0..28d488dc18 100644 --- a/lib/bundler.rb +++ b/lib/bundler.rb @@ -96,6 +96,7 @@ module Bundler status_code(24) end + class GemfileEvalError < GemfileError; end class MarshalError < StandardError; end class PermissionError < BundlerError |