Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c0b9be502b | ||
|
|
66cd8d988e | ||
|
|
955af0fc9e | ||
|
|
9730e0ce45 | ||
|
|
94373dd5e8 | ||
|
|
87282969de | ||
|
|
6a6286755e |
@@ -1 +1 @@
|
||||
2.5.0
|
||||
2.5.1
|
||||
|
||||
@@ -1,3 +1,12 @@
|
||||
# v4.1.0 (2018-04-01)
|
||||
|
||||
- Updated README license information.
|
||||
- Updated README screencast tutorial.
|
||||
- Updated to Circle CI 2.0.0 configuration.
|
||||
- Updated to Git Cop 2.2.0.
|
||||
- Updated to Ruby 2.5.1.
|
||||
- Removed Patreon badge from README.
|
||||
|
||||
# v4.0.0 (2018-01-01)
|
||||
|
||||
- Added Gemfile.lock to .gitignore.
|
||||
|
||||
2
Gemfile
2
Gemfile
@@ -3,4 +3,4 @@
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "rake", "~> 12.0"
|
||||
gem "git-cop", "~> 2.0"
|
||||
gem "git-cop", "~> 2.2"
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
# macOS
|
||||
|
||||
[](https://circleci.com/gh/bkuhlmann/mac_os)
|
||||
[](https://www.patreon.com/bkuhlmann)
|
||||
|
||||
Shell scripts for automated macOS machine setup.
|
||||
|
||||
@@ -58,7 +57,7 @@ the two projects are meant to be used:
|
||||
|
||||
## Screencast
|
||||
|
||||
[](https://asciinema.org/a/88971)
|
||||
[](https://asciinema.org/a/155990)
|
||||
|
||||
## Requirements
|
||||
|
||||
@@ -74,7 +73,7 @@ Current Version (stable):
|
||||
|
||||
git clone https://github.com/bkuhlmann/mac_os.git
|
||||
cd mac_os
|
||||
git checkout v4.0.0
|
||||
git checkout 4.1.0
|
||||
|
||||
Master Version (unstable):
|
||||
|
||||
@@ -177,7 +176,7 @@ Read [CONTRIBUTING](CONTRIBUTING.md) for details.
|
||||
|
||||
## License
|
||||
|
||||
Copyright (c) 2016 [Alchemists](https://www.alchemists.io).
|
||||
Copyright 2016 [Alchemists](https://www.alchemists.io).
|
||||
Read [LICENSE](LICENSE.md) for details.
|
||||
|
||||
## History
|
||||
|
||||
40
circle.yml
40
circle.yml
@@ -1,7 +1,33 @@
|
||||
dependencies:
|
||||
pre:
|
||||
- gem update --system
|
||||
- gem update bundler
|
||||
test:
|
||||
override:
|
||||
- bundle exec rake
|
||||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
working_directory: ~/project
|
||||
docker:
|
||||
- image: circleci/ruby:2.5
|
||||
environment:
|
||||
BUNDLE_JOBS: 3
|
||||
BUNDLE_RETRY: 3
|
||||
BUNDLE_PATH: vendor/bundle
|
||||
EDITOR: vim
|
||||
steps:
|
||||
- checkout
|
||||
|
||||
- type: cache-restore
|
||||
name: Bundler Cache Restore
|
||||
key: bundle-{{ checksum "Gemfile" }}
|
||||
|
||||
- run:
|
||||
name: Bundler Install
|
||||
command: |
|
||||
gem update --system
|
||||
bundle check || bundle install
|
||||
|
||||
- type: cache-save
|
||||
name: Bundler Cache Store
|
||||
key: bundle-{{ checksum "Gemfile" }}
|
||||
paths:
|
||||
- vendor/bundle
|
||||
|
||||
- run:
|
||||
name: Rake Run
|
||||
command: bundle exec rake
|
||||
|
||||
Reference in New Issue
Block a user