From 3158d024dff47a74faf729f9a2464ce86e609365 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Sat, 13 Jun 2020 15:47:00 -0600 Subject: [PATCH] Updated to Git Lint 1.0.0 It is necessary to drop Git Cop because it has been deprecated. [Git Lint](https://www.alchemists.io/projects/git-lint) is the new offical gem for analyzing Git commit quality. --- Gemfile | 2 +- Rakefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 9c6911c..2363a7c 100644 --- a/Gemfile +++ b/Gemfile @@ -3,4 +3,4 @@ source "https://rubygems.org" gem "rake", "~> 13.0" -gem "git-cop", "~> 4.0" +gem "git-lint", "~> 1.0" diff --git a/Rakefile b/Rakefile index 97d01e1..3dd9ae9 100644 --- a/Rakefile +++ b/Rakefile @@ -1,9 +1,9 @@ # frozen_string_literal: true begin - require "git/cop/rake/setup" + require "git/lint/rake/setup" rescue LoadError => error puts error.message end -task default: :git_cop +task default: :git_lint