0.0
No commit activity in last 3 years
No release in over 3 years
Small library to check if MIP doc has valid front matter
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.16
~> 10.0
~> 3.0

Runtime

 Project Readme

MIP validator

Gem

Validation rules

Mandatory fields

  • mip or mccp
  • title
  • author
  • status
  • created

Optional fields

  • discussions-to
  • layer
  • replaces
  • requires
  • resolution
  • review-period-end
  • superseded-by
  • updated

Mandatory values

  • status must be 'WIP', 'Proposed', 'Approved', 'Implemented', or 'Rejected'

Prerequisite

  • ruby

Setup

gem install mip_validator

Usage (command line)

mip_validator INPUT_FILES

Usage (as a lib)

require 'mip_validator

MipValidator::Runner.run

Example

$mip_validator  ~/src/MIPs/MIPS/*[0-9].md

total:1, valid:1, invalid:0, errors:0
	statuses: [["Implemented", 1]]

Running tests

bundle exec rspec

Releasing new gem

gem bump --version patch|minor|major
bundle exec rake release