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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fcd86efa96cf97561bb9f618b9be5a15394b764f
4
- data.tar.gz: d6855e9fab0efbde45d0da337b2c6e63e4d272b1
3
+ metadata.gz: 9174a4976d84e1e42b34f05435507819e1123ff9
4
+ data.tar.gz: f7a197180352c89d4750238e82314398025fcea1
5
5
  SHA512:
6
- metadata.gz: f4ad490b42d042304a9983fa0468ba202c5c494485e5e22215341c1b07b219a220fedec2c02b3f402a39b94a9eb953b2ba341e5c39fad4bc2681e5d9a5aa3445
7
- data.tar.gz: 898ac7f4a00be925525bcee53ef03be8d9a2c022bff4afe9909f7dee339dd822c71b5c72b4c24a54605bd1c5f73ef342da5d82553b49a243c37351bd007db9f2
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
 
@@ -1,3 +1,3 @@
1
1
  module Bootsnap
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
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.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-05 00:00:00.000000000 Z
11
+ date: 2017-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler