KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
eip_validator
★ 8
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
embeddingStability
:
No description available.
castr
:
An R package to process CTD casts
react-observatory
:
🔭 Component-centric code-splitting for reducers and epics
leveldb-wrapper
:
Simple leveldb support library
syspeek-gs
:
SysPeek-GS is a simple CPU monitor for Gnome Shell inspired by SysPeek indicator
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
eip_validator
?
Download (.md)
# EIP validator ## Validation rules ### Mandatory fields - eip - title - author - type - category (conditional on type) - status - created ### Optional fields - discussions-to - layer - replaces - requires - resolution - review-period-end - superseded-by - updated ### Mandatory values - `status` must be 'Draft', 'Last Call', 'Accepted', 'Final', 'Active', 'Abandoned', 'Deferred', 'Rejected', or 'Superseded' ## Prerequisite - ruby ## Setup ``` gem install eip_validator ``` ## Usage (command line) ```ruby eip_validator INPUT_FILES ``` ## Usage (as a lib) ```ruby require 'eip_validator EipValidator::Runner.run ``` ### Example ``` $eip_validator ~/src/EIPs/EIPS/*[0-9].md Warning: /Users/makoto/src/EIPs/EIPS/eip-158.md unknown attribute 'superseded-by' for EipValidator::Validator. Warning: /Users/makoto/src/EIPs/EIPS/eip-615.md unknown attribute 'edited' for EipValidator::Validator. total:51, valid:49, invalid:0, errors:2 statuses: [["Final", 29], ["Draft", 17], ["Accepted", 2], ["Active", 1]] types: [["Meta", 6], ["Standards Track", 42], ["Standard Track", 1]] categories: [[nil, 6], ["Core", 23], ["ERC", 11], ["Interface", 5], ["Networking", 4]] layers: [[nil, 47], ["Applications", 1], ["Process", 1]] ``` ## Running tests ``` bundle exec rspec ``` ## Releasing new gem ``` gem bump --version patch|minor|major bundle exec rake release ```