summaryrefslogtreecommitdiff
path: root/lib/bundler/digest.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bundler/digest.rb')
-rw-r--r--lib/bundler/digest.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/digest.rb b/lib/bundler/digest.rb
index 148e9f7788..2c6d971f1b 100644
--- a/lib/bundler/digest.rb
+++ b/lib/bundler/digest.rb
@@ -50,7 +50,7 @@ module Bundler
words.map!.with_index {|word, index| SHA1_MASK & (word + mutated[index]) }
end
- words.pack("N*").unpack("H*").first
+ words.pack("N*").unpack1("H*")
end
private