bundler-why 0.1.1 → 0.1.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 585f389134eb3e8429d975a06f6c65496cc072a37b23aeb566596c11a400cfcf
4
- data.tar.gz: f065ca1abfb2d665e99bd6a7cb84fc1ba6ac67ff9a84484a5dc362a2a471c9f0
3
+ metadata.gz: e4d87d484cb85734a9267fb5fb0ff166fd09aaf1094131362963b0ed9a71aad7
4
+ data.tar.gz: b7d4cfc116fb9843a51e8aef3441fa2fb79e801841bc8830264652e00f701c76
5
5
  SHA512:
6
- metadata.gz: 936c971ad9b6eea628962946d2482fcc453657a2ec46b110105e27837fb5da4649528ab1b33d326f679db68340b9b574a498899d1fd8597cecd330c2658f1b35
7
- data.tar.gz: 47359fe1a40e95dab89aa4ce61ddee7bf18411f510cf16f7eece01c5724d89f3b4df5c8de7b6d9efbc3203afb8c358b688b86aaa1e1dc159b8557b62dc98bfc7
6
+ metadata.gz: cfa5182c014677edd68762685e4af125a7dae7e716bd528a6dd602c9e930f0fdacafbdbaf5cbbb5ce2c88c8c1f9fef22ac0857fadc92a4b1ec20169ace503ed6
7
+ data.tar.gz: d81a3910dcc0a0b39ecb01a082bca2f9792b6854d90d33cb05f8e6c5f990a58ac604644f4467aabd0301677d604353ddc173eeedb33e4136dee315837482e87d
@@ -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
@@ -5,6 +5,11 @@ require 'bundler/why/version'
5
5
 
6
6
  module Bundler
7
7
  module Why
8
- class Error < StandardError; end
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
@@ -4,7 +4,7 @@ module Bundler
4
4
  # :nodoc:
5
5
  module Why
6
6
  def self.gem_version
7
- ::Gem::Version.new('0.1.1')
7
+ ::Gem::Version.new('0.1.2')
8
8
  end
9
9
  end
10
10
  end
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.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-07-01 00:00:00.000000000 Z
11
+ date: 2020-10-28 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: