From ff84067b79d0703b069ca16b0de381b093244586 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sun, 19 Feb 2017 17:01:06 +0000 Subject: [PATCH] OS X -> macOS --- README.md | 8 ++++---- app.json | 2 +- bin/strap.sh | 4 ++-- web/app.rb | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 342aecee9..58816ba6e 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # Strap -Strap is a script to bootstrap a minimal OS X development system. This does not assume you're doing Ruby/Rails/web development but installs the minimal set of software every OS X developer will want. +Strap is a script to bootstrap a minimal macOS development system. This does not assume you're doing Ruby/Rails/web development but installs the minimal set of software every macOS developer will want. ## Features - Disables Java in Safari (for better security) -- Enables the OS X screensaver password immediately (for better security) -- Enables the OS X application firewall (for better security) +- Enables the macOS screensaver password immediately (for better security) +- Enables the macOS application firewall (for better security) - Adds a `Found this computer?` message to the login screen (for machine recovery) - Enables full-disk encryption and saves the FileVault Recovery Key to the Desktop (for better security) - Installs the Xcode Command Line Tools (for compilers and Unix tools) @@ -14,7 +14,7 @@ Strap is a script to bootstrap a minimal OS X development system. This does not - Installs [Homebrew Bundle](https://github.com/Homebrew/homebrew-bundle) (for `bundler`-like `Brewfile` support) - Installs [Homebrew Services](https://github.com/Homebrew/homebrew-services) (for managing Homebrew-installed services) - Installs [Homebrew Cask](https://github.com/caskroom/homebrew-cask) (for installing graphical software) -- Installs the latest OS X software updates (for better security) +- Installs the latest macOS software updates (for better security) - Installs dotfiles from a user's `https://github.com/username/dotfiles` repository and runs `script/setup` to configure them. - Installs software from a user's `Brewfile` in their `https://github.com/username/homebrew-brewfile` repository or `.Brewfile` in their home directory. - A simple web application to set Git's name, email and GitHub token (needs to be authorized on any organizations you wish to access) diff --git a/app.json b/app.json index 7fb517461..ff90d7866 100644 --- a/app.json +++ b/app.json @@ -1,6 +1,6 @@ { "name": "Strap", - "description": "Bootstrap a minimal OS X development system", + "description": "Bootstrap a minimal macOS development system", "website": "https://github.com/mikemcquaid/strap", "repository": "https://github.com/mikemcquaid/strap", "keywords": ["ruby", "strap"], diff --git a/bin/strap.sh b/bin/strap.sh index b5c1c662c..9fa5abfe8 100755 --- a/bin/strap.sh +++ b/bin/strap.sh @@ -1,6 +1,6 @@ #!/bin/bash #/ Usage: bin/strap.sh [--debug] -#/ Install development dependencies on Mac OS X. +#/ Install development dependencies on macOS. set -e # Keep sudo timestamp updated while Strap is running. @@ -64,7 +64,7 @@ logn() { STRAP_STEP="$*"; printf -- "--> %s " "$*"; } logk() { STRAP_STEP=""; echo "OK"; } sw_vers -productVersion | grep $Q -E "^10.(9|10|11|12)" || { - abort "Run Strap on Mac OS X 10.9/10/11/12." + abort "Run Strap on macOS 10.9/10/11/12." } [ "$USER" = "root" ] && abort "Run Strap as yourself, not root." diff --git a/web/app.rb b/web/app.rb index 65ebd207b..03a4c00d1 100644 --- a/web/app.rb +++ b/web/app.rb @@ -38,7 +38,7 @@ @title = "Strap" @text = <<-EOS -Strap is a script to bootstrap a minimal OS X development system. This does not assume you're doing Ruby/Rails/web development but installs the minimal set of software every OS X developer will want. +Strap is a script to bootstrap a minimal macOS development system. This does not assume you're doing Ruby/Rails/web development but installs the minimal set of software every macOS developer will want. To Strap your system: