README.md in proforma-extended-evaluator-1.0.0.pre.alpha vs README.md in proforma-extended-evaluator-1.0.0
- old
+ new
@@ -1,10 +1,10 @@
# Proforma Extended Evaluator
[![Gem Version](https://badge.fury.io/rb/proforma-extended-evaluator.svg)](https://badge.fury.io/rb/proforma-extended-evaluator) [![Build Status](https://travis-ci.org/bluemarblepayroll/proforma-extended-evaluator.svg?branch=master)](https://travis-ci.org/bluemarblepayroll/proforma-extended-evaluator) [![Maintainability](https://api.codeclimate.com/v1/badges/79e66b596906f633bc95/maintainability)](https://codeclimate.com/github/bluemarblepayroll/proforma-extended-evaluator/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/79e66b596906f633bc95/test_coverage)](https://codeclimate.com/github/bluemarblepayroll/proforma-extended-evaluator/test_coverage) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
-The core Proforma library intentionally ships with a very weak evaluator. Custom text templating and value resolution is not part of the core library's domain. This library fills that void. The goals of this library are to provide:
+The core [Proforma](https://github.com/bluemarblepayroll/proforma) library intentionally ships with a very weak evaluator. Custom text templating and value resolution is not part of the core library's domain. This library fills that void. The goals of this library are to provide:
1. Nested value resolution using dot-notation: `demographics.contact.first_name`
2. Indifferent object types for value resolution: Hash, OpenStruct, any Object subclass, etc.
3. Rich text templating: `{demo.last}, {demo.first} {demo.middle}`
4. Customizable formatting:
@@ -32,12 +32,12 @@
## Examples
### Connecting to Proforma Rendering Pipeline
-To use this plugin within Proforma:
+To use this plugin within [Proforma](https://github.com/bluemarblepayroll/proforma):
-1. Install Proforma
+1. Install [Proforma](https://github.com/bluemarblepayroll/proforma)
2. Install this library
3. Require both libraries
4. Pass in an instance of Proforma::ExtendedEvaluator into the Proforma#render method
````ruby