gem-local 0.1.5 → 0.1.6
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/gem-local.gemspec +1 -1
- data/lib/rubygems/commands/local_command.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e36d6e61332c32a6b59f16b65dc5c3bee0db3bf7
|
|
4
|
+
data.tar.gz: 2647fd75bda2cd6a431259530fe774da97f7265f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17c01ff9231ba646576c7d1e55a128921a108ec9be37c878ee783a4f26a34c50ab2244fbb1494b3b4933f47ff7fc198d3368036433b92e2ee8cf9dec9394d3d4
|
|
7
|
+
data.tar.gz: d6854207619b7b2b33c531f2ce9edb62547a6de85adb41791f99e6926f6b7a054de51c7873ce2fb72c4d4802a48503f25c12665194684d84124224c8f2aaf564
|
data/gem-local.gemspec
CHANGED
|
@@ -94,6 +94,7 @@ help [cmd] | Displays help information.
|
|
|
94
94
|
arity_error __method__
|
|
95
95
|
end
|
|
96
96
|
end
|
|
97
|
+
alias_method :config, :status
|
|
97
98
|
alias_method :show, :status
|
|
98
99
|
|
|
99
100
|
def remove(name = nil, *args)
|
|
@@ -219,7 +220,7 @@ private
|
|
|
219
220
|
description: "Displays the current local gem configuration, or the specified gem's config.",
|
|
220
221
|
usage: "gem local status [gem]",
|
|
221
222
|
arguments: "takes zero or one arguments",
|
|
222
|
-
aliases: %w[show],
|
|
223
|
+
aliases: %w[config show],
|
|
223
224
|
},
|
|
224
225
|
"remove" => {
|
|
225
226
|
description: "Remove a local gem from `gem local` management.",
|