0.0
Low commit activity in last 3 years
Small library to check if ECIP 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

ECIP validator

Configuration

Validation rules are implemented in the code at ./lib/ecip_validator/validator.rb.

Setup

gem install ecip_validator

Usage (command line)

ecip_validator INPUT_FILES

Usage (as a lib)

require 'ecip_validator'

EcipValidator::Runner.run

Example

$ ecip_validator  _specs/*.md

Running tests

bundle exec rspec

Releasing new gem

gem install bump
bump current
bump patch|minor|major # literally, ie. 'bump minor' or 'bump patch'
bundle exec rake release