Compare commits

...

5 Commits

Author SHA1 Message Date
Brooke Kuhlmann
0bafd0ea25 Added version release notes 2023-02-05 10:43:52 -07:00
Brooke Kuhlmann
045a254219 Updated to Caliber 0.25.0
[Details](https://www.alchemists.io/projects/caliber/versions).
2023-02-05 10:28:38 -07:00
Brooke Kuhlmann
113f3b88f5 Added Rake binstub
Necessary to reduce typing and be consistent with existing binstub use.
2023-01-22 09:31:11 -07:00
Brooke Kuhlmann
4b77ecefd5 Updated to Git Lint 5.0.0
[Details](https://www.alchemists.io/projects/git-lint/versions).
2022-12-27 17:50:49 -07:00
Brooke Kuhlmann
fc2cca07cf Updated to Caliber 0.21.0
[Details](https://www.alchemists.io/projects/caliber/versions).
2022-12-27 17:32:46 -07:00
6 changed files with 21 additions and 8 deletions

View File

@@ -2,9 +2,9 @@ cff-version: 1.2.0
message: Please use the following metadata when citing this project in your work. message: Please use the following metadata when citing this project in your work.
title: macOS title: macOS
abstract: Provides a shell based framework for automating the setup of a macOS machine. abstract: Provides a shell based framework for automating the setup of a macOS machine.
version: 16.0.0 version: 16.0.1
license: Hippocratic-2.1 license: Hippocratic-2.1
date-released: 2022-12-25 date-released: 2023-02-05
authors: authors:
- family-names: Kuhlmann - family-names: Kuhlmann
given-names: Brooke given-names: Brooke

View File

@@ -4,6 +4,6 @@ ruby File.read(".ruby-version").strip
source "https://rubygems.org" source "https://rubygems.org"
gem "caliber", "~> 0.16" gem "caliber", "~> 0.25"
# gem "git-lint", "~> 4.0" gem "git-lint", "~> 5.0"
gem "rake", "~> 13.0" gem "rake", "~> 13.0"

View File

@@ -56,7 +56,7 @@ To install, run:
---- ----
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 16.0.0 git checkout 16.0.1
---- ----
== Usage == Usage

View File

@@ -1,9 +1,9 @@
# frozen_string_literal: true # frozen_string_literal: true
# require "git/lint/rake/setup" require "git/lint/rake/register"
require "rubocop/rake_task" require "rubocop/rake_task"
Git::Lint::Rake::Register.call
RuboCop::RakeTask.new RuboCop::RakeTask.new
# task default: %i[git_lint rubocop] task default: %i[git_lint rubocop]
task default: %i[rubocop]

View File

@@ -1,5 +1,12 @@
= Versions = Versions
== 16.0.1 (2023-02-05)
* Added Rake binstub - Brooke Kuhlmann
* Updated to Caliber 0.21.0 - Brooke Kuhlmann
* Updated to Caliber 0.25.0 - Brooke Kuhlmann
* Updated to Git Lint 5.0.0 - Brooke Kuhlmann
== 16.0.0 (2022-12-25) == 16.0.0 (2022-12-25)
* Fixed Node installer to detect Node and version - Brooke Kuhlmann * Fixed Node installer to detect Node and version - Brooke Kuhlmann

6
bin/rake Executable file
View File

@@ -0,0 +1,6 @@
#! /usr/bin/env ruby
# frozen_string_literal: true
require "bundler/setup"
load Gem.bin_path "rake", "rake"