Tweaks, add rvm add other things to bootstrap.

This commit is contained in:
2014-11-09 22:18:16 -08:00
parent ab33ef7a58
commit b775752068
10 changed files with 65 additions and 43 deletions

View File

@@ -12,6 +12,7 @@ def all(ctx):
cider_install(ctx)
enable_access_for_assistive_devices(ctx)
enable_hyper(ctx)
install_rvm(ctx)
osx_config(ctx)
@@ -135,6 +136,10 @@ def get_command_line_tools(ctx):
if not util.command_exists('gcc'):
ctx.run('xcode-select --install')
@ctask
def install_rvm(ctx):
ctx.run('\curl -sSL https://get.rvm.io | bash -s stable')
@ctask
def enable_locate(ctx):
ctx.run('sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.locate.plist')