Compare commits
12 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7a9bb00877 | ||
|
|
2a01bac2b0 | ||
|
|
b2b4d49c52 | ||
|
|
0945809dc4 | ||
|
|
b270852fb5 | ||
|
|
4dc5f3d363 | ||
|
|
6169e0566e | ||
|
|
1686b0c98f | ||
|
|
3aa3ea59e7 | ||
|
|
ae40574cd7 | ||
|
|
5786fef97b | ||
|
|
efa421db4e |
1
.github/FUNDING.yml
vendored
Normal file
1
.github/FUNDING.yml
vendored
Normal file
@@ -0,0 +1 @@
|
||||
github: [bkuhlmann]
|
||||
@@ -1 +1 @@
|
||||
3.1.1
|
||||
3.1.2
|
||||
|
||||
@@ -2,9 +2,9 @@ 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: 15.0.2
|
||||
version: 15.0.5
|
||||
license: Hippocratic-2.1
|
||||
date-released: 2022-03-03
|
||||
date-released: 2022-05-07
|
||||
authors:
|
||||
- family-names: Kuhlmann
|
||||
given-names: Brooke
|
||||
|
||||
4
Gemfile
4
Gemfile
@@ -4,6 +4,6 @@ ruby File.read(".ruby-version").strip
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "caliber", "~> 0.2"
|
||||
gem "git-lint", "~> 3.2"
|
||||
gem "caliber", "~> 0.8"
|
||||
gem "git-lint", "~> 4.0"
|
||||
gem "rake", "~> 13.0"
|
||||
|
||||
@@ -56,7 +56,7 @@ To install, run:
|
||||
----
|
||||
git clone https://github.com/bkuhlmann/mac_os.git
|
||||
cd mac_os
|
||||
git checkout 15.0.2
|
||||
git checkout 15.0.5
|
||||
----
|
||||
|
||||
== Usage
|
||||
|
||||
@@ -1,5 +1,23 @@
|
||||
= Versions
|
||||
|
||||
== 15.0.5 (2022-05-07)
|
||||
|
||||
* Updated to Caliber 0.6.0 - Brooke Kuhlmann
|
||||
* Updated to Caliber 0.7.0 - Brooke Kuhlmann
|
||||
* Updated to Caliber 0.8.0 - Brooke Kuhlmann
|
||||
|
||||
== 15.0.4 (2022-04-17)
|
||||
|
||||
* Added GitHub sponsorship configuration - Brooke Kuhlmann
|
||||
* Updated to Caliber 0.4.0 - Brooke Kuhlmann
|
||||
* Updated to Caliber 0.5.0 - Brooke Kuhlmann
|
||||
* Updated to Git Lint 4.0.0 - Brooke Kuhlmann
|
||||
* Updated to Ruby 3.1.2 - Brooke Kuhlmann
|
||||
|
||||
== 15.0.3 (2022-03-16)
|
||||
|
||||
* Fixed Homebrew install to initially default to ZSH - Brooke Kuhlmann
|
||||
|
||||
== 15.0.2 (2022-03-03)
|
||||
|
||||
* Fixed Hippocratic License to be 2.1.0 version - Brooke Kuhlmann
|
||||
|
||||
@@ -139,6 +139,8 @@ export -f install_git_project
|
||||
install_homebrew() {
|
||||
if ! command -v brew > /dev/null; then
|
||||
/bin/bash -c "$(curl --location --fail --silent --show-error https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||
echo "eval \"($(get_homebrew_bin_root)/brew shellenv)\"" > $HOME/.zprofile
|
||||
eval "$($(get_homebrew_bin_root)/brew shellenv)"
|
||||
fi
|
||||
}
|
||||
export -f install_homebrew
|
||||
|
||||
Reference in New Issue
Block a user