curriculum-generator 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 +22 -13
- data/lib/cgen/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 422c808d70f4336a9f937e4f950c8d09e77ca67b
|
|
4
|
+
data.tar.gz: 3e876d30240d0a78ba9f2dfd670df9e85e972574
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b6c890fca024c370f46ef4d929dd4efee648f502f5b9e49d86636808ae2890b4d008225032197179d37b64dcb14ac99bb697b95296bba1da33fd99d6e2ab0f8c
|
|
7
|
+
data.tar.gz: 99c1be97d54907554334db5605a9968168a793134330b99bd9e3d12eb78e9361a42a61dd2cccfe46864558faeaf512ee4541ece7b8e5195020ad4a90b3dc7bf4
|
data/README.md
CHANGED
|
@@ -2,37 +2,46 @@
|
|
|
2
2
|
|
|
3
3
|
CGen is the next **localized Curriculum Vitae** editor, both for hackers and end-users.
|
|
4
4
|
|
|
5
|
-
*Please note that this is still in early development stages
|
|
5
|
+
*Please note that this is still in early development stages, bug reporting is really welcome!*
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
9
|
-
Via homebrew
|
|
10
|
-
|
|
11
|
-
$ brew install cgen
|
|
12
|
-
|
|
13
9
|
Via rubygems
|
|
14
10
|
|
|
15
11
|
$ gem install curriculum-generator
|
|
16
12
|
|
|
17
|
-
|
|
18
13
|
## Usage
|
|
19
14
|
|
|
20
15
|
CGen provides two editing modes:
|
|
21
|
-
|
|
22
|
-
|
|
16
|
+
|
|
17
|
+
* **Hacking Mode**
|
|
18
|
+
* **Normal Mode**
|
|
23
19
|
|
|
24
20
|
### Hacking Mode
|
|
25
21
|
|
|
22
|
+

|
|
23
|
+
|
|
26
24
|
This is where CGen shrines, by allowing users to **just provide the data** and let the system do the rest. This system comes with *extensibility* in mind, by providing different levels of customization:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
25
|
+
|
|
26
|
+
1. **Data-level**:
|
|
27
|
+
The first level is the most commonly used.
|
|
28
|
+
The system automatically pulls all of your defined data.
|
|
29
|
+
This means that there isn't anything wired-in, no names, no values, anything.
|
|
30
|
+
Data is just data and you can use it as you want !
|
|
31
|
+
2. **Templates-level**:
|
|
32
|
+
For basic customisations you can write your own (LaTeX) **templates**,
|
|
33
|
+
or modify an existing one.
|
|
34
|
+
3. **Generators-level**:
|
|
35
|
+
For more advanced customisations, you can write your own **generators**.
|
|
30
36
|
|
|
31
37
|
### Normal Mode
|
|
32
38
|
|
|
33
|
-
This is primarly for non-hackers.
|
|
39
|
+
This is primarly for non-hackers.
|
|
40
|
+
In this mode the curriculum is edited by using a GUI.
|
|
41
|
+
|
|
42
|
+

|
|
34
43
|
|
|
35
|
-
*This mode is
|
|
44
|
+
*This mode is planned: not released yet*.
|
|
36
45
|
|
|
37
46
|
## Contributing
|
|
38
47
|
|
data/lib/cgen/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: curriculum-generator
|
|
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
|
- Alessandro Molari
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-02-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -192,3 +192,4 @@ signing_key:
|
|
|
192
192
|
specification_version: 4
|
|
193
193
|
summary: Curriculum Vitae generator
|
|
194
194
|
test_files: []
|
|
195
|
+
has_rdoc:
|