Skip to content

Commit

Permalink
OS X -> macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcQuaid committed Feb 19, 2017
1 parent 491d7f9 commit ff84067
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion app.json
Original file line number Diff line number Diff line change
@@ -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"],
Expand Down
4 changes: 2 additions & 2 deletions bin/strap.sh
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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."
Expand Down
2 changes: 1 addition & 1 deletion web/app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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:
<ol>
Expand Down

0 comments on commit ff84067

Please sign in to comment.