bundler-why 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/bundler/why.rb +6 -1
- data/lib/bundler/why/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: e4d87d484cb85734a9267fb5fb0ff166fd09aaf1094131362963b0ed9a71aad7
|
4
|
+
data.tar.gz: b7d4cfc116fb9843a51e8aef3441fa2fb79e801841bc8830264652e00f701c76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfa5182c014677edd68762685e4af125a7dae7e716bd528a6dd602c9e930f0fdacafbdbaf5cbbb5ce2c88c8c1f9fef22ac0857fadc92a4b1ec20169ace503ed6
|
7
|
+
data.tar.gz: d81a3910dcc0a0b39ecb01a082bca2f9792b6854d90d33cb05f8e6c5f990a58ac604644f4467aabd0301677d604353ddc173eeedb33e4136dee315837482e87d
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,12 @@
|
|
3
3
|
This project follows [semver 2.0.0](http://semver.org/spec/v2.0.0.html) and the
|
4
4
|
recommendations of [keepachangelog.com](http://keepachangelog.com/).
|
5
5
|
|
6
|
+
## 0.1.2
|
7
|
+
|
8
|
+
### Fixed
|
9
|
+
|
10
|
+
- Better error message when gem is not found
|
11
|
+
|
6
12
|
## 0.1.1
|
7
13
|
|
8
14
|
### Fixed
|
data/lib/bundler/why.rb
CHANGED
@@ -5,6 +5,11 @@ require 'bundler/why/version'
|
|
5
5
|
|
6
6
|
module Bundler
|
7
7
|
module Why
|
8
|
-
|
8
|
+
# All of `Why`'s errors should be `BundlerError`s, so that they will
|
9
|
+
# be rescued by bundler (in `bundler/friendly_errors.rb`), and printed in a
|
10
|
+
# concise form. If a plain `Exception` happens in a bundler plugin, bundler
|
11
|
+
# will print a big error report template, and ask the user to report it
|
12
|
+
# as a bug in bundler itself.
|
13
|
+
class Error < BundlerError; end
|
9
14
|
end
|
10
15
|
end
|
data/lib/bundler/why/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler-why
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jared Beck
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|