bootsnap 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/bootsnap/load_path_cache/change_observer.rb +4 -4
- 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: 9174a4976d84e1e42b34f05435507819e1123ff9
|
4
|
+
data.tar.gz: f7a197180352c89d4750238e82314398025fcea1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08f4a617b5e970819225ea72dcd332756f8cba844bbfa6c4f6a3fde790b679e00d90ffbb0d7e3adf9e77159f3411257e1964fe1d614370b8cddac6ee5cb22145'
|
7
|
+
data.tar.gz: 6ee6f819a084e28ac05eace690d278e9f898d4695fc99dc5e2b9e6cdeb19020c418656a7c920f686b6c59e5e607e0aeea518263ae906d5bf0f93e28d7d6d76b1
|
@@ -12,25 +12,25 @@ module Bootsnap
|
|
12
12
|
sc = arr.singleton_class
|
13
13
|
sc.send(:alias_method, :shovel_without_lpc, :<<)
|
14
14
|
arr.define_singleton_method(:<<) do |entry|
|
15
|
-
observer.push_paths(self, entry)
|
15
|
+
observer.push_paths(self, entry.to_s)
|
16
16
|
shovel_without_lpc(entry)
|
17
17
|
end
|
18
18
|
|
19
19
|
sc.send(:alias_method, :push_without_lpc, :push)
|
20
20
|
arr.define_singleton_method(:push) do |*entries|
|
21
|
-
observer.push_paths(self, *entries)
|
21
|
+
observer.push_paths(self, *entries.map(&:to_s))
|
22
22
|
push_without_lpc(*entries)
|
23
23
|
end
|
24
24
|
|
25
25
|
sc.send(:alias_method, :unshift_without_lpc, :unshift)
|
26
26
|
arr.define_singleton_method(:unshift) do |*entries|
|
27
|
-
observer.unshift_paths(self, *entries)
|
27
|
+
observer.unshift_paths(self, *entries.map(&:to_s))
|
28
28
|
unshift_without_lpc(*entries)
|
29
29
|
end
|
30
30
|
|
31
31
|
sc.send(:alias_method, :concat_without_lpc, :concat)
|
32
32
|
arr.define_singleton_method(:concat) do |entries|
|
33
|
-
observer.push_paths(self, *entries)
|
33
|
+
observer.push_paths(self, *entries.map(&:to_s))
|
34
34
|
concat_without_lpc(entries)
|
35
35
|
end
|
36
36
|
|
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.3
|
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-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|