diff options
author | Agis- <corestudiosinc@gmail.com> | 2015-09-01 23:11:35 +0300 |
---|---|---|
committer | Agis- <corestudiosinc@gmail.com> | 2015-09-02 00:30:59 +0300 |
commit | d1e9e01109bdab9d027a14152f65655b2f66af00 (patch) | |
tree | 5cb021b83ad0857c45c68f7ad364d9448931907d /exe | |
parent | 21059b4ec2af38bf7ef9ddc233ca393259c97a9b (diff) | |
download | bundler-d1e9e01109bdab9d027a14152f65655b2f66af00.tar.gz |
Distinguish Gemfile syntax and evaluation errors
Fixes #3783.
Diffstat (limited to 'exe')
-rwxr-xr-x | exe/bundle_ruby | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/exe/bundle_ruby b/exe/bundle_ruby index 9356d7ed8d..9bee595265 100755 --- a/exe/bundle_ruby +++ b/exe/bundle_ruby @@ -8,6 +8,8 @@ require "bundler/shared_helpers" module Bundler class GemfileError < RuntimeError; end + class GemfileEvalError < GemfileError; end + class Dsl include RubyDsl |