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 +4 -4
- data/VERSION +1 -1
- data/bin/efi +2 -0
- data/hackmac.gemspec +3 -3
- data/lib/hackmac.rb +1 -0
- data/lib/hackmac/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 726743b55191dc0e1d59f82fd0576c8c0f73fbd8534e0a069fa0fb9c23cbe635
|
|
4
|
+
data.tar.gz: 0306bfbf5c7b394e02aea8f010baa744983e152e3efd9b8e883be8f2aee704bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe2372198e67f2875f17581a9a6307ffb1c83d5c2d566d3278ea16858047205a2a653a2fe7c1ffca578c65a94898fff27fb38286bb366682e8e5987772f9a724
|
|
7
|
+
data.tar.gz: 2ff64a3cdd81acf533a8f07aa3171a0586a21122dd17f16aa8a7ab3ad9da620829b2481fab366ba98e79f424b1a55797f1c48d7a8b849717fbb09b2cb0eff489
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.8.
|
|
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'
|
data/hackmac.gemspec
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
|
2
|
-
# stub: hackmac 0.8.
|
|
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.
|
|
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-
|
|
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]
|
data/lib/hackmac.rb
CHANGED
data/lib/hackmac/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2020-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gem_hadar
|