latex_curriculum_vitae 2.1.1 → 2.1.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,19 +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
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
19
  hard to keep the update process simple and reliable.
@@ -0,0 +1,84 @@
1
+ # latex_curriculum_vitae
2
+
3
+ ## DESCRIPTION:
4
+
5
+ latex_curriculum_vitae is a Rubygem which help you to write your job applications. The program aks you for all relevant data for compiling
6
+ the curriculum vitae. It builds the motivational letter (if chosen in the gui), the cover and the cv. The resulting pdf will be found
7
+ in your home directory. Also it generates an email with a standard content, which allows you to send the mail with your cv directly.
8
+
9
+ The CHANGELOG.md contains a detailed description on what has changed.
10
+
11
+ latex_curriculum_vitae is released under the GPL3 License, see the file 'License.md' for more information.
12
+
13
+ The official web site is:
14
+
15
+ https://github.com/saigkill/latex_curriculum_vitae
16
+
17
+ |What| Where |
18
+ |----|-------|
19
+ | code | https://github.com/saigkill/latex_curriculum_vitae |
20
+ | docs | https://saigkill.github.io/latex_curriculum_vitae/ |
21
+ | apidoc | http://www.rubydoc.info/gems/latex_curriculum_vitae |
22
+ |bugs | https://github.com/saigkill/latex_curriculum_vitae/issues |
23
+ | openhub statistics | https://www.openhub.net/p/latex_curriculum_vitae |
24
+ | authors blog | https://saschamanns.de |
25
+ |min. rubyver | 2.3.0 |
26
+
27
+ | What | Status |
28
+ |------|--------|
29
+ |last public version | [![Version](https://badge.fury.io/rb/latex_curriculum_vitae.png)](http://rubygems.org/gems/latex_curriculum_vitae) |
30
+ |downloads latest | [![LastPublic](https://img.shields.io/gem/dtv/latex_curriculum_vitae.svg)](http://rubygems.org/gems/latex_curriculum_vitae)|
31
+ |downloads all | [![AllDown](https://img.shields.io/gem/dt/latex_curriculum_vitae.svg)](http://rubygems.org/gems/latex_curriculum_vitae) |
32
+ |continuous integration | ![CI](https://github.com/saigkill/latex_curriculum_vitae/workflows/CI/badge.svg?branch=master&event=push) |
33
+ |code quality | [![Codeclimate](https://api.codeclimate.com/v1/badges/58bdf05db541e741c5d3/maintainability)](https://codeclimate.com/github/saigkill/latex_curriculum_vitae) |
34
+ |security | [![Security](https://hakiri.io/github/saigkill/latex_curriculum_vitae/master.svg)](https://hakiri.io/github/saigkill/latex_curriculum_vitae/master) |
35
+ |documentation quality | [![Documentation](http://inch-ci.org/github/saigkill/latex_curriculum_vitae.svg?branch=master)](http://inch-ci.org/github/saigkill/latex_curriculum_vitae) |
36
+
37
+ ## SCREENSHOT
38
+
39
+ [![Screenshot](https://saschamanns.de/img/screenshots/lcv-gui.png)](https://github.com/saigkill/latex_curriculum_vitae)
40
+
41
+ ## FEATURES:
42
+
43
+ * Ruby based LaTEX publisher for job applications
44
+ * It use Pony and Evolution for sending the email directly
45
+
46
+ ## SYNOPSIS:
47
+
48
+ $ latexcv.rb
49
+
50
+ The resulting PDF and the CSV file are placed in /home/You/.local/latex_curriculum_vitae.
51
+
52
+ This Gem was programmed and tested for Linux systems. If anyone would like to make the methods also fit for other OS,
53
+ i'm happy about Pull requests.
54
+
55
+ ## REQUIREMENTS:
56
+
57
+ * notifier
58
+ * pony
59
+ * combine_pdf
60
+ * url_shortener
61
+
62
+ ## REQUIREMENTS (hard dependencies):
63
+
64
+ * pdflatex & xelatex
65
+ * yad
66
+ * poppler (pdfunite)
67
+
68
+ ## INSTALL:
69
+
70
+ The installation is very easy.
71
+
72
+ gem install latex_curriculum_vitae
73
+ cd /path/to/gem (In case of using RVM ~/.rvm/gems/ruby-2.2.3/gems/latex_curriculum_vitae)
74
+ ./bin/setup
75
+
76
+ You have to run the setup after each gem update.
77
+
78
+ ## DEVELOPERS:
79
+
80
+ After checking out the source, run:
81
+
82
+ $ rake newb
83
+
84
+ This task will install any missing dependencies, run the tests/specs, and generate the RDoc.
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
- # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
2
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+ IFS=$'\n\t'
5
+ set -vx
6
+
7
+ bundle install
8
+ rake setup
@@ -1,4 +1,4 @@
1
- % Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ % Copyright (C) 2015-2019 Sascha Manns <Sascha.Manns@outlook.de>
2
2
  % This program is free software: you can redistribute it and/or modify
3
3
  % it under the terms of the GNU General Public License as published by
4
4
  % the Free Software Foundation, either version 3 of the License, or
@@ -1,4 +1,4 @@
1
- % Copyright (C) 2015-2017 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ % Copyright (C) 2015-2019 Sascha Manns <Sascha.Manns@outlook.de>
2
2
  % This program is free software: you can redistribute it and/or modify
3
3
  % it under the terms of the GNU General Public License as published by
4
4
  % the Free Software Foundation, either version 3 of the License, or
@@ -9,7 +9,7 @@
9
9
  % Original author:
10
10
  % Adrien Friggeri (adrien@friggeri.net)
11
11
  % https://github.com/afriggeri/CV
12
- % Modfied by: Sascha Manns (Sascha.Manns@mailbox.org)
12
+ % Modfied by: Sascha Manns (Sascha.Manns@outlook.de)
13
13
  % https://github.com/saigkill/latex_curriculum_vitae
14
14
  %
15
15
  % License:
@@ -53,8 +53,8 @@ Germany
53
53
  +49 (1573) 924 2730
54
54
  +49 (2651) 40 14 045
55
55
  ~
56
- \href{mailto:Sascha.Manns@mailbox.org}{Sascha.Manns@mailbox.org}\includegraphics[width=0.3cm]{../Pictures/email.png}
57
- \href{http://saigkill.tuxfamily.org}{saigkill.tuxfamily.org}\includegraphics[width=0.3cm]{../Pictures/aboutme.png}
56
+ \href{mailto:Sascha.Manns@outlook.de}{Sascha.Manns@outlook.de}\includegraphics[width=0.3cm]{../Pictures/email.png}
57
+ \href{http://saschamanns.de}{saschamanns.de}\includegraphics[width=0.3cm]{../Pictures/aboutme.png}
58
58
  Geburtsdatum: 01.10.1979
59
59
  \section{Social Media}
60
60
  \href{https://www.xing.com/profile/Sascha\_Manns2}{Sascha\_Manns2}\includegraphics[width=0.3cm]{../Pictures/xing.png}
@@ -9,7 +9,7 @@
9
9
  % Original author:
10
10
  % Adrien Friggeri (adrien@friggeri.net)
11
11
  % https://github.com/afriggeri/CV
12
- % Modfied by: Sascha Manns (Sascha.Manns@mailbox.org)
12
+ % Modfied by: Sascha Manns (Sascha.Manns@outlook.de)
13
13
  % https://github.com/saigkill/latex_curriculum_vitae
14
14
  %
15
15
  % License:
@@ -1,11 +1,11 @@
1
- # Read the documentation at: https://saigkill.tuxfamily.org/documentation/latex_curriculum_vitae/
1
+ # Read the documentation at: https://saschamanns.de/doc-lcv
2
2
  name_of_pdf = "Bewerbungsunterlagen_Manns"
3
3
  name_of_cover = "Cover"
4
4
  name_of_resume = "cv_10"
5
5
  name_of_letter = "bwanschreiben"
6
6
  mail_backend = "Pony" # Pony or Evolution
7
7
  own_name = "Sascha Manns"
8
- own_email_address = "Sascha.Manns@directbox.com"
8
+ own_email_address = "Sascha.Manns@outlook.de"
9
9
  own_smtp = "smtp.my.com"
10
10
  own_port = "587"
11
11
  own_username = "myusername"
@@ -1,11 +1,11 @@
1
- % Read the documentation at: https://saigkill.tuxfamily.org/documentation/latex_curriculum_vitae/
1
+ % Read the documentation at: https://saschamanns.de/doc-lcv
2
2
  \def\firstname{Sascha}
3
3
  \def\familyname{Manns}
4
4
  \def\mystreet{Maifeldstraße 10}
5
5
  \def\mycity{56727 Mayen}
6
6
  \def\myphone{+49-1573-924~27~30}
7
- \def\myemail{Sascha.Manns@mailbox.org}
8
- \def\myblog{http://saigkill.tuxfamily.org}
7
+ \def\myemail{Sascha.Manns@outlook.de}
8
+ \def\myblog{http://saschamanns.de}
9
9
  \def\mybank{Kto. DE88\ 5765\ 0010\ 0198\ 2426\ 20 \\
10
10
  BIC: MALADE51MYN \\
11
11
  Kreissparkasse Mayen}
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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
@@ -29,12 +29,11 @@ require_relative 'latex_curriculum_vitae/get-config'
29
29
 
30
30
  # Main Class LatexCurriculumVitae
31
31
  module LatexCurriculumVitae
32
- # The version information
33
- VERSION = '2.1.1'.freeze
34
32
 
35
33
  # Variables
36
- sys_xdg = XDG['CONFIG_HOME']
37
- data_xdg = XDG['DATA_HOME']
34
+ xdg = XDG::Environment.new
35
+ sys_xdg = xdg.config_home
36
+ data_xdg = xdg.data_home
38
37
  sysconf_dir = "#{sys_xdg}/latex_curriculum_vitae"
39
38
  data_dir = "#{data_xdg}/latex_curriculum_vitae"
40
39
  entity_tex = "#{sysconf_dir}/entity.tex"
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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
@@ -190,10 +190,10 @@ Sincerly yours
190
190
  Sascha Manns
191
191
  Maifeldstraße 10
192
192
  56727 Mayen
193
- Phone: +49-1573-9242730 (mobile)
193
+ Phone: +49-172-3142738 (mobile)
194
194
  Phone: +49-2651-4014045 (home)
195
- Email: Sascha.Manns@mailbox.org
196
- Web: http://saigkill.tuxfamily.org
195
+ Email: Sascha.Manns@outlook.de
196
+ Web: https://saschamanns.de
197
197
  BODY
198
198
  else
199
199
  <<BODY
@@ -208,10 +208,10 @@ Sincerly yours
208
208
  Sascha Manns
209
209
  Maifeldstraße 10
210
210
  56727 Mayen
211
- Phone: +49-1573-9242730 (mobile)
211
+ Phone: +49-172-3142738 (mobile)
212
212
  Phone: +49-2651-4014045 (home)
213
- Email: Sascha.Manns@mailbox.org
214
- Web: http://saigkill.tuxfamily.org
213
+ Email: Sascha.Manns@outlook.de
214
+ Web: https://saschamanns.de
215
215
  BODY
216
216
  end
217
217
  return body
@@ -1,4 +1,4 @@
1
- # Copyright (C) 2015-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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-2018 Sascha Manns <Sascha.Manns@mailbox.org>
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
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
@@ -0,0 +1,35 @@
1
+ # Copyright (C) 2015-2020 Sascha Manns <Sascha.Manns@outlook.de>
2
+ #
3
+ # This program is free software: you can redistribute it and/or modify
4
+ # it under the terms of the GNU General Public License as published by
5
+ # the Free Software Foundation, either version 3 of the License, or
6
+ # (at your option) any later version.
7
+ #
8
+ # This program is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ # GNU General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public License
14
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
15
+
16
+ # main module
17
+ module LatexCurriculumVitae
18
+ # This module holds the latex_curriculum_vitae version information.
19
+
20
+ module Version
21
+ STRING = '2.1.6'.freeze
22
+ MSG = '%<version>s (using Parser %<parser_version>s, running on ' \
23
+ '%<ruby_engine>s %<ruby_version>s %<ruby_platform>s)'.freeze
24
+
25
+ def self.version(debug = false)
26
+ if debug
27
+ format(MSG, version: STRING, parser_version: Parser::VERSION,
28
+ ruby_engine: RUBY_ENGINE, ruby_version: RUBY_VERSION,
29
+ ruby_platform: RUBY_PLATFORM)
30
+ else
31
+ STRING
32
+ end
33
+ end
34
+ end
35
+ end
metadata CHANGED
@@ -1,121 +1,79 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: latex_curriculum_vitae
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sascha Manns
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-04-29 00:00:00.000000000 Z
11
+ date: 2020-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: notifier
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '0.5'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - "~>"
25
- - !ruby/object:Gem::Version
26
- version: '0.5'
27
- - !ruby/object:Gem::Dependency
28
- name: pony
14
+ name: rdoc
29
15
  requirement: !ruby/object:Gem::Requirement
30
16
  requirements:
31
17
  - - "~>"
32
18
  - !ruby/object:Gem::Version
33
- version: '1.12'
19
+ version: '6.2'
34
20
  type: :runtime
35
21
  prerelease: false
36
22
  version_requirements: !ruby/object:Gem::Requirement
37
23
  requirements:
38
24
  - - "~>"
39
25
  - !ruby/object:Gem::Version
40
- version: '1.12'
26
+ version: '6.2'
41
27
  - !ruby/object:Gem::Dependency
42
- name: combine_pdf
28
+ name: rake
43
29
  requirement: !ruby/object:Gem::Requirement
44
30
  requirements:
45
31
  - - "~>"
46
32
  - !ruby/object:Gem::Version
47
- version: '1.0'
33
+ version: '13.0'
48
34
  type: :runtime
49
35
  prerelease: false
50
36
  version_requirements: !ruby/object:Gem::Requirement
51
37
  requirements:
52
38
  - - "~>"
53
39
  - !ruby/object:Gem::Version
54
- version: '1.0'
40
+ version: '13.0'
55
41
  - !ruby/object:Gem::Dependency
56
- name: url_shortener
42
+ name: rainbow
57
43
  requirement: !ruby/object:Gem::Requirement
58
44
  requirements:
59
45
  - - "~>"
60
46
  - !ruby/object:Gem::Version
61
- version: 0.0.9
47
+ version: '3.0'
62
48
  type: :runtime
63
49
  prerelease: false
64
50
  version_requirements: !ruby/object:Gem::Requirement
65
51
  requirements:
66
52
  - - "~>"
67
53
  - !ruby/object:Gem::Version
68
- version: 0.0.9
54
+ version: '3.0'
69
55
  - !ruby/object:Gem::Dependency
70
- name: xdg
56
+ name: bundler
71
57
  requirement: !ruby/object:Gem::Requirement
72
58
  requirements:
73
59
  - - "~>"
74
60
  - !ruby/object:Gem::Version
75
- version: '2.2'
61
+ version: '2.1'
76
62
  type: :runtime
77
63
  prerelease: false
78
64
  version_requirements: !ruby/object:Gem::Requirement
79
65
  requirements:
80
66
  - - "~>"
81
67
  - !ruby/object:Gem::Version
82
- version: '2.2'
83
- - !ruby/object:Gem::Dependency
84
- name: hoe-bundler
85
- requirement: !ruby/object:Gem::Requirement
86
- requirements:
87
- - - "~>"
88
- - !ruby/object:Gem::Version
89
- version: '1.4'
90
- type: :development
91
- prerelease: false
92
- version_requirements: !ruby/object:Gem::Requirement
93
- requirements:
94
- - - "~>"
95
- - !ruby/object:Gem::Version
96
- version: '1.4'
97
- - !ruby/object:Gem::Dependency
98
- name: hoe-git
99
- requirement: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "~>"
102
- - !ruby/object:Gem::Version
103
- version: '1.6'
104
- type: :development
105
- prerelease: false
106
- version_requirements: !ruby/object:Gem::Requirement
107
- requirements:
108
- - - "~>"
109
- - !ruby/object:Gem::Version
110
- version: '1.6'
68
+ version: '2.1'
111
69
  - !ruby/object:Gem::Dependency
112
- name: hoe-rubygems
70
+ name: parseconfig
113
71
  requirement: !ruby/object:Gem::Requirement
114
72
  requirements:
115
73
  - - "~>"
116
74
  - !ruby/object:Gem::Version
117
75
  version: '1.0'
118
- type: :development
76
+ type: :runtime
119
77
  prerelease: false
120
78
  version_requirements: !ruby/object:Gem::Requirement
121
79
  requirements:
@@ -123,41 +81,41 @@ dependencies:
123
81
  - !ruby/object:Gem::Version
124
82
  version: '1.0'
125
83
  - !ruby/object:Gem::Dependency
126
- name: hoe-manns
84
+ name: xdg
127
85
  requirement: !ruby/object:Gem::Requirement
128
86
  requirements:
129
87
  - - "~>"
130
88
  - !ruby/object:Gem::Version
131
- version: '2.1'
132
- type: :development
89
+ version: '4.1'
90
+ type: :runtime
133
91
  prerelease: false
134
92
  version_requirements: !ruby/object:Gem::Requirement
135
93
  requirements:
136
94
  - - "~>"
137
95
  - !ruby/object:Gem::Version
138
- version: '2.1'
96
+ version: '4.1'
139
97
  - !ruby/object:Gem::Dependency
140
- name: hoe-reek
98
+ name: url_shortener
141
99
  requirement: !ruby/object:Gem::Requirement
142
100
  requirements:
143
- - - "~>"
101
+ - - '='
144
102
  - !ruby/object:Gem::Version
145
- version: '1.2'
146
- type: :development
103
+ version: 0.0.9
104
+ type: :runtime
147
105
  prerelease: false
148
106
  version_requirements: !ruby/object:Gem::Requirement
149
107
  requirements:
150
- - - "~>"
108
+ - - '='
151
109
  - !ruby/object:Gem::Version
152
- version: '1.2'
110
+ version: 0.0.9
153
111
  - !ruby/object:Gem::Dependency
154
- name: hoe-rubocop
112
+ name: combine_pdf
155
113
  requirement: !ruby/object:Gem::Requirement
156
114
  requirements:
157
115
  - - "~>"
158
116
  - !ruby/object:Gem::Version
159
117
  version: '1.0'
160
- type: :development
118
+ type: :runtime
161
119
  prerelease: false
162
120
  version_requirements: !ruby/object:Gem::Requirement
163
121
  requirements:
@@ -165,215 +123,55 @@ dependencies:
165
123
  - !ruby/object:Gem::Version
166
124
  version: '1.0'
167
125
  - !ruby/object:Gem::Dependency
168
- name: hoe-travis
169
- requirement: !ruby/object:Gem::Requirement
170
- requirements:
171
- - - "~>"
172
- - !ruby/object:Gem::Version
173
- version: '1.3'
174
- type: :development
175
- prerelease: false
176
- version_requirements: !ruby/object:Gem::Requirement
177
- requirements:
178
- - - "~>"
179
- - !ruby/object:Gem::Version
180
- version: '1.3'
181
- - !ruby/object:Gem::Dependency
182
- name: hoe-version
183
- requirement: !ruby/object:Gem::Requirement
184
- requirements:
185
- - - "~>"
186
- - !ruby/object:Gem::Version
187
- version: '1.2'
188
- type: :development
189
- prerelease: false
190
- version_requirements: !ruby/object:Gem::Requirement
191
- requirements:
192
- - - "~>"
193
- - !ruby/object:Gem::Version
194
- version: '1.2'
195
- - !ruby/object:Gem::Dependency
196
- name: hoe
197
- requirement: !ruby/object:Gem::Requirement
198
- requirements:
199
- - - "~>"
200
- - !ruby/object:Gem::Version
201
- version: '3.17'
202
- type: :development
203
- prerelease: false
204
- version_requirements: !ruby/object:Gem::Requirement
205
- requirements:
206
- - - "~>"
207
- - !ruby/object:Gem::Version
208
- version: '3.17'
209
- - !ruby/object:Gem::Dependency
210
- name: rake
211
- requirement: !ruby/object:Gem::Requirement
212
- requirements:
213
- - - "~>"
214
- - !ruby/object:Gem::Version
215
- version: '12.3'
216
- type: :development
217
- prerelease: false
218
- version_requirements: !ruby/object:Gem::Requirement
219
- requirements:
220
- - - "~>"
221
- - !ruby/object:Gem::Version
222
- version: '12.3'
223
- - !ruby/object:Gem::Dependency
224
- name: rdoc
225
- requirement: !ruby/object:Gem::Requirement
226
- requirements:
227
- - - "~>"
228
- - !ruby/object:Gem::Version
229
- version: '6.0'
230
- type: :development
231
- prerelease: false
232
- version_requirements: !ruby/object:Gem::Requirement
233
- requirements:
234
- - - "~>"
235
- - !ruby/object:Gem::Version
236
- version: '6.0'
237
- - !ruby/object:Gem::Dependency
238
- name: reek
239
- requirement: !ruby/object:Gem::Requirement
240
- requirements:
241
- - - "~>"
242
- - !ruby/object:Gem::Version
243
- version: '4.8'
244
- type: :development
245
- prerelease: false
246
- version_requirements: !ruby/object:Gem::Requirement
247
- requirements:
248
- - - "~>"
249
- - !ruby/object:Gem::Version
250
- version: '4.8'
251
- - !ruby/object:Gem::Dependency
252
- name: rubocop
253
- requirement: !ruby/object:Gem::Requirement
254
- requirements:
255
- - - "~>"
256
- - !ruby/object:Gem::Version
257
- version: '0.55'
258
- type: :development
259
- prerelease: false
260
- version_requirements: !ruby/object:Gem::Requirement
261
- requirements:
262
- - - "~>"
263
- - !ruby/object:Gem::Version
264
- version: '0.55'
265
- - !ruby/object:Gem::Dependency
266
- name: coveralls
267
- requirement: !ruby/object:Gem::Requirement
268
- requirements:
269
- - - "~>"
270
- - !ruby/object:Gem::Version
271
- version: '0.8'
272
- type: :development
273
- prerelease: false
274
- version_requirements: !ruby/object:Gem::Requirement
275
- requirements:
276
- - - "~>"
277
- - !ruby/object:Gem::Version
278
- version: '0.8'
279
- - !ruby/object:Gem::Dependency
280
- name: rainbow
281
- requirement: !ruby/object:Gem::Requirement
282
- requirements:
283
- - - "~>"
284
- - !ruby/object:Gem::Version
285
- version: '3.0'
286
- type: :development
287
- prerelease: false
288
- version_requirements: !ruby/object:Gem::Requirement
289
- requirements:
290
- - - "~>"
291
- - !ruby/object:Gem::Version
292
- version: '3.0'
293
- - !ruby/object:Gem::Dependency
294
- name: bundler
295
- requirement: !ruby/object:Gem::Requirement
296
- requirements:
297
- - - "~>"
298
- - !ruby/object:Gem::Version
299
- version: '1.16'
300
- type: :development
301
- prerelease: false
302
- version_requirements: !ruby/object:Gem::Requirement
303
- requirements:
304
- - - "~>"
305
- - !ruby/object:Gem::Version
306
- version: '1.16'
307
- - !ruby/object:Gem::Dependency
308
- name: parseconfig
126
+ name: pony
309
127
  requirement: !ruby/object:Gem::Requirement
310
128
  requirements:
311
129
  - - "~>"
312
130
  - !ruby/object:Gem::Version
313
- version: '1.0'
314
- type: :development
131
+ version: '1.13'
132
+ type: :runtime
315
133
  prerelease: false
316
134
  version_requirements: !ruby/object:Gem::Requirement
317
135
  requirements:
318
136
  - - "~>"
319
137
  - !ruby/object:Gem::Version
320
- version: '1.0'
138
+ version: '1.13'
321
139
  - !ruby/object:Gem::Dependency
322
- name: rspec
140
+ name: notifier
323
141
  requirement: !ruby/object:Gem::Requirement
324
142
  requirements:
325
143
  - - "~>"
326
144
  - !ruby/object:Gem::Version
327
- version: '3.7'
328
- type: :development
145
+ version: '0.5'
146
+ type: :runtime
329
147
  prerelease: false
330
148
  version_requirements: !ruby/object:Gem::Requirement
331
149
  requirements:
332
150
  - - "~>"
333
151
  - !ruby/object:Gem::Version
334
- version: '3.7'
335
- description: |-
336
- latex_curriculum_vitae is a Rubygem which help you to write your job applications. The program aks you for all relevant data for compiling
337
- the curriculum vitae. It builds the motivational letter (if chosen in the gui), the cover and the cv. The resulting pdf will be found
338
- in your home directory. Also it generates an email with a standard content, which allows you to send the mail with your cv directly.
339
-
340
- The History.rdoc contains a detailed description on what has changed. For most
341
- users the NEWS file might be a better place to look since it contains
342
- change summaries between the different versions.
343
-
344
- latex_curriculum_vitae is released under the GPL3 License, see the file 'License.rdoc'
345
- for more information.
346
-
347
- The official web site is:
348
-
349
- https://github.com/saigkill/latex_curriculum_vitae
350
- email:
351
- - Sascha.Manns@mailbox.org
152
+ version: '0.5'
153
+ description: |2
154
+ latex_curriculum_vitae is a Rubygem which help you to write your job applications. The program aks you for all relevant data for compiling
155
+ the curriculum vitae. It builds the motivational letter (if chosen in the gui), the cover and the cv.
156
+ email: Sascha.Manns@outlook.de
352
157
  executables:
353
158
  - latexcv.rb
354
159
  extensions: []
355
160
  extra_rdoc_files:
356
- - CODE_OF_CONDUCT.md
357
- - CONTRIBUTING.md
358
- - History.rdoc
359
- - LICENSE.rdoc
161
+ - CHANGELOG.md
162
+ - LICENSE.md
360
163
  - MAINTENANCE.md
361
- - Manifest.txt
362
- - README.rdoc
164
+ - README.md
363
165
  files:
364
- - CODE_OF_CONDUCT.md
166
+ - CHANGELOG.md
365
167
  - CONTRIBUTING.md
366
- - Gemfile
367
- - Gemfile.lock
368
- - History.rdoc
369
- - LICENSE.rdoc
168
+ - LICENSE.md
370
169
  - MAINTENANCE.md
371
- - Manifest.txt
372
- - NEWS
373
- - README.rdoc
374
- - Rakefile
170
+ - README.md
375
171
  - bin/latexcv.rb
172
+ - bin/setup
376
173
  - data/latex_curriculum_vitae/Appendix/Bibliography/bibliography1.bib
174
+ - data/latex_curriculum_vitae/Appendix/Certificates/IVPA_Ergebnis.pdf
377
175
  - data/latex_curriculum_vitae/Appendix/Certificates/Zertifikat_Sascha_Manns1.pdf
378
176
  - data/latex_curriculum_vitae/Appendix/Certificates/kompetenzpass12013.pdf
379
177
  - data/latex_curriculum_vitae/Appendix/Certificates/thm-webeng1.pdf
@@ -382,6 +180,7 @@ files:
382
180
  - data/latex_curriculum_vitae/Appendix/Employers_Reference/haysnew.pdf
383
181
  - data/latex_curriculum_vitae/Appendix/Employers_Reference/openslx.pdf
384
182
  - data/latex_curriculum_vitae/Appendix/Employers_Reference/openslx1.pdf
183
+ - data/latex_curriculum_vitae/Appendix/Employers_Reference/wtg.pdf
385
184
  - data/latex_curriculum_vitae/Appendix/Employers_Reference/xcom.pdf
386
185
  - data/latex_curriculum_vitae/Appendix/First_References/bsaz.pdf
387
186
  - data/latex_curriculum_vitae/Appendix/First_References/hsaz.pdf
@@ -430,31 +229,33 @@ files:
430
229
  - lib/latex_curriculum_vitae/letter.rb
431
230
  - lib/latex_curriculum_vitae/notifier.rb
432
231
  - lib/latex_curriculum_vitae/outfile.rb
232
+ - lib/latex_curriculum_vitae/version.rb
433
233
  homepage: https://github.com/saigkill/latex_curriculum_vitae
434
234
  licenses:
435
235
  - GPL-3.0
436
- metadata: {}
437
- post_install_message: "*** Run rake setup to finish the installation *** Please file
438
- bugreports on: https://github.com/saigkill/latex_curriculum_vitae/issues"
439
- rdoc_options:
440
- - "--main"
441
- - README.rdoc
236
+ metadata:
237
+ homepage_uri: https://github.com/saigkill/latex_curriculum_vitae/issues
238
+ changelog_uri: https://github.com/saigkill/latex_curriculum_vitae/blob/master/CHANGELOG.md
239
+ source_code_uri: https://github.com/saigkill/latex_curriculum_vitae
240
+ documentation_uri: https://saigkill.github.io/latex_curriculum_vitae/
241
+ bug_tracker_uri: https://github.com/saigkill/latex_curriculum_vitae/issues
242
+ post_install_message:
243
+ rdoc_options: []
442
244
  require_paths:
443
245
  - lib
444
246
  required_ruby_version: !ruby/object:Gem::Requirement
445
247
  requirements:
446
248
  - - ">="
447
249
  - !ruby/object:Gem::Version
448
- version: 2.3.0
250
+ version: 2.7.0
449
251
  required_rubygems_version: !ruby/object:Gem::Requirement
450
252
  requirements:
451
253
  - - ">="
452
254
  - !ruby/object:Gem::Version
453
255
  version: '0'
454
256
  requirements: []
455
- rubyforge_project:
456
- rubygems_version: 2.7.6
257
+ rubygems_version: 3.1.2
457
258
  signing_key:
458
259
  specification_version: 4
459
- summary: latex_curriculum_vitae is a Rubygem which help you to write your job applications
260
+ summary: Tool to write your job applications
460
261
  test_files: []