summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrey Baker <greysteil@gmail.com>2017-07-18 13:00:46 +0100
committerGrey Baker <greysteil@gmail.com>2017-07-18 14:58:07 +0100
commit84fafeed5482a8bdcbdf253590699b63abd9b263 (patch)
tree38a859cec8566bdc56ef0c7f1c2c191d386260b7
parent827120b2de1bc66b6af8334f6ca1670d0ef38ca9 (diff)
downloadbundler-84fafeed5482a8bdcbdf253590699b63abd9b263.tar.gz
Fall back to `super` in all EndpointSpecification attribute methods
-rw-r--r--lib/bundler/endpoint_specification.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/bundler/endpoint_specification.rb b/lib/bundler/endpoint_specification.rb
index e01fe67739..b82f9529ff 100644
--- a/lib/bundler/endpoint_specification.rb
+++ b/lib/bundler/endpoint_specification.rb
@@ -72,6 +72,8 @@ module Bundler
@remote_specification.post_install_message
elsif _local_specification
_local_specification.post_install_message
+ else
+ super
end
end
@@ -82,7 +84,7 @@ module Bundler
elsif _local_specification
_local_specification.extensions
else
- []
+ super
end
end