doc_contract 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +37 -0
- data/lib/doc_contract/version.rb +1 -1
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19b2e7620eb38e143f377e284ef114d73d8ecaded35f8922d0b75e7c0928f6a5
|
4
|
+
data.tar.gz: 57633ce96bae4ced8db47c6e2a0071b7447b61ecc145358e7102e4970072e8e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f492dd061c367f22446893d10173575757f9720d003b43e366f8cbbddaef5bb2166c171eeb5cdfdbec0c4686cc3e61a6d4388b387479fbe22f41c4a61f2017ef
|
7
|
+
data.tar.gz: fab2d0c24a47f34cf2461e7553ff368a685ee346aaa50c45cb6f3a95fe32ef826a200b526fbd8164bb1310db6e7b5d700a18f3918fc181df73401fe4c202bb9a
|
data/README.md
CHANGED
@@ -94,6 +94,8 @@ a VAT of 21%.
|
|
94
94
|
And more contract stuff
|
95
95
|
```
|
96
96
|
|
97
|
+
NOTE: the `to_words` handlebars helper uses the (numbers\_and\_words)[https://github.com/kslazarev/numbers\_and\_words] gem.
|
98
|
+
|
97
99
|
## Installation
|
98
100
|
|
99
101
|
### Install the system dependencies
|
@@ -184,8 +186,43 @@ To change for example the icon, see the options at the [fomantic-ui](https://fom
|
|
184
186
|
|
185
187
|
### Screenshot
|
186
188
|
![Edit template scnreenshot](/spec/dummy/public/DocContract-template-edit.png)
|
189
|
+
|
187
190
|
## Contributing
|
191
|
+
There are many ways to contribute. Here some example steps that should work.
|
192
|
+
|
193
|
+
### 1. Fork the repository
|
194
|
+
Go to the original repository at https://gitlab.com/benja-2/doc\_contract and [fork](https://gitlab.com/benja-2/doc_contract/-/forks/new) the project.
|
195
|
+
Then `git clone` your code on your local computer.
|
196
|
+
|
197
|
+
If you are in the git repository directory you can tell your system to use the local code when actually the
|
198
|
+
gitlab repository is specified for faster debugging. To achieve this type:
|
199
|
+
|
200
|
+
```bash
|
201
|
+
bundle config local.doc_contract .
|
202
|
+
```
|
203
|
+
|
204
|
+
### 2. Add your forked codebase to a project
|
205
|
+
To start from zero, create a new rails (> 7) project and add the `doc_contract` gem configured to use `gitlab` as a base:
|
206
|
+
|
207
|
+
```bash
|
208
|
+
rails new my_doc_contract_project
|
209
|
+
cd my_doc_contract_project
|
210
|
+
```
|
211
|
+
|
212
|
+
Then in the `Gemfile`
|
213
|
+
```ruby
|
214
|
+
git_source(:gitlab) do |repo_name|
|
215
|
+
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
|
216
|
+
"git@gitlab.com:#{repo_name}.git"
|
217
|
+
end
|
218
|
+
|
219
|
+
gem 'doc_contract', gitlab: '<your gitlab name>/doc_contract', branch: :master
|
220
|
+
```
|
188
221
|
Contribution directions go here.
|
189
222
|
|
223
|
+
## CHANGELOG
|
224
|
+
The CHANGELOG can be found using
|
225
|
+
[CHANGELOG.md](/CHANGELOG.md)
|
226
|
+
|
190
227
|
## License
|
191
228
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/lib/doc_contract/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: doc_contract
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Benjamin ter Kuile
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-09-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -164,7 +164,10 @@ dependencies:
|
|
164
164
|
- - ">="
|
165
165
|
- !ruby/object:Gem::Version
|
166
166
|
version: '0'
|
167
|
-
description:
|
167
|
+
description: |-
|
168
|
+
This is a mountable rails engine to create nice and easy contracts based on pandoc (which uses
|
169
|
+
LaTeX) that includes the GUI and can be used to include the relevant contracts to the system itself
|
170
|
+
or to simply have a WebGUI to make contract templates and instances
|
168
171
|
email:
|
169
172
|
- bterkuile@gmail.com
|
170
173
|
executables: []
|
@@ -259,7 +262,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
259
262
|
- !ruby/object:Gem::Version
|
260
263
|
version: '0'
|
261
264
|
requirements: []
|
262
|
-
rubygems_version: 3.3.
|
265
|
+
rubygems_version: 3.3.7
|
263
266
|
signing_key:
|
264
267
|
specification_version: 4
|
265
268
|
summary: Create nice and easy contracts based on pandoc
|