Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
18ff862a4a | ||
|
|
c6ef97a88b | ||
|
|
67a17a0113 | ||
|
|
e5f2051412 | ||
|
|
bbdedb1a56 | ||
|
|
cd595f1bd1 | ||
|
|
e89a05fcbf | ||
|
|
048908f2ba |
@@ -1 +1 @@
|
|||||||
2.4.1
|
2.4.2
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
# v3.0.0 (2017-10-01)
|
||||||
|
|
||||||
|
- Fixed table of contents.
|
||||||
|
- Updated boot disk creation to use macOS High Sierra.
|
||||||
|
- Updated gem dependencies.
|
||||||
|
- Updated to Git Cop 1.6.0.
|
||||||
|
- Updated to Ruby 2.4.2.
|
||||||
|
|
||||||
# v2.2.0 (2017-07-16)
|
# v2.2.0 (2017-07-16)
|
||||||
|
|
||||||
- Added Git Cop support.
|
- Added Git Cop support.
|
||||||
|
|||||||
2
Gemfile
2
Gemfile
@@ -3,4 +3,4 @@
|
|||||||
source "https://rubygems.org"
|
source "https://rubygems.org"
|
||||||
|
|
||||||
gem "rake", "~> 12.0"
|
gem "rake", "~> 12.0"
|
||||||
gem "git-cop", "~> 1.3"
|
gem "git-cop", "~> 1.6"
|
||||||
|
|||||||
22
Gemfile.lock
22
Gemfile.lock
@@ -2,27 +2,27 @@ GEM
|
|||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
equatable (0.5.0)
|
equatable (0.5.0)
|
||||||
git-cop (1.3.0)
|
git-cop (1.6.1)
|
||||||
pastel (~> 0.7)
|
pastel (~> 0.7)
|
||||||
refinements (~> 4.1)
|
refinements (~> 4.2)
|
||||||
runcom (~> 1.1)
|
runcom (~> 1.3)
|
||||||
thor (~> 0.19)
|
thor (~> 0.20)
|
||||||
pastel (0.7.1)
|
pastel (0.7.1)
|
||||||
equatable (~> 0.5.0)
|
equatable (~> 0.5.0)
|
||||||
tty-color (~> 0.4.0)
|
tty-color (~> 0.4.0)
|
||||||
rake (12.0.0)
|
rake (12.1.0)
|
||||||
refinements (4.1.0)
|
refinements (4.2.0)
|
||||||
runcom (1.1.0)
|
runcom (1.3.0)
|
||||||
refinements (~> 4.1)
|
refinements (~> 4.2)
|
||||||
thor (0.19.4)
|
thor (0.20.0)
|
||||||
tty-color (0.4.2)
|
tty-color (0.4.2)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
git-cop (~> 1.3)
|
git-cop (~> 1.6)
|
||||||
rake (~> 12.0)
|
rake (~> 12.0)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
1.15.1
|
1.15.4
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ the two projects are meant to be used:
|
|||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
0. [macOS Sierra](https://www.apple.com/macos) (with latest software updates applied)
|
0. [macOS High Sierra](https://www.apple.com/macos) (with latest software updates applied)
|
||||||
0. [Xcode](https://developer.apple.com/xcode) (with accepted license agreement)
|
0. [Xcode](https://developer.apple.com/xcode) (with accepted license agreement)
|
||||||
|
|
||||||
## Setup
|
## Setup
|
||||||
@@ -74,7 +74,7 @@ Current Version (stable):
|
|||||||
|
|
||||||
git clone https://github.com/bkuhlmann/mac_os.git
|
git clone https://github.com/bkuhlmann/mac_os.git
|
||||||
cd mac_os
|
cd mac_os
|
||||||
git checkout v2.2.0
|
git checkout v3.0.0
|
||||||
|
|
||||||
Master Version (unstable):
|
Master Version (unstable):
|
||||||
|
|
||||||
@@ -171,7 +171,7 @@ Read [Semantic Versioning](http://semver.org) for details. Briefly, it means:
|
|||||||
Please note that this project is released with a [CODE OF CONDUCT](CODE_OF_CONDUCT.md). By
|
Please note that this project is released with a [CODE OF CONDUCT](CODE_OF_CONDUCT.md). By
|
||||||
participating in this project you agree to abide by its terms.
|
participating in this project you agree to abide by its terms.
|
||||||
|
|
||||||
# Contributions
|
## Contributions
|
||||||
|
|
||||||
Read [CONTRIBUTING](CONTRIBUTING.md) for details.
|
Read [CONTRIBUTING](CONTRIBUTING.md) for details.
|
||||||
|
|
||||||
|
|||||||
@@ -11,9 +11,9 @@ set -o pipefail
|
|||||||
IFS=$'\n\t'
|
IFS=$'\n\t'
|
||||||
|
|
||||||
# Globals
|
# Globals
|
||||||
export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS Sierra.app/Contents/Resources/createinstallmedia"
|
export MAC_OS_BOOT_DISK_CREATOR="/Applications/Install macOS High Sierra.app/Contents/Resources/createinstallmedia"
|
||||||
export MAC_OS_BOOT_DISK_PATH="/Volumes/Untitled"
|
export MAC_OS_BOOT_DISK_PATH="/Volumes/Untitled"
|
||||||
export MAC_OS_INSTALLER_PATH="/Applications/Install macOS Sierra.app"
|
export MAC_OS_INSTALLER_PATH="/Applications/Install macOS High Sierra.app"
|
||||||
export MAC_OS_WORK_PATH=/tmp/downloads
|
export MAC_OS_WORK_PATH=/tmp/downloads
|
||||||
export MAC_OS_CONFIG_PATH="../mac_os-config"
|
export MAC_OS_CONFIG_PATH="../mac_os-config"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user