envygeeks/jekyll-post-tags

View on GitHub
Rakefile

Summary

Maintainability
Test Coverage
# Frozen-string-literal: true
# Copyright: 2017 - 2018 - MIT License
# Source: https://github.com/envygeeks/devfiles
# Author: Jordon Bedwell
# Encoding: utf-8

# --
# 🔖
# RSpec, MiniTest, Whatever.
# --
task default: [:spec]
task :spec do
  exec "script/test"
end
# --
# 🔖
# RSpec, MiniTest, Whatever.
# --
task :test do
  exec "script/test"
end
# --
# 🔖
# @see .rubocop.yml
# Rubocop.
# --
task :rubocop do
  exec "script/lint"
end
# --
# 🔖
# @see .rubocop.yml
# Rubocop.
# --
task :lint do
  exec "script/lint"
end

# --
Dir.glob("script/rake.d/*.rake").each do |v|
  load v
end