Compare commits

...

7 Commits
4.0.0 ... 4.1.0

Author SHA1 Message Date
Brooke Kuhlmann
c0b9be502b Added version release changes. 2018-04-01 10:56:35 -06:00
Brooke Kuhlmann
66cd8d988e Updated to Git Cop 2.2.0.
[Changes](https://is.gd/OEDYpE).
2018-04-01 09:07:07 -06:00
Brooke Kuhlmann
955af0fc9e Updated to Ruby 2.5.1.
[Details](https://is.gd/hSEMaL).
2018-03-30 17:32:36 -06:00
Brooke Kuhlmann
9730e0ce45 Updated to Circle CI 2.0.0 configuration.
Uses latest configuration version in order to not be caught off-guard
if/when they drop v1.0.0 support.

[Details](https://circleci.com/docs/2.0).
2018-01-28 07:44:33 -07:00
Brooke Kuhlmann
94373dd5e8 Updated README screencast tutorial.
Updated to use latest version of software (not that the features have
changed much).
2018-01-07 14:14:22 -07:00
Brooke Kuhlmann
87282969de Updated README license information.
Simplified the text by removing the "(c)" as the use of "Copyright" is
good enough.

[ci skip]
2018-01-06 15:00:50 -07:00
Brooke Kuhlmann
6a6286755e Removed Patreon badge from README.
No longer planning to use this service.

[ci skip]
2018-01-02 20:25:45 -07:00
5 changed files with 47 additions and 13 deletions

View File

@@ -1 +1 @@
2.5.0 2.5.1

View File

@@ -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) # v4.0.0 (2018-01-01)
- Added Gemfile.lock to .gitignore. - Added Gemfile.lock to .gitignore.

View File

@@ -3,4 +3,4 @@
source "https://rubygems.org" source "https://rubygems.org"
gem "rake", "~> 12.0" gem "rake", "~> 12.0"
gem "git-cop", "~> 2.0" gem "git-cop", "~> 2.2"

View File

@@ -1,7 +1,6 @@
# macOS # macOS
[![Circle CI Status](https://circleci.com/gh/bkuhlmann/mac_os.svg?style=svg)](https://circleci.com/gh/bkuhlmann/mac_os) [![Circle CI Status](https://circleci.com/gh/bkuhlmann/mac_os.svg?style=svg)](https://circleci.com/gh/bkuhlmann/mac_os)
[![Patreon](https://img.shields.io/badge/patreon-donate-brightgreen.svg)](https://www.patreon.com/bkuhlmann)
Shell scripts for automated macOS machine setup. Shell scripts for automated macOS machine setup.
@@ -58,7 +57,7 @@ the two projects are meant to be used:
## Screencast ## Screencast
[![asciicast](https://asciinema.org/a/88971.png)](https://asciinema.org/a/88971) [![asciicast](https://asciinema.org/a/155990.png)](https://asciinema.org/a/155990)
## Requirements ## Requirements
@@ -74,7 +73,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 v4.0.0 git checkout 4.1.0
Master Version (unstable): Master Version (unstable):
@@ -177,7 +176,7 @@ Read [CONTRIBUTING](CONTRIBUTING.md) for details.
## License ## License
Copyright (c) 2016 [Alchemists](https://www.alchemists.io). Copyright 2016 [Alchemists](https://www.alchemists.io).
Read [LICENSE](LICENSE.md) for details. Read [LICENSE](LICENSE.md) for details.
## History ## History

View File

@@ -1,7 +1,33 @@
dependencies: version: 2
pre: jobs:
- gem update --system build:
- gem update bundler working_directory: ~/project
test: docker:
override: - image: circleci/ruby:2.5
- bundle exec rake 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