multiformat-cv 0.0.3 → 0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a643b32c69c2ac50f666e61501e37af3f9b9d683
4
- data.tar.gz: 490e3e5358ffa569d44897d9568fa3fc4be4fa1e
3
+ metadata.gz: fb6848449162f50e5789eee60cd365254ee5c5d1
4
+ data.tar.gz: 2c59c1f728b2a812af93c2d89fcf7ba690258605
5
5
  SHA512:
6
- metadata.gz: 1aeac7364aa79a92cf5c89f152e527dcea9eda4ef5d78066937737901a8418dcd25c53eb077ec45881773c83c8502faef156837878708364f9c42c040ffcb3fd
7
- data.tar.gz: eb735e434860c919026f7dd3c6bfa51e89a60e688b6d84b4311b25753ce49945e9cd4b2d4982bae4c6a287e98057afbd956e2e62f33a7159e719e44197236397
6
+ metadata.gz: abe7dfeb1ff955dc1b08744837e6ccb9a29e6f8e1ad6577d683ed808a562a7681d19de2a807234aff914cc54f2bc0f04a916d14380e4c1d318243878a2eec734
7
+ data.tar.gz: e9a943bf7da55437b8b84b672a62b9c902887c3662541c6b277725eae8e04e8db1cea37259f803df2ca3c20c1542f850c0feb513570b91112313d21689782e39
data/README.md CHANGED
@@ -1,8 +1,34 @@
1
1
  # Multiformat CV
2
2
 
3
- Multi-format CV generator from YAML files
3
+ Multi-format CV generator from YAML files and ERB templates.
4
4
 
5
- ## TODO
5
+ ## Install
6
6
 
7
- * [x] Add template engine for outputs
8
- * [x] Add parameter for input data directory
7
+ ```bash
8
+ $ gem install multiformat-cv
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ Taking this repository's `sample` directory as a starting point, we can
14
+ generate the CV as follows:
15
+
16
+ ```bash
17
+ $ tree
18
+ .
19
+ ├── data
20
+ │   ├── contact.yml
21
+ │   ├── jobs.yml
22
+ │   └── personal.yml
23
+ └── onepager
24
+ ├── cv.css
25
+ └── cv.html.erb
26
+
27
+ 2 directories, 5 files
28
+ $ multiformatcv -d sample/data -s sample/onepager -o sample/onepager/cv.html
29
+ $ open sample/onepager/cv.html
30
+ ```
31
+
32
+ Which, after being printed from the browser, would look something like this:
33
+
34
+ ![Printed CV](sample/onepager/images/cv.png)
@@ -1 +1 @@
1
- module MultiformatCV VERSION = "0.0.3" end
1
+ module MultiformatCV VERSION = "0.0.4" end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multiformat-cv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - JuanKman94