mac_setup 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/exe/mac_setup +1 -1
- data/lib/mac_setup/plugin.rb +1 -1
- data/lib/mac_setup/plugins/keybase.rb +4 -1
- data/lib/mac_setup/shell.rb +5 -1
- data/lib/mac_setup/version.rb +1 -1
- data/lib/mac_setup.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: 958d74da43b6b9b23c98203dfce55023ae821ead
|
4
|
+
data.tar.gz: f593796bcc578be1cc5db12693e9e0a9ef3f9955
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: adf67dfc0fab520beeec3e627f922f4e8b356fd137847e69d2152bcab9de337fece85057ab21e3b7e3b6248de4228c85d4081465c2cff696aa01c227f44bba52
|
7
|
+
data.tar.gz: 03b4895bfe6074bf8aa1ca9cfa3d239e53419e26be06c90fcb22a975a9d2e12ba3e611af5dd16d09e4870c10f273e10f2d5bcb445d199cc83913e6b058d8725b
|
data/exe/mac_setup
CHANGED
data/lib/mac_setup/plugin.rb
CHANGED
@@ -22,11 +22,14 @@ module MacSetup
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def log_in(username)
|
25
|
-
|
25
|
+
# Using backticks doesn't work with the keybase login process
|
26
|
+
Shell.raw("keybase login #{username}")
|
26
27
|
end
|
27
28
|
|
28
29
|
# TODO: Investigate making this work with kext permissions
|
29
30
|
def install_volume
|
31
|
+
Shell.run("keybase install --components=fuse")
|
32
|
+
Shell.ask("Allow the extension in system preferences")
|
30
33
|
Shell.run("keybase install --components=helper,fuse,mountdir,kbfs")
|
31
34
|
end
|
32
35
|
|
data/lib/mac_setup/shell.rb
CHANGED
data/lib/mac_setup/version.rb
CHANGED
data/lib/mac_setup.rb
CHANGED
@@ -8,6 +8,7 @@ require "mac_setup/homebrew_runner"
|
|
8
8
|
require "mac_setup/secrets"
|
9
9
|
require "mac_setup/homebrew_installer"
|
10
10
|
require "mac_setup/git_repo_installer"
|
11
|
+
require "mac_setup/symlink_path_builder"
|
11
12
|
require "mac_setup/symlink_installer"
|
12
13
|
require "mac_setup/plugin"
|
13
14
|
require "mac_setup/plugins/keybase"
|
@@ -32,8 +33,8 @@ module MacSetup
|
|
32
33
|
|
33
34
|
class << self
|
34
35
|
def bootstrap(dotfiles_repo)
|
35
|
-
GitRepoInstaller.install_repo(dotfiles_repo, dotfiles_path)
|
36
36
|
HomebrewInstaller.run
|
37
|
+
GitRepoInstaller.install_repo(dotfiles_repo, dotfiles_path)
|
37
38
|
|
38
39
|
config = Configuration.new(DEFAULT_CONFIG_PATH)
|
39
40
|
|