latex_curriculum_vitae 2.1.0 → 2.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 7521f152b0bd8e31f3f0c22a0b039a6b9151942f
4
- data.tar.gz: fd8673b7ac370de29cc19c9aa9fac66d71219e21
2
+ SHA256:
3
+ metadata.gz: 70ff7f2d3c274a01e3c42c51ad0bf7f682c7abf269e6373b22067237da800112
4
+ data.tar.gz: fd321ed8a3cccf55bf033dcf0fec805cfdd544b931ec62b3fa5be8a541b79a8d
5
5
  SHA512:
6
- metadata.gz: 62d3833886daa75a678fcaf928ed6b0758dd749181c119f73a93735fed27d974012012702d6f38a18d02f048a9a50de3979b31f84d7b7d56bd542d73d07646c2
7
- data.tar.gz: '053486b2cbd0b1bc281ffcb7c1490694957d6849fce1b7db49c85291848f66c9585dbcec8c1cf1e20c6e70a72908365526df17c4032239bbac7bfed742802a02'
6
+ metadata.gz: 110bebdb2f6f43c41ffe9666988d4c68f084c663d13222cfec830dc4327ad719c64b4190a3c0a46ffc8ad86c81d1c19816c24f7cac3b084a45e07a4786b32c01
7
+ data.tar.gz: '0836b9439616f8bbb16505e26b90764f4c6c6f4c02a48a973389ba16d2e7d3bae2b2cb8b885bd1a357186a2ab0d4c477c0cf258507a303ec340527225e31b6d8'
@@ -0,0 +1,17 @@
1
+ # @markup markdown
2
+ # @title Code of Conduct
3
+ # @author Sascha Manns
4
+
5
+ # Contributor Code of Conduct
6
+
7
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
8
+
9
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
10
+
11
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
12
+
13
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
14
+
15
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
16
+
17
+ This Code of Conduct is adapted from the [Contributor Covenant](http:contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,39 @@
1
+ # How to Contribute to latex_curriculum_vitae
2
+
3
+ :+1::tada: First off, thanks for taking the time to contribute! :tada::+1:
4
+
5
+ ## Reporting Bugs
6
+
7
+ * Ensure the bug was not already reported, see the
8
+ [Issue Tracker](https://github.com/saigkill/latex_curriculum_vitae/issues) on GitHub.
9
+ * Open an issue or reference an existing one
10
+ * Assign yourself to the issue when you are working on it
11
+ * Reference the issue number (with `#NUMBER`) in your pull request
12
+
13
+ Thanks! :heart: :heart: :heart:
14
+
15
+ # IDEAS:
16
+
17
+ * Add ideas on: https://github.com/saigkill/hoe-rubocop/issues
18
+
19
+ ## COOL HACKS:
20
+
21
+ * Open a bugreport on https://github.com/saigkill/hoe-rubocop/issues.
22
+ * Please use the -u flag when generating the patch as it makes the patch
23
+ more readable.
24
+ * Write a good explanation of what the patch does.
25
+ * It is better to use git format-patch command: git format-patch HEAD^
26
+
27
+ # STRUCTURE:
28
+
29
+ ## BRANCHES:
30
+
31
+ ### `master` BRANCH:
32
+ The master branch is the last stable version.
33
+
34
+ ### `develop` BRANCH:
35
+ The develop branch is the current edge of development.
36
+
37
+ ### PULL REQUESTS:
38
+ Please base all Pullrequests off the `develop` branch. Merges to
39
+ `X.X` only occur through the `develop` branch.
data/Gemfile CHANGED
@@ -1,33 +1,32 @@
1
- # -*- ruby -*-
2
-
3
- # DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`.
4
-
5
- source "https://rubygems.org/"
6
-
7
- gem "notifier", "~>0.5"
8
- gem "pony", "~>1.11"
9
- gem "combine_pdf", "~>1.0"
10
- gem "url_shortener", "~>0.0.9"
11
- gem "xdg", "~>2.2"
12
-
13
- gem "hoe-bundler", "~>1.3", :group => [:development, :test]
14
- gem "hoe-doofus", "~>1.0", :group => [:development, :test]
15
- gem "hoe-git", "~>1.6", :group => [:development, :test]
16
- gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
17
- gem "hoe-manns", "~>1.6", :group => [:development, :test]
18
- gem "hoe-reek", "~>1.2", :group => [:development, :test]
19
- gem "hoe-rubocop", "~>1.0", :group => [:development, :test]
20
- gem "hoe-travis", "~>1.3", :group => [:development, :test]
21
- gem "hoe-version", "~>1.2", :group => [:development, :test]
22
- gem "hoe", "~>3.16", :group => [:development, :test]
23
- gem "rake", "~>12.2", :group => [:development, :test]
24
- gem "rdoc", "~>5.1", :group => [:development, :test]
25
- gem "reek", "~>4.7", :group => [:development, :test]
26
- gem "rubocop", "~>0.51", :group => [:development, :test]
27
- gem "coveralls", "~>0.8", :group => [:development, :test]
28
- gem "rainbow", "~>2.2", :group => [:development, :test]
29
- gem "bundler", "~>1.16", :group => [:development, :test]
30
- gem "parseconfig", "~>1.0", :group => [:development, :test]
31
- gem "rspec", "~>3.7", :group => [:development, :test]
32
-
33
- # vim: syntax=ruby
1
+ # -*- ruby -*-
2
+
3
+ # DO NOT EDIT THIS FILE. Instead, edit Rakefile, and run `rake bundler:gemfile`.
4
+
5
+ source "https://rubygems.org/"
6
+
7
+ gem "notifier", "~>0.5"
8
+ gem "pony", "~>1.12"
9
+ gem "combine_pdf", "~>1.0"
10
+ gem "url_shortener", "~>0.0.9"
11
+ gem "xdg", "~>2.2"
12
+
13
+ gem "hoe-bundler", "~>1.4", :group => [:development, :test]
14
+ gem "hoe-git", "~>1.6", :group => [:development, :test]
15
+ gem "hoe-rubygems", "~>1.0", :group => [:development, :test]
16
+ gem "hoe-manns", "~>2.1", :group => [:development, :test]
17
+ gem "hoe-reek", "~>1.2", :group => [:development, :test]
18
+ gem "hoe-rubocop", "~>1.0", :group => [:development, :test]
19
+ gem "hoe-travis", "~>1.3", :group => [:development, :test]
20
+ gem "hoe-version", "~>1.2", :group => [:development, :test]
21
+ gem "hoe", "~>3.17", :group => [:development, :test]
22
+ gem "rake", "~>12.3", :group => [:development, :test]
23
+ gem "rdoc", "~>6.0", :group => [:development, :test]
24
+ gem "reek", "~>4.8", :group => [:development, :test]
25
+ gem "rubocop", "~>0.55", :group => [:development, :test]
26
+ gem "coveralls", "~>0.8", :group => [:development, :test]
27
+ gem "rainbow", "~>3.0", :group => [:development, :test]
28
+ gem "bundler", "~>1.16", :group => [:development, :test]
29
+ gem "parseconfig", "~>1.0", :group => [:development, :test]
30
+ gem "rspec", "~>3.7", :group => [:development, :test]
31
+
32
+ # vim: syntax=ruby
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- ast (2.3.0)
4
+ ast (2.4.0)
5
5
  axiom-types (0.1.1)
6
6
  descendants_tracker (~> 0.0.4)
7
7
  ice_nine (~> 0.11.0)
@@ -9,11 +9,11 @@ GEM
9
9
  bundler-audit (0.6.0)
10
10
  bundler (~> 1.2)
11
11
  thor (~> 0.18)
12
- codeclimate-engine-rb (0.4.0)
12
+ codeclimate-engine-rb (0.4.1)
13
13
  virtus (~> 1.0)
14
14
  coercible (1.0.0)
15
15
  descendants_tracker (~> 0.0.1)
16
- combine_pdf (1.0.7)
16
+ combine_pdf (1.0.9)
17
17
  ruby-rc4 (>= 0.1.5)
18
18
  coveralls (0.8.21)
19
19
  json (>= 1.8, < 3)
@@ -27,22 +27,19 @@ GEM
27
27
  docile (1.1.5)
28
28
  equalizer (0.0.11)
29
29
  hashie (1.2.0)
30
- hoe (3.16.1)
30
+ hoe (3.17.0)
31
31
  rake (>= 0.8, < 13.0)
32
- hoe-bundler (1.3.0)
33
- hoe (>= 2.2.0)
34
- hoe-doofus (1.0.0)
32
+ hoe-bundler (1.4.0)
35
33
  hoe-git (1.6.0)
36
- hoe-manns (1.6.2)
37
- bundler-audit (~> 0.5)
38
- parseconfig (~> 1.0)
39
- rainbow (~> 2.2)
40
- hoe-reek (1.2.2)
34
+ hoe-manns (2.1.2)
35
+ bundler-audit (~> 0.6)
36
+ rainbow (~> 3.0)
37
+ hoe-reek (1.2.3)
41
38
  bundler (~> 1.16)
42
- reek (~> 4.7)
43
- hoe-rubocop (1.0.8)
44
- bundler (~> 1.14)
45
- rubocop (~> 0.47)
39
+ reek (~> 4.8)
40
+ hoe-rubocop (1.0.9)
41
+ bundler (~> 1.16)
42
+ rubocop (~> 0.55)
46
43
  hoe-rubygems (1.0.0)
47
44
  hoe-travis (1.3.1)
48
45
  hoe (~> 3.0)
@@ -54,29 +51,28 @@ GEM
54
51
  json (1.8.6)
55
52
  mail (2.7.0)
56
53
  mini_mime (>= 0.1.1)
57
- mini_mime (0.1.4)
54
+ mini_mime (1.0.0)
58
55
  multi_xml (0.6.0)
59
56
  notifier (0.5.2)
60
- parallel (1.12.0)
57
+ parallel (1.12.1)
61
58
  parseconfig (1.0.8)
62
- parser (2.4.0.0)
63
- ast (~> 2.2)
64
- pony (1.11)
59
+ parser (2.5.1.0)
60
+ ast (~> 2.4.0)
61
+ pony (1.12)
65
62
  mail (>= 2.0)
66
63
  powerpack (0.1.1)
67
- rainbow (2.2.2)
68
- rake
69
- rake (12.2.1)
70
- rdoc (5.1.0)
71
- reek (4.7.3)
64
+ rainbow (3.0.0)
65
+ rake (12.3.1)
66
+ rdoc (6.0.3)
67
+ reek (4.8.1)
72
68
  codeclimate-engine-rb (~> 0.4.0)
73
- parser (>= 2.4.0.0, < 2.5)
74
- rainbow (~> 2.0)
69
+ parser (>= 2.5.0.0, < 2.6)
70
+ rainbow (>= 2.0, < 4.0)
75
71
  rspec (3.7.0)
76
72
  rspec-core (~> 3.7.0)
77
73
  rspec-expectations (~> 3.7.0)
78
74
  rspec-mocks (~> 3.7.0)
79
- rspec-core (3.7.0)
75
+ rspec-core (3.7.1)
80
76
  rspec-support (~> 3.7.0)
81
77
  rspec-expectations (3.7.0)
82
78
  diff-lcs (>= 1.2.0, < 2.0)
@@ -84,12 +80,12 @@ GEM
84
80
  rspec-mocks (3.7.0)
85
81
  diff-lcs (>= 1.2.0, < 2.0)
86
82
  rspec-support (~> 3.7.0)
87
- rspec-support (3.7.0)
88
- rubocop (0.51.0)
83
+ rspec-support (3.7.1)
84
+ rubocop (0.55.0)
89
85
  parallel (~> 1.10)
90
- parser (>= 2.3.3.1, < 3.0)
86
+ parser (>= 2.5)
91
87
  powerpack (~> 0.1)
92
- rainbow (>= 2.2.2, < 3.0)
88
+ rainbow (>= 2.2.2, < 4.0)
93
89
  ruby-progressbar (~> 1.7)
94
90
  unicode-display_width (~> 1.0, >= 1.0.1)
95
91
  ruby-progressbar (1.9.0)
@@ -103,8 +99,8 @@ GEM
103
99
  tins (~> 1.0)
104
100
  thor (0.19.4)
105
101
  thread_safe (0.3.6)
106
- tins (1.15.0)
107
- unicode-display_width (1.3.0)
102
+ tins (1.16.3)
103
+ unicode-display_width (1.3.2)
108
104
  url_shortener (0.0.9)
109
105
  hashie (~> 1.2.0)
110
106
  httparty (~> 0.13.7)
@@ -117,16 +113,16 @@ GEM
117
113
 
118
114
  PLATFORMS
119
115
  ruby
116
+ x64-mingw32
120
117
 
121
118
  DEPENDENCIES
122
119
  bundler (~> 1.16)
123
120
  combine_pdf (~> 1.0)
124
121
  coveralls (~> 0.8)
125
- hoe (~> 3.16)
126
- hoe-bundler (~> 1.3)
127
- hoe-doofus (~> 1.0)
122
+ hoe (~> 3.17)
123
+ hoe-bundler (~> 1.4)
128
124
  hoe-git (~> 1.6)
129
- hoe-manns (~> 1.6)
125
+ hoe-manns (~> 2.1)
130
126
  hoe-reek (~> 1.2)
131
127
  hoe-rubocop (~> 1.0)
132
128
  hoe-rubygems (~> 1.0)
@@ -134,15 +130,15 @@ DEPENDENCIES
134
130
  hoe-version (~> 1.2)
135
131
  notifier (~> 0.5)
136
132
  parseconfig (~> 1.0)
137
- pony (~> 1.11)
138
- rainbow (~> 2.2)
139
- rake (~> 12.2)
140
- rdoc (~> 5.1)
141
- reek (~> 4.7)
133
+ pony (~> 1.12)
134
+ rainbow (~> 3.0)
135
+ rake (~> 12.3)
136
+ rdoc (~> 6.0)
137
+ reek (~> 4.8)
142
138
  rspec (~> 3.7)
143
- rubocop (~> 0.51)
139
+ rubocop (~> 0.55)
144
140
  url_shortener (~> 0.0.9)
145
141
  xdg (~> 2.2)
146
142
 
147
143
  BUNDLED WITH
148
- 1.16.0
144
+ 1.16.1
data/History.rdoc CHANGED
@@ -1,3 +1,9 @@
1
+ === 2.1.1 / 2018-04-29
2
+
3
+ * 1 misc enhancement
4
+
5
+ * updated documentation and projects url
6
+
1
7
  === 2.1.0 / 2017-11-06
2
8
 
3
9
  * 6 minor enhancements
data/MAINTENANCE.md ADDED
@@ -0,0 +1,19 @@
1
+ # MAINTENANCE POLICY:
2
+
3
+ I'm following the Semantic Versioning for its releases: (Major).(Minor).(Patch).
4
+
5
+ * Major version: Whenever there is something significant or any backwards
6
+ incompatible changes.
7
+ * Minor version: When new, backwards compatible functionality is introduced a
8
+ minor feature is introduced, or when a set of smaller features is rolled out.
9
+ * Patch number: When backwards compatible bug fixes are introduced that fix
10
+ incorrect behavior.
11
+ * The current stable release will receive security patches and bug fixes
12
+ (eg. 5.0 -> 5.0.1).
13
+ * Feature releases will mark the next supported stable release where the minor
14
+ version is increased numerically by increments of one (eg. 5.0 -> 5.1).
15
+
16
+ I encourage everyone to run the latest stable release to ensure that you can
17
+ easily upgrade to the most secure and feature rich experience. In order to
18
+ make sure you can easily run the most recent stable release, we are working
19
+ hard to keep the update process simple and reliable.
data/Manifest.txt CHANGED
@@ -5,7 +5,9 @@ LICENSE.rdoc
5
5
  Manifest.txt
6
6
  README.rdoc
7
7
  Rakefile
8
- STATUS.rdoc
8
+ CODE_OF_CONDUCT.md
9
+ CONTRIBUTING.md
10
+ MAINTENANCE.md
9
11
  NEWS
10
12
  bin/latexcv.rb
11
13
  data/latex_curriculum_vitae/Appendix/Bibliography/bibliography1.bib
data/NEWS CHANGED
@@ -1,3 +1,62 @@
1
+ ===============================================================================
2
+ latex_curriculum_vitae 2.1.1 - 2018-04-29
3
+ ===============================================================================
4
+
5
+ latex_curriculum_vitae 2.1.1 is the culmination of one days'
6
+ work by 1 developer.
7
+
8
+ New Features:
9
+
10
+ * Nothing yet
11
+
12
+ Enhancements:
13
+
14
+ * Nothing yet
15
+
16
+ Notable Bugs Fixed:
17
+
18
+ * 1 minor enhancements
19
+
20
+ * Updated documentation and projects url
21
+
22
+
23
+ ===============================================================================
24
+ SOURCES / PACKAGES
25
+ ===============================================================================
26
+
27
+ Packages
28
+ --------
29
+
30
+ Download and installation information is available here:
31
+
32
+ * https://saigkill.tuxfamily.org/documentation/latex_curriculum_vitae/
33
+
34
+ Gems:
35
+
36
+ * https://rubygems.org/gems/latex_curriculum_vitae
37
+
38
+ ===============================================================================
39
+ REPORT BUGS - HELP THE PROJECT - GROW THE COMMUNITY
40
+ ===============================================================================
41
+
42
+ If you encounter any bad behavior with this release, please do not
43
+ hesitate to file bugs!
44
+
45
+ * https://github.com/saigkill/latex_curriculum_vitae/issues
46
+
47
+
48
+ ===============================================================================
49
+ VALUED LATEX_CURRICULUM_VITAE CONTRIBUTORS
50
+ ===============================================================================
51
+
52
+ Contributors For This Release
53
+ -----------------------------
54
+
55
+ The following people directly contributed to the release of this version
56
+ of hoe-manns. Without their help, there would be no release!
57
+
58
+ Sascha Manns
59
+
1
60
  ===============================================================================
2
61
  latex_curriculum_vitae 2.1.0 - 2017-11-06
3
62
  ===============================================================================
data/README.rdoc CHANGED
@@ -1,17 +1,22 @@
1
1
  = latex_curriculum_vitae
2
2
 
3
- code :: https://launchpad.net/latexcv
4
- docs :: https://saigkill.github.io/latex_curriculum_vitae/about/
3
+ code :: https://github.com/saigkill/latex_curriculum_vitae
4
+ docs :: https://saigkill.tuxfamily.org/documentation/latex_curriculum_vitae/
5
5
  apidoc :: http://www.rubydoc.info/gems/latex_curriculum_vitae
6
- bugs :: https://bugs.launchpad.net/latexcv
7
- questions :: https://answers.launchpad.net/latexcv
8
- feature requests :: https://blueprints.launchpad.net/latexcv
6
+ bugs :: https://github.com/saigkill/latex_curriculum_vitae/issues
7
+ mailinglist :: https://groups.google.com/forum/#!forum/latex_curriculum_vitae
9
8
  openhub statistics :: https://www.openhub.net/p/latex_curriculum_vitae
10
9
  authors blog :: https://saigkill.tuxfamily.org
11
- min. rubyver :: 2.2.0
10
+ min. rubyver :: 2.3.0
12
11
 
13
- If you're reading this on Github, please keep in mind, that this is just a
14
- mirror. The development happens on: https://launchpad.net/latexcv.
12
+ last public version :: {<img src="https://badge.fury.io/rb/latex_curriculum_vitae.png" alt="Build Status" />}[http://rubygems.org/gems/latex_curriculum_vitae]
13
+ downloads latest :: {<img src="https://img.shields.io/gem/dtv/latex_curriculum_vitae.svg" alt="Build Status" />}[http://rubygems.org/gems/latex_curriculum_vitae]
14
+ downloads all :: {<img src="https://img.shields.io/gem/dt/latex_curriculum_vitae.svg" alt="Build Status" />}[http://rubygems.org/gems/latex_curriculum_vitae]
15
+ code quality :: {<img src="https://scrutinizer-ci.com/g/saigkill/latex_curriculum_vitae/badges/quality-score.png?b=master" />}[https://scrutinizer-ci.com/g/saigkill/latex_curriculum_vitae/]
16
+ code quality :: {<img src="https://api.codeclimate.com/v1/badges/58bdf05db541e741c5d3/maintainability" alt="Code Quality" />}[https://codeclimate.com/github/saigkill/latex_curriculum_vitae]
17
+ security :: {<img src="https://hakiri.io/github/saigkill/latex_curriculum_vitae/master.svg" alt="security" />}[https://hakiri.io/github/saigkill/latex_curriculum_vitae/master]
18
+ dependency check :: {<img src="https://gemnasium.com/saigkill/latex_curriculum_vitae.svg" alt="Dependency Status" />}[https://gemnasium.com/saigkill/latex_curriculum_vitae]
19
+ documentation quality :: {<img src="http://inch-ci.org/github/saigkill/latex_curriculum_vitae.svg?branch=master" alt="Documentation Quality" />}[http://inch-ci.org/github/saigkill/latex_curriculum_vitae]
15
20
 
16
21
  == DESCRIPTION:
17
22
 
@@ -23,21 +28,18 @@ The History.rdoc contains a detailed description on what has changed. For most
23
28
  users the NEWS file might be a better place to look since it contains
24
29
  change summaries between the different versions.
25
30
 
26
- hoe-reek is released under the GPL3 License, see the file 'License.rdoc'
31
+ latex_curriculum_vitae is released under the GPL3 License, see the file 'License.rdoc'
27
32
  for more information.
28
33
 
29
34
  The official web site is:
30
35
 
31
- https://launchpad.net/latexcv
36
+ https://github.com/saigkill/latex_curriculum_vitae
32
37
 
33
- == FEATURES/PROBLEMS:
38
+ == FEATURES:
34
39
 
35
40
  * Ruby based LaTEX publisher for job applications
36
41
  * It use Pony and Evolution for sending the email directly
37
42
 
38
- See the {FAQs}[https://answers.launchpad.net/latexcv/+faqs] for checking known issues.
39
- See the {status}[https://github.com/saigkill/latex_curriculum_vitae/blob/master/STATUS.rdoc] of the app.
40
-
41
43
  == SYNOPSIS:
42
44
 
43
45
  $ latexcv.rb
@@ -46,8 +48,6 @@ See the {status}[https://github.com/saigkill/latex_curriculum_vitae/blob/master/
46
48
 
47
49
  The resulting PDF and the CSV file are placed in /home/You/.local/latex_curriculum_vitae.
48
50
 
49
- Read the documentation at: https://saigkill.github.io/latex_curriculum_vitae/about/
50
-
51
51
  This Gem was programmed and tested for Linux systems. If anyone would like to make the methods also fit for other OS,
52
52
  i'm happy about Pull requests.
53
53
 
@@ -73,8 +73,6 @@ The installation is very easy.
73
73
  cd /path/to/gem (In case of using RVM ~/.rvm/gems/ruby-2.2.3/gems/latex_curriculum_vitae)
74
74
  rake setup
75
75
 
76
- Read the documentation at: https://saigkill.github.io/latex_curriculum_vitae/about/
77
-
78
76
  You have to run the setup after each gem update.
79
77
 
80
78
  == DEVELOPERS:
@@ -84,86 +82,4 @@ After checking out the source, run:
84
82
  $ rake newb
85
83
 
86
84
  This task will install any missing dependencies, run the tests/specs,
87
- and generate the RDoc.
88
-
89
- === IDEAS:
90
-
91
- * Add ideas on: https://blueprints.launchpad.net/latexcv
92
-
93
- === COOL HACKS:
94
-
95
- * Open a bugreport on https://bugs.launchpad.net/latexcv.
96
- * Please use the -u flag when generating the patch as it makes the patch
97
- more readable.
98
- * Write a good explanation of what the patch does.
99
- * It is better to use git format-patch command: git format-patch HEAD^
100
-
101
- === CONTRIBUTOR CODE OF CONDUCT:
102
-
103
- As contributors and maintainers of this project, we pledge to respect all
104
- people who contribute through reporting issues, posting feature requests,
105
- updating documentation, submitting pull requests or patches, and other
106
- activities.
107
-
108
- We are committed to making participation in this project a harassment-free
109
- experience for everyone, regardless of level of experience, gender, gender
110
- identity and expression, sexual orientation, disability, personal
111
- appearance, body size, race, age, or religion.
112
-
113
- Examples of unacceptable behavior by participants include the use of sexual
114
- language or imagery, derogatory comments or personal attacks, trolling,
115
- public or private harassment, insults, or other unprofessional conduct.
116
-
117
- Project maintainers have the right and responsibility to remove, edit, or
118
- reject comments, commits, code, wiki edits, issues, and other contributions
119
- that are not aligned to this Code of Conduct. Project maintainers who do
120
- not follow the Code of Conduct may be removed from the project team.
121
-
122
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
123
- reported by opening an issue or contacting one or more of the project
124
- maintainers.
125
-
126
- This Code of Conduct is adapted from the {Contributor Covenant}[http:contributor-covenant.org],
127
- version 1.0.0, available at {http://contributor-covenant.org/version/1/0/0/}[http://contributor-covenant.org/version/1/0/0/].
128
-
129
- === MAINTANANCE POLICY:
130
-
131
- I'm following the Semantic Versioning for its releases: (Major).(Minor).(Patch).
132
-
133
- * Major version: Whenever there is something significant or any backwards
134
- incompatible changes.
135
- * Minor version: When new, backwards compatible functionality is introduced a
136
- minor feature is introduced, or when a set of smaller features is rolled out.
137
- * Patch number: When backwards compatible bug fixes are introduced that fix
138
- incorrect behavior.
139
- * The current stable release will receive security patches and bug fixes
140
- (eg. 5.0 -> 5.0.1).
141
- * Feature releases will mark the next supported stable release where the minor
142
- version is increased numerically by increments of one (eg. 5.0 -> 5.1).
143
-
144
- I encourage everyone to run the latest stable release to ensure that you can
145
- easily upgrade to the most secure and feature rich experience. In order to
146
- make sure you can easily run the most recent stable release, we are working
147
- hard to keep the update process simple and reliable.
148
-
149
- === STRUCTURE:
150
-
151
- ==== BRANCHES:
152
-
153
- ===== `master` BRANCH:
154
- The master branch is the current edge of development.
155
-
156
- ===== `X.X` BRANCH:
157
- The X.X branch is the last stable branch. It will used for tarballs.
158
-
159
- ===== MERGE REQUESTS:
160
- If you want to merge your branch with the trunk, join the team.
161
-
162
- Please base all Merge requests off the `master` branch. Merges to
163
- `X.X` only occur through the `master` branch.
164
-
165
- == PROBLEM REPORTING:
166
-
167
- Bugs should be reported to https://bugs.launchpad.net/latexcv. You will need to create an
168
- account for yourself.
169
-
85
+ and generate the RDoc.
data/Rakefile CHANGED
@@ -1,13 +1,40 @@
1
1
  # -*- ruby -*-
2
+ # Copyright (C) 2013-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
3
  # Release:
3
- # See README.rdoc.releasing
4
+ # Pre-release:
5
+ #* update docs
6
+ #* Update copyright years if needed, in the following paths:
7
+ # + lib/*
8
+ #* Check version in lib/hoe-reek.rb
9
+ #* Update History.rdoc & NEWS
10
+ #* git:manifest
11
+ #* bundler:gemfile
12
+ #* bundler:gemfile_lock
13
+ # x64-mingw32
14
+ # x64-mswin32
15
+ # x86-mingw32
16
+ # x86-mswin32
17
+ # ruby
18
+ # x86_64-linux
19
+ #* bundle_audit:run
20
+ #* git -a -m "Anything"
21
+ #* git tag x.x.x
22
+
23
+ # Release:
24
+ #* Create Release in Github
25
+ #* rake release
26
+ #* send_email
27
+ #* clean_pkg
28
+
29
+ # Post-release:
30
+ #* Bump version
31
+ #* Add new Milestone on Github
4
32
 
5
33
  require 'rubygems'
6
34
  require 'hoe'
7
35
 
8
36
  ############################################# DEVELOPING ZONE #########################################################
9
37
  Hoe.plugin :bundler
10
- Hoe.plugin :doofus
11
38
  #Hoe.plugin :git
12
39
  Hoe.plugin :manns
13
40
  Hoe.plugin :rdoc
@@ -20,35 +47,34 @@ Hoe.plugin :version
20
47
  Hoe.spec 'latex_curriculum_vitae' do
21
48
  developer('Sascha Manns', 'Sascha.Manns@mailbox.org')
22
49
  license 'GPL-3.0' # this should match the license in the README
23
- require_ruby_version '>= 2.2.0'
50
+ require_ruby_version '>= 2.3.0'
24
51
 
25
52
  self.history_file = 'History.rdoc'
26
53
  self.readme_file = 'README.rdoc'
27
54
  self.extra_rdoc_files = FileList['*.rdoc'].to_a
28
- self.post_install_message = '*** Run rake setup to finish the installation *** Please file bugreports on: https://bugs.launchpad.net/latexcv'
55
+ self.post_install_message = '*** Run rake setup to finish the installation *** Please file bugreports on: https://github.com/saigkill/latex_curriculum_vitae/issues'
29
56
 
30
57
  dependency 'notifier', '~> 0.5'
31
- dependency 'pony', '~> 1.11'
58
+ dependency 'pony', '~> 1.12'
32
59
  dependency 'combine_pdf', '~> 1.0'
33
60
  dependency 'url_shortener', '~> 0.0.9'
34
61
  dependency 'xdg', '~> 2.2'
35
62
 
36
- extra_dev_deps << ['hoe-bundler', '~> 1.3']
37
- extra_dev_deps << ['hoe-doofus', '~> 1.0']
63
+ extra_dev_deps << ['hoe-bundler', '~> 1.4']
38
64
  extra_dev_deps << ['hoe-git', '~> 1.6']
39
65
  extra_dev_deps << ['hoe-rubygems', '~> 1.0']
40
- extra_dev_deps << ['hoe-manns', '~> 1.6']
66
+ extra_dev_deps << ['hoe-manns', '~> 2.1']
41
67
  extra_dev_deps << ['hoe-reek', '~> 1.2']
42
68
  extra_dev_deps << ['hoe-rubocop', '~> 1.0']
43
69
  extra_dev_deps << ['hoe-travis', '~> 1.3']
44
70
  extra_dev_deps << ['hoe-version', '~> 1.2']
45
- extra_dev_deps << ['hoe', '~> 3.16']
46
- extra_dev_deps << ['rake', '~> 12.2']
47
- extra_dev_deps << ['rdoc', '~> 5.1']
48
- extra_dev_deps << ['reek', '~> 4.7']
49
- extra_dev_deps << ['rubocop', '~> 0.51']
71
+ extra_dev_deps << ['hoe', '~> 3.17']
72
+ extra_dev_deps << ['rake', '~> 12.3']
73
+ extra_dev_deps << ['rdoc', '~> 6.0']
74
+ extra_dev_deps << ['reek', '~> 4.8']
75
+ extra_dev_deps << ['rubocop', '~> 0.55']
50
76
  extra_dev_deps << ['coveralls', '~> 0.8']
51
- extra_dev_deps << ['rainbow', '~> 2.2']
77
+ extra_dev_deps << ['rainbow', '~> 3.0']
52
78
  extra_dev_deps << ['bundler', '~> 1.16']
53
79
  extra_dev_deps << ['parseconfig', '~> 1.0']
54
80
  extra_dev_deps << ['rspec', '~> 3.7']
data/bin/latexcv.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
2
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
3
3
  #
4
4
  # This program is free software: you can redistribute it and/or modify
5
5
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Read the documentation at: https://saigkill.github.io/latex_curriculum_vitae/about/
1
+ # Read the documentation at: https://saigkill.tuxfamily.org/documentation/latex_curriculum_vitae/
2
2
  name_of_pdf = "Bewerbungsunterlagen_Manns"
3
3
  name_of_cover = "Cover"
4
4
  name_of_resume = "cv_10"
@@ -1,4 +1,4 @@
1
- % Read the documentation at: https://saigkill.github.io/latex_curriculum_vitae/about/
1
+ % Read the documentation at: https://saigkill.tuxfamily.org/documentation/latex_curriculum_vitae/
2
2
  \def\firstname{Sascha}
3
3
  \def\familyname{Manns}
4
4
  \def\mystreet{Maifeldstraße 10}
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
2
  #
3
3
  # This program is free software: you can redistribute it and/or modify
4
4
  # it under the terms of the GNU General Public License as published by
@@ -30,7 +30,7 @@ require_relative 'latex_curriculum_vitae/get-config'
30
30
  # Main Class LatexCurriculumVitae
31
31
  module LatexCurriculumVitae
32
32
  # The version information
33
- VERSION = '2.1.0'.freeze
33
+ VERSION = '2.1.1'.freeze
34
34
 
35
35
  # Variables
36
36
  sys_xdg = XDG['CONFIG_HOME']
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: latex_curriculum_vitae
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Manns
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-11-06 00:00:00.000000000 Z
11
+ date: 2018-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: notifier
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.11'
33
+ version: '1.12'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.11'
40
+ version: '1.12'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: combine_pdf
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -86,28 +86,14 @@ dependencies:
86
86
  requirements:
87
87
  - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: '1.3'
89
+ version: '1.4'
90
90
  type: :development
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: '1.3'
97
- - !ruby/object:Gem::Dependency
98
- name: hoe-doofus
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: '1.0'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - "~>"
109
- - !ruby/object:Gem::Version
110
- version: '1.0'
96
+ version: '1.4'
111
97
  - !ruby/object:Gem::Dependency
112
98
  name: hoe-git
113
99
  requirement: !ruby/object:Gem::Requirement
@@ -142,14 +128,14 @@ dependencies:
142
128
  requirements:
143
129
  - - "~>"
144
130
  - !ruby/object:Gem::Version
145
- version: '1.6'
131
+ version: '2.1'
146
132
  type: :development
147
133
  prerelease: false
148
134
  version_requirements: !ruby/object:Gem::Requirement
149
135
  requirements:
150
136
  - - "~>"
151
137
  - !ruby/object:Gem::Version
152
- version: '1.6'
138
+ version: '2.1'
153
139
  - !ruby/object:Gem::Dependency
154
140
  name: hoe-reek
155
141
  requirement: !ruby/object:Gem::Requirement
@@ -212,70 +198,70 @@ dependencies:
212
198
  requirements:
213
199
  - - "~>"
214
200
  - !ruby/object:Gem::Version
215
- version: '3.16'
201
+ version: '3.17'
216
202
  type: :development
217
203
  prerelease: false
218
204
  version_requirements: !ruby/object:Gem::Requirement
219
205
  requirements:
220
206
  - - "~>"
221
207
  - !ruby/object:Gem::Version
222
- version: '3.16'
208
+ version: '3.17'
223
209
  - !ruby/object:Gem::Dependency
224
210
  name: rake
225
211
  requirement: !ruby/object:Gem::Requirement
226
212
  requirements:
227
213
  - - "~>"
228
214
  - !ruby/object:Gem::Version
229
- version: '12.2'
215
+ version: '12.3'
230
216
  type: :development
231
217
  prerelease: false
232
218
  version_requirements: !ruby/object:Gem::Requirement
233
219
  requirements:
234
220
  - - "~>"
235
221
  - !ruby/object:Gem::Version
236
- version: '12.2'
222
+ version: '12.3'
237
223
  - !ruby/object:Gem::Dependency
238
224
  name: rdoc
239
225
  requirement: !ruby/object:Gem::Requirement
240
226
  requirements:
241
227
  - - "~>"
242
228
  - !ruby/object:Gem::Version
243
- version: '5.1'
229
+ version: '6.0'
244
230
  type: :development
245
231
  prerelease: false
246
232
  version_requirements: !ruby/object:Gem::Requirement
247
233
  requirements:
248
234
  - - "~>"
249
235
  - !ruby/object:Gem::Version
250
- version: '5.1'
236
+ version: '6.0'
251
237
  - !ruby/object:Gem::Dependency
252
238
  name: reek
253
239
  requirement: !ruby/object:Gem::Requirement
254
240
  requirements:
255
241
  - - "~>"
256
242
  - !ruby/object:Gem::Version
257
- version: '4.7'
243
+ version: '4.8'
258
244
  type: :development
259
245
  prerelease: false
260
246
  version_requirements: !ruby/object:Gem::Requirement
261
247
  requirements:
262
248
  - - "~>"
263
249
  - !ruby/object:Gem::Version
264
- version: '4.7'
250
+ version: '4.8'
265
251
  - !ruby/object:Gem::Dependency
266
252
  name: rubocop
267
253
  requirement: !ruby/object:Gem::Requirement
268
254
  requirements:
269
255
  - - "~>"
270
256
  - !ruby/object:Gem::Version
271
- version: '0.51'
257
+ version: '0.55'
272
258
  type: :development
273
259
  prerelease: false
274
260
  version_requirements: !ruby/object:Gem::Requirement
275
261
  requirements:
276
262
  - - "~>"
277
263
  - !ruby/object:Gem::Version
278
- version: '0.51'
264
+ version: '0.55'
279
265
  - !ruby/object:Gem::Dependency
280
266
  name: coveralls
281
267
  requirement: !ruby/object:Gem::Requirement
@@ -296,14 +282,14 @@ dependencies:
296
282
  requirements:
297
283
  - - "~>"
298
284
  - !ruby/object:Gem::Version
299
- version: '2.2'
285
+ version: '3.0'
300
286
  type: :development
301
287
  prerelease: false
302
288
  version_requirements: !ruby/object:Gem::Requirement
303
289
  requirements:
304
290
  - - "~>"
305
291
  - !ruby/object:Gem::Version
306
- version: '2.2'
292
+ version: '3.0'
307
293
  - !ruby/object:Gem::Dependency
308
294
  name: bundler
309
295
  requirement: !ruby/object:Gem::Requirement
@@ -355,33 +341,37 @@ description: |-
355
341
  users the NEWS file might be a better place to look since it contains
356
342
  change summaries between the different versions.
357
343
 
358
- hoe-reek is released under the GPL3 License, see the file 'License.rdoc'
344
+ latex_curriculum_vitae is released under the GPL3 License, see the file 'License.rdoc'
359
345
  for more information.
360
346
 
361
347
  The official web site is:
362
348
 
363
- https://launchpad.net/latexcv
349
+ https://github.com/saigkill/latex_curriculum_vitae
364
350
  email:
365
351
  - Sascha.Manns@mailbox.org
366
352
  executables:
367
353
  - latexcv.rb
368
354
  extensions: []
369
355
  extra_rdoc_files:
356
+ - CODE_OF_CONDUCT.md
357
+ - CONTRIBUTING.md
370
358
  - History.rdoc
371
359
  - LICENSE.rdoc
360
+ - MAINTENANCE.md
372
361
  - Manifest.txt
373
362
  - README.rdoc
374
- - STATUS.rdoc
375
363
  files:
364
+ - CODE_OF_CONDUCT.md
365
+ - CONTRIBUTING.md
376
366
  - Gemfile
377
367
  - Gemfile.lock
378
368
  - History.rdoc
379
369
  - LICENSE.rdoc
370
+ - MAINTENANCE.md
380
371
  - Manifest.txt
381
372
  - NEWS
382
373
  - README.rdoc
383
374
  - Rakefile
384
- - STATUS.rdoc
385
375
  - bin/latexcv.rb
386
376
  - data/latex_curriculum_vitae/Appendix/Bibliography/bibliography1.bib
387
377
  - data/latex_curriculum_vitae/Appendix/Certificates/Zertifikat_Sascha_Manns1.pdf
@@ -440,12 +430,12 @@ files:
440
430
  - lib/latex_curriculum_vitae/letter.rb
441
431
  - lib/latex_curriculum_vitae/notifier.rb
442
432
  - lib/latex_curriculum_vitae/outfile.rb
443
- homepage: https://launchpad.net/latexcv
433
+ homepage: https://github.com/saigkill/latex_curriculum_vitae
444
434
  licenses:
445
435
  - GPL-3.0
446
436
  metadata: {}
447
437
  post_install_message: "*** Run rake setup to finish the installation *** Please file
448
- bugreports on: https://bugs.launchpad.net/latexcv"
438
+ bugreports on: https://github.com/saigkill/latex_curriculum_vitae/issues"
449
439
  rdoc_options:
450
440
  - "--main"
451
441
  - README.rdoc
@@ -455,7 +445,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
455
445
  requirements:
456
446
  - - ">="
457
447
  - !ruby/object:Gem::Version
458
- version: 2.2.0
448
+ version: 2.3.0
459
449
  required_rubygems_version: !ruby/object:Gem::Requirement
460
450
  requirements:
461
451
  - - ">="
@@ -463,7 +453,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
463
453
  version: '0'
464
454
  requirements: []
465
455
  rubyforge_project:
466
- rubygems_version: 2.6.13
456
+ rubygems_version: 2.7.6
467
457
  signing_key:
468
458
  specification_version: 4
469
459
  summary: latex_curriculum_vitae is a Rubygem which help you to write your job applications
data/STATUS.rdoc DELETED
@@ -1,23 +0,0 @@
1
- = Misc status badges
2
-
3
- == Gem
4
- last public version :: {<img src="https://badge.fury.io/rb/latex_curriculum_vitae.png" alt="Build Status" />}[http://rubygems.org/gems/latex_curriculum_vitae]
5
- downloads latest :: {<img src="https://img.shields.io/gem/dtv/latex_curriculum_vitae.svg" alt="Build Status" />}[http://rubygems.org/gems/latex_curriculum_vitae]
6
- downloads all :: {<img src="https://img.shields.io/gem/dt/latex_curriculum_vitae.svg" alt="Build Status" />}[http://rubygems.org/gems/latex_curriculum_vitae]
7
-
8
- == Code Review
9
- code quality :: {<img src="https://scrutinizer-ci.com/g/saigkill/latex_curriculum_vitae/badges/quality-score.png?b=master" />}[https://scrutinizer-ci.com/g/saigkill/latex_curriculum_vitae/]
10
- code quality :: {<img src="https://codeclimate.com/github/saigkill/latex_curriculum_vitae/badges/gpa.svg" alt="Code Quality" />}[https://codeclimate.com/github/saigkill/latex_curriculum_vitae]
11
-
12
- == Security
13
- security :: {<img src="https://hakiri.io/github/saigkill/latex_curriculum_vitae/master.svg" alt="security" />}[https://hakiri.io/github/saigkill/latex_curriculum_vitae/master]
14
-
15
- == Dependencies
16
- dependency check :: {<img src="https://gemnasium.com/saigkill/latex_curriculum_vitae.svg" alt="Dependency Status" />}[https://gemnasium.com/saigkill/latex_curriculum_vitae]
17
-
18
- == Documentation
19
- documentation quality :: {<img src="http://inch-ci.org/github/saigkill/latex_curriculum_vitae.svg?branch=master" alt="Documentation Quality" />}[http://inch-ci.org/github/saigkill/latex_curriculum_vitae]
20
-
21
- == Donations
22
- donations :: {<img src="https://pledgie.com/campaigns/30094.png?skin_name=chrome" alt="Build Status" />}[https://pledgie.com/campaigns/30094]
23
- donations :: {<img src="https://saigkill.tuxfamily.org/dotclear/public/Amazon.png" alt="Build Status" />}[http://www.amazon.de/registry/wishlist/D75HOEQ00BDD]