Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
33fe1c7003 | ||
|
|
605b1e4c3f | ||
|
|
2170941383 | ||
|
|
63ef52185b | ||
|
|
74da03bc07 | ||
|
|
ada1b73c13 | ||
|
|
d196d18641 | ||
|
|
a360bf535a | ||
|
|
f5c6b6d40e |
@@ -1,10 +1,10 @@
|
||||
cff-version: 1.2.0
|
||||
message: Please use the following metadata when citing this project in your work.
|
||||
title: macOS
|
||||
abstract: Provides a shell based framework for automating the setup of a macOS machine.
|
||||
version: 16.0.2
|
||||
abstract: Shell scripts for automated macOS machine setup.
|
||||
version: 17.0.0
|
||||
license: Hippocratic-2.1
|
||||
date-released: 2023-04-02
|
||||
date-released: 2023-09-28
|
||||
authors:
|
||||
- family-names: Kuhlmann
|
||||
given-names: Brooke
|
||||
|
||||
5
Gemfile
5
Gemfile
@@ -4,6 +4,7 @@ ruby File.read(".ruby-version").strip
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "caliber", "~> 0.25"
|
||||
gem "git-lint", "~> 5.0"
|
||||
gem "caliber", "~> 0.35"
|
||||
gem "debug", "~> 1.8"
|
||||
gem "git-lint", "~> 6.0"
|
||||
gem "rake", "~> 13.0"
|
||||
|
||||
@@ -45,7 +45,7 @@ image::https://alchemists.io/images/screencasts/mac_os/cover.svg[Screencast,600,
|
||||
|
||||
== Requirements
|
||||
|
||||
. link:https://www.apple.com/macos/ventura[macOS Ventura]
|
||||
. link:https://www.apple.com/macos/sonoma[macOS Sonoma]
|
||||
. link:https://developer.apple.com/xcode[Xcode]
|
||||
|
||||
== Setup
|
||||
@@ -56,7 +56,7 @@ To install, run:
|
||||
----
|
||||
git clone https://github.com/bkuhlmann/mac_os.git
|
||||
cd mac_os
|
||||
git checkout 16.0.2
|
||||
git checkout 17.0.0
|
||||
----
|
||||
|
||||
== Usage
|
||||
|
||||
@@ -1,5 +1,20 @@
|
||||
= Versions
|
||||
|
||||
== 17.0.0 (2023-09-28)
|
||||
|
||||
* Added Debug gem - Brooke Kuhlmann
|
||||
* Updated to macOS Sonoma - Brooke Kuhlmann
|
||||
|
||||
== 16.0.4 (2023-06-19)
|
||||
|
||||
* Updated to Caliber 0.35.0 - Brooke Kuhlmann
|
||||
* Updated to Git Lint 6.0.0 - Brooke Kuhlmann
|
||||
* Updated to Refinements 11.0.0 - Brooke Kuhlmann
|
||||
|
||||
== 16.0.3 (2023-05-18)
|
||||
|
||||
* Updated to Caliber 0.30.0 - Brooke Kuhlmann
|
||||
|
||||
== 16.0.2 (2023-04-02)
|
||||
|
||||
* Fixed programs without extensions to install to user directory - Brooke Kuhlmann
|
||||
|
||||
@@ -5,7 +5,7 @@ set -o errexit
|
||||
set -o pipefail
|
||||
IFS=$'\n\t'
|
||||
|
||||
export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS Ventura.app/Contents/Resources/createinstallmedia"
|
||||
export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS Sonoma.app/Contents/Resources/createinstallmedia"
|
||||
export MAC_OS_BOOT_DISK_PATH="/Volumes/Untitled"
|
||||
export MAC_OS_WORK_PATH=/tmp/downloads
|
||||
export MAC_OS_CONFIG_PATH="../mac_os-config"
|
||||
|
||||
Reference in New Issue
Block a user