0.0
No release in over 3 years
Low commit activity in last 3 years
metanorma-vg lets you write Vita Green standards in Metanorma syntax. This gem is in active development. Formerly known as metanorma-vsd.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 9.1
~> 2.14
~> 12.0
~> 3.6
~> 0.50
= 2.4.0
~> 0.15
~> 0.9

Runtime

~> 1.2.0
 Project Readme

Metanorma for Vita Green: Metanorma processor for Vita Green Standard Documents

Gem Version Build Status Code Climate Pull Requests Commits since latest

Formerly known as metanorma-vsd.

THIS GEM IS FROZEN AND WILL NO LONGER BE ACTIVELY MAINTAINED

Functionality

This gem processes Asciidoctor documents following a template for generating Vita Green standards.

The gem currently inherits from the https://github.com/riboseinc/asciidoctor-iso gem, and aligns closely to it. Refer to https://metanorma.com for guidance.

Usage

The preferred way to invoke this gem is via the metanorma script:

$ metanorma --type vg a.adoc                   # output HTML and DOC
$ metanorma --type vg --extensions html a.adoc # output just HTML
$ metanorma --type vg --extensions doc a.adoc  # output just DOC
$ metanorma --type vg --extensions xml a.adoc  # output Metanorma XML

The gem translates the document into Metanorma XML format, and then validates its output against the Vita Green Metanorma XML document model; errors are reported to console against the XML, and are intended for users to check that they have provided all necessary components of the document.

The gem then converts the XML into output formats such as HTML and PDF.

Installation

If you are using a Mac, the https://github.com/riboseinc/metanorma-macos-setup repository has instructions on setting up your machine to run Metanorma scripts such as this one. You need only run the following in a Terminal console:

$ bash <(curl -s https://raw.githubusercontent.com/riboseinc/metanorma-macos-setup/master/metanorma-setup)
$ gem install metanorma-vg

Document Attributes

The gem relies on Asciidoctor document attributes to provide necessary metadata about the document. These include:

:edition:

The document edition

:revdate:

The date the document was last updated

:copyright-year:

The year which will be claimed as when the copyright for the document was issued

:title:

The main component of the English title of the document (mandatory). (The first line of the AsciiDoc document, which contains the title introduced with =, is ignored)

:doctype:

The document type (see VSD deliverables: The different types of VSD publications) (mandatory). The permitted types are:

  • policy-and-procedures

  • best-practices

  • supporting-document

  • report

  • legal

  • directives

  • proposal

  • standard

:status:`

The document status. The permitted types are: proposal, working-draft, committee-draft, draft-standard, final-draft, published, withdrawn.

:committee:

The name of the relevant VSD committee (mandatory)

:committee-type:

The type of the relevant VSD committee (mandatory): technical or provisional.

:language:

The language of the document (only en for now) (mandatory)

:security:

Security level classification, e.g., "confidential", "client confidential"

The attribute :draft:, if present, includes review notes in the XML output; these are otherwise suppressed.

Data Models

The Vita Green Standard Document format is an instance of the StandardDocument model. Details of this general model can be found on its page.