summaryrefslogtreecommitdiff
path: root/lib/bundler/source
diff options
context:
space:
mode:
authorfatkodima <fatkodima123@gmail.com>2019-11-06 00:52:25 +0200
committerfatkodima <fatkodima123@gmail.com>2019-11-06 00:53:01 +0200
commite77bc666db3c6193f8ff9f8cf7b2572ced2092ab (patch)
treedfff2cd8ad32a8c9c75b745b07b25439c83b39b5 /lib/bundler/source
parentbf7df421ee6311fcc17e6dc46d204236f33b4b3f (diff)
downloadbundler-e77bc666db3c6193f8ff9f8cf7b2572ced2092ab.tar.gz
Ignore local overrides for bundle pristine
Diffstat (limited to 'lib/bundler/source')
-rw-r--r--lib/bundler/source/git.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bundler/source/git.rb b/lib/bundler/source/git.rb
index 736f5bb546..ab997ec47c 100644
--- a/lib/bundler/source/git.rb
+++ b/lib/bundler/source/git.rb
@@ -230,6 +230,10 @@ module Bundler
@allow_remote || @allow_cached
end
+ def local?
+ @local
+ end
+
private
def serialize_gemspecs_in(destination)
@@ -256,10 +260,6 @@ module Bundler
cached_revision && super
end
- def local?
- @local
- end
-
def requires_checkout?
allow_git_ops? && !local? && !cached_revision_checked_out?
end