bundler-why-plugin 0.2.1 → 0.2.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 +4 -4
- data/lib/bundler/why/cli.rb +3 -2
- data/lib/bundler/why/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bf9a20cb6af25f4ddd9b9acb89759178685067f09ae8077ece46adb82bc65ff3
|
|
4
|
+
data.tar.gz: 1a9b0c380b5bb1f9268b42fe0895a5ccd2de8bc714461babebd54f55ac5aca60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2887e1b75679daa55e81a42e1cd076d61f596ca83750416e6be981ef2b878d32cddbb4d6193d033ffa781f91e0f9d569d5e1edf9ed2188cfdab5b9325d0737ef
|
|
7
|
+
data.tar.gz: 8a46e91056d6b5ee94d7ebb9b801c2096ce1d4db04da921cd278cd6d58f87b0347a2fcbd81af258cd3924bfda34d28935f8fe75dca2f61e484186de9b181da7f
|
data/lib/bundler/why/cli.rb
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
# Use Bundler's vendored Thor instead of the standalone gem
|
|
4
|
+
require "bundler/vendored_thor"
|
|
4
5
|
require "bundler/why/dependency_resolver"
|
|
5
6
|
|
|
6
7
|
module Bundler
|
|
7
8
|
module Why
|
|
8
|
-
class CLI < Thor
|
|
9
|
+
class CLI < Bundler::Thor
|
|
9
10
|
# Allow running `bundle why <package>` without specifying the command name
|
|
10
11
|
default_task :why
|
|
11
12
|
|
data/lib/bundler/why/version.rb
CHANGED