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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/mxup +6 -1
  3. data/lib/mxup/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80cc4fc00f9169954728b3fd51dd10a10907bdb677b74296cdf41d917f43df31
4
- data.tar.gz: 211e41d539697ee4bfd45bec00a9f099afff0e3d1e03267117f9300b9a15db9a
3
+ metadata.gz: 4531ad3aa556a0ca370760f6f2021bbbf4c9a111d404989cd6b24fb6e88f1e06
4
+ data.tar.gz: 93a8f02afacc7332e064124807f5ea47c400d0de44584c90fbcc18b7e8399134
5
5
  SHA512:
6
- metadata.gz: 60c48027b4fef4b0cac68c3eaeb79ff38cb5e19cae261ea60566868c19a7d07cecc60d53901eebe98832f32fe09927e684f5141e7a50e45f781e78c5b0867679
7
- data.tar.gz: 8ff5028e885b07030274300cc60447574d33ed8a6bb3778c4c19503d9be29d454b245e77274e92c350a8ee5b4ad1203ca8b16bdd4037ea52a6e5681dbe9e7871
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
- Mxup::CLI.new.run(ARGV) if __FILE__ == $PROGRAM_NAME
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Mxup
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mxup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladislav Saifulin