contracter 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/contracter.gemspec +2 -2
- data/lib/contracter/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d9ef40c050fa55e6ac95af524a389cc1edc190a
|
4
|
+
data.tar.gz: 4c989f99113083f18c1f5bbdce7ca8a057959f7a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e30e4992bb09d8dd9bc6562f260cefc6fe91fbc78846985c8a65c264eff51cbd7ff0f033ad4c104b475095615e0a44356b3fd3355fb6cf10a3015c76cd91f099
|
7
|
+
data.tar.gz: b903bb1d4ee914c75f9132a1e0978c252ce6cce7221dbebced141202f684368a2ab83dcfa816fc385ed86b3b79ff04da96d771b64a87a58f2bd2a5f8449f241c
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Contracter
|
2
2
|
|
3
|
-
Contracter is a quality of life gem that provides a simple Domain Specific Language for anyone to use in generating contracts for clients and services. Contracts are generated in a Markdown format. The default template is my personal contract template based on the popular open-source contract available [here](https://stuffandnonsense.co.uk/projects/contract-killer/).
|
3
|
+
Contracter is a quality of life gem that provides a simple Domain Specific Language for anyone to use in generating contracts for clients and services from templates. Contracts are generated in a Markdown format by default. The default template is my personal contract template based on the popular open-source contract available [here](https://stuffandnonsense.co.uk/projects/contract-killer/).
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
data/contracter.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Remi Gelinas"]
|
10
10
|
spec.email = ["remigelinas1@gmail.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{A quality of life gem for contract generation.}
|
13
|
-
spec.description = %q{A quality of life gem that provides a simple DSL for generating contracts.}
|
12
|
+
spec.summary = %q{A quality of life gem for templated contract generation.}
|
13
|
+
spec.description = %q{A quality of life gem that provides a simple DSL for generating contracts from templates.}
|
14
14
|
spec.homepage = "https://github.com/remi-gelinas/contracter"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
data/lib/contracter/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: contracter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Remi Gelinas
|
@@ -52,7 +52,8 @@ dependencies:
|
|
52
52
|
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
|
-
description: A quality of life gem that provides a simple DSL for generating contracts
|
55
|
+
description: A quality of life gem that provides a simple DSL for generating contracts
|
56
|
+
from templates.
|
56
57
|
email:
|
57
58
|
- remigelinas1@gmail.com
|
58
59
|
executables: []
|
@@ -93,5 +94,5 @@ rubyforge_project:
|
|
93
94
|
rubygems_version: 2.4.5.1
|
94
95
|
signing_key:
|
95
96
|
specification_version: 4
|
96
|
-
summary: A quality of life gem for contract generation.
|
97
|
+
summary: A quality of life gem for templated contract generation.
|
97
98
|
test_files: []
|