mxup 1.0.0 → 1.0.1
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/bin/mxup +6 -1
- data/lib/mxup/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: 4531ad3aa556a0ca370760f6f2021bbbf4c9a111d404989cd6b24fb6e88f1e06
|
|
4
|
+
data.tar.gz: 93a8f02afacc7332e064124807f5ea47c400d0de44584c90fbcc18b7e8399134
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a3c824064e22953dd14a56a6cef28548b62d2b0d8d7bd0603d61070a89c602476436977d16da51e13e5511d0ca6249fb223784456407bae5c4e777e76efd334
|
|
7
|
+
data.tar.gz: 8df2f3eade22728fca31fcd384de5a7820358b0ec2d4512898b4c5424601bc60dddfae6a12845de428ee4a8a9e24dadbb48b25f725054268433b6452eb058a2f
|
data/bin/mxup
CHANGED
|
@@ -7,4 +7,9 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
7
7
|
|
|
8
8
|
require 'mxup'
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
# No `__FILE__ == $PROGRAM_NAME` guard: this file is only ever an entry point,
|
|
11
|
+
# and RubyGems' generated wrapper `load`s it with $PROGRAM_NAME pointing at the
|
|
12
|
+
# wrapper — so the guard was false for every `gem install` and the CLI silently
|
|
13
|
+
# did nothing. Homebrew's wrapper execs this file directly, which is why the
|
|
14
|
+
# formula kept working and hid it.
|
|
15
|
+
Mxup::CLI.new.run(ARGV)
|
data/lib/mxup/version.rb
CHANGED