hackmac 0.8.1 → 0.8.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: 1c4e84816963538116a40d14930813dc43f284196de0909c9685ac26133c8c8a
4
- data.tar.gz: 9cc12d81f2fb041279c7e50ee4787222ce2d51ed1461e086282278f9edd09f3c
3
+ metadata.gz: 726743b55191dc0e1d59f82fd0576c8c0f73fbd8534e0a069fa0fb9c23cbe635
4
+ data.tar.gz: 0306bfbf5c7b394e02aea8f010baa744983e152e3efd9b8e883be8f2aee704bc
5
5
  SHA512:
6
- metadata.gz: 715e90bca64b6cf603e5c886e69367f2f05941b08d5f5e8010cb93b66fbf1aa011909058e08361bf347463191baae2c691aedef220fcc3de484bb1ce91353a77
7
- data.tar.gz: 275adcacccf97fdca702fe4f77839373156371bc3de9445a13e06003fcecf2968738135bb0298260481e922b6b92cee03fb1de0be1cff217de0cfdb0e4530638
6
+ metadata.gz: fe2372198e67f2875f17581a9a6307ffb1c83d5c2d566d3278ea16858047205a2a653a2fe7c1ffca578c65a94898fff27fb38286bb366682e8e5987772f9a724
7
+ data.tar.gz: 2ff64a3cdd81acf533a8f07aa3171a0586a21122dd17f16aa8a7ab3ad9da620829b2481fab366ba98e79f424b1a55797f1c48d7a8b849717fbb09b2cb0eff489
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.1
1
+ 0.8.2
data/bin/efi CHANGED
@@ -180,9 +180,11 @@ when 'kexts'
180
180
  }.pack
181
181
  when 'kext'
182
182
  path = ARGV.shift or fail 'need kext dir'
183
+ path = Pathname.new(path).expand_path.to_s
183
184
  puts Kext.new(path: path)
184
185
  when 'kext_upgrade'
185
186
  path = ARGV.shift or fail 'need kext dir'
187
+ path = Pathname.new(path).expand_path.to_s
186
188
  force = ARGV.shift == 'force'
187
189
  Hackmac::KextUpgrader.new(path: path, config: $config, force: force).perform
188
190
  when 'list'
@@ -1,14 +1,14 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: hackmac 0.8.1 ruby lib
2
+ # stub: hackmac 0.8.2 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "hackmac".freeze
6
- s.version = "0.8.1"
6
+ s.version = "0.8.2"
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
10
10
  s.authors = ["Florian Frank".freeze]
11
- s.date = "2020-08-22"
11
+ s.date = "2020-12-13"
12
12
  s.description = "This ruby gem provides some useful tools for working with a Hackintosh.".freeze
13
13
  s.email = "flori@ping.de".freeze
14
14
  s.executables = ["gfxmon".freeze, "usb".freeze, "efi".freeze]
@@ -2,6 +2,7 @@ module Hackmac
2
2
  end
3
3
 
4
4
  require 'json'
5
+ require 'pathname'
5
6
  require 'tins/xt'
6
7
  require 'hackmac/version'
7
8
  require 'hackmac/plist'
@@ -1,6 +1,6 @@
1
1
  module Hackmac
2
2
  # Hackmac version
3
- VERSION = '0.8.1'
3
+ VERSION = '0.8.2'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hackmac
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-08-22 00:00:00.000000000 Z
11
+ date: 2020-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gem_hadar