bootsnap 0.2.6 → 0.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/bootsnap/load_path_cache/cache.rb +2 -2
- data/lib/bootsnap/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 816a76974f21ba229b9c9bfb7f784583c84890d4
|
|
4
|
+
data.tar.gz: c3115729f0861706fda13f9f42c252f7e2794f64
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7b56c49843105f262738a7c70ea84c8d46b5a1712ceb0b72a1fcd448157468ed1a35e5a07d57b92c31553a145c8f2af9ed55cc612e564b3e65e2f1eb246bea2
|
|
7
|
+
data.tar.gz: d736eb107a78293c6a465491f4df74a8cfe7475c4ab56fc8efba7369fd9622fd00f864caf311ef7b5a625694bef196f60887e4631c18ef2200b3ae6937432ddd
|
|
@@ -99,7 +99,7 @@ module Bootsnap
|
|
|
99
99
|
|
|
100
100
|
def push_paths_locked(*paths)
|
|
101
101
|
@store.transaction do
|
|
102
|
-
paths.each do |path|
|
|
102
|
+
paths.map(&:to_s).each do |path|
|
|
103
103
|
p = Path.new(path)
|
|
104
104
|
entries, dirs = p.entries_and_dirs(@store)
|
|
105
105
|
# push -> low precedence -> set only if unset
|
|
@@ -111,7 +111,7 @@ module Bootsnap
|
|
|
111
111
|
|
|
112
112
|
def unshift_paths_locked(*paths)
|
|
113
113
|
@store.transaction do
|
|
114
|
-
paths.reverse.each do |path|
|
|
114
|
+
paths.map(&:to_s).reverse.each do |path|
|
|
115
115
|
p = Path.new(path)
|
|
116
116
|
entries, dirs = p.entries_and_dirs(@store)
|
|
117
117
|
# unshift -> high precedence -> unconditional set
|
data/lib/bootsnap/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bootsnap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Burke Libbey
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-04-
|
|
11
|
+
date: 2017-04-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|