extended_bundler-errors 0.2.6 → 0.3.0
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/Gemfile.lock +1 -1
- data/lib/extended_bundler/errors.rb +5 -0
- data/lib/extended_bundler/errors/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f3b291909fcba238b39265ed82f5132764e893995a3030988663ddc425884e9
|
|
4
|
+
data.tar.gz: bcd43c9e98dcd5f0bea34ea00a20740e4c68399b0d1a252ca39dddd137820ecf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d674bf636351668ba380efe77b3f72354fa941ea42fdcca3dc422a48c69f387eb43c19cdf1b4a9ed7d7a33163d8e27a5a4a8fe76e444d5fff20d20f44b686de
|
|
7
|
+
data.tar.gz: 7c0fe4b8865915928a50d0694b1042e59fbfe6723d1bd897c4d6c80bbb665bd7f8b1f1a03047d63289b0b6d180274e8cc36b2c359d81be8c52fc13fe116c26c5
|
data/Gemfile.lock
CHANGED
|
@@ -29,6 +29,11 @@ It is recommended to:
|
|
|
29
29
|
Bundler::Plugin.add_hook('after-install') do |spec_install|
|
|
30
30
|
troubleshoot(spec_install) if spec_install.state != :installed
|
|
31
31
|
end
|
|
32
|
+
|
|
33
|
+
Bundler::Plugin.add_hook('before-install-all') do |_d|
|
|
34
|
+
# This hook makes bundler load the plugin
|
|
35
|
+
# Because the plugin is loaded before everything, our after-install hook is registered
|
|
36
|
+
end
|
|
32
37
|
end
|
|
33
38
|
|
|
34
39
|
# Troubleshoots a failed installation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: extended_bundler-errors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- jules2689
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-09-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|