latex_curriculum_vitae 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +10 -8
  3. data/Gemfile.lock +53 -52
  4. data/History.rdoc +15 -0
  5. data/LICENSE.rdoc +619 -24
  6. data/Manifest.txt +7 -12
  7. data/NEWS +69 -0
  8. data/README.rdoc +103 -43
  9. data/Rakefile +31 -42
  10. data/STATUS.rdoc +23 -0
  11. data/bin/latexcv.rb +13 -8
  12. data/data/latex_curriculum_vitae/Cover/Cover.tex +12 -4
  13. data/data/latex_curriculum_vitae/Motivational_Letter/bwanschreiben.tex +23 -6
  14. data/data/latex_curriculum_vitae/Pictures/codealike.png +0 -0
  15. data/data/latex_curriculum_vitae/Pictures/codestats.png +0 -0
  16. data/data/latex_curriculum_vitae/Pictures/openhub.png +0 -0
  17. data/data/latex_curriculum_vitae/Pictures/signatur1.png +0 -0
  18. data/data/latex_curriculum_vitae/Pictures/wakatime.jpg +0 -0
  19. data/data/latex_curriculum_vitae/Resume/cv_10.tex +28 -10
  20. data/etc/latex_curriculum_vitae.cfg +2 -1
  21. data/etc/personal_data.tex +2 -1
  22. data/lib/latex_curriculum_vitae.rb +60 -51
  23. data/lib/latex_curriculum_vitae/cover.rb +17 -9
  24. data/lib/latex_curriculum_vitae/cv.rb +41 -27
  25. data/lib/latex_curriculum_vitae/email.rb +168 -94
  26. data/lib/latex_curriculum_vitae/entityfile.rb +99 -68
  27. data/lib/latex_curriculum_vitae/get-config.rb +28 -18
  28. data/lib/latex_curriculum_vitae/letter.rb +19 -12
  29. data/lib/latex_curriculum_vitae/notifier.rb +20 -13
  30. data/lib/latex_curriculum_vitae/outfile.rb +30 -19
  31. metadata +89 -56
  32. data/.autotest +0 -25
  33. data/.codeclimate.yml +0 -8
  34. data/.coveralls.yml +0 -2
  35. data/.gemnasium.yml +0 -5
  36. data/.rspec +0 -2
  37. data/.rubocop.yml +0 -38
  38. data/.scrutinizer.yml +0 -21
  39. data/.travis.yml +0 -29
  40. data/CODE_OF_CONDUCT.md +0 -17
  41. data/CONTRIBUTING.md +0 -25
  42. data/config.reek +0 -111
  43. data/data/latex_curriculum_vitae/Appendix/Employers_Reference/wtg.pdf +0 -0
data/.scrutinizer.yml DELETED
@@ -1,21 +0,0 @@
1
- build:
2
- environment:
3
- ruby: '2.2.3'
4
-
5
- checks:
6
- ruby:
7
- code_rating: true
8
- duplicate_code: true
9
- style_while_until_do: true
10
- style_signal_exception:
11
- enforced_style: semantic
12
- style_redundant_exception: true
13
- style_raise_args:
14
- enforced_style: exploded
15
- style_predicate_name: true
16
- style_comment_annotation: true
17
- rails_output: true
18
-
19
- filter:
20
- excluded_paths:
21
- - 'spec/*'
data/.travis.yml DELETED
@@ -1,29 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.2.0
4
- - 2.2.1
5
- - 2.2.2
6
- - 2.2.3
7
-
8
- dist: trusty
9
-
10
- os:
11
- - linux
12
-
13
- env:
14
- global:
15
- - JRUBY_OPTS=-Xcext.enabled=true
16
- - CI=true
17
- - TRAVIS=true
18
- - LANG=en_US.UTF-8
19
- - LC_ALL=en_US.UTF-8
20
-
21
- before_install:
22
- - gem install bundler
23
-
24
- after_success:
25
- - CI=true TRAVIS=true coveralls --verbose
26
-
27
- notifications:
28
- email:
29
- - Sascha.Manns@mailbox.org
data/CODE_OF_CONDUCT.md DELETED
@@ -1,17 +0,0 @@
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 DELETED
@@ -1,25 +0,0 @@
1
- # Contributing
2
-
3
- ## Branches
4
-
5
- ### `master` branch
6
-
7
- The master branch is the current stable released version.
8
-
9
- ### `develop` branch
10
-
11
- The develop branch is the current edge of development.
12
-
13
- ## Pull requests
14
-
15
- * https://github.com/saigkill/latex_curriculum_vitae/pulls
16
-
17
- Please base all pull requests off the `develop` branch. Merges to
18
- `master` only occur through the `develop` branch. Pull requests
19
- based on `master` will likely be cherry picked.
20
-
21
- ## Issues
22
-
23
- Need to report an issue? Use that issue tracker:
24
-
25
- * https://github.com/saigkill/latex_curriculum_vitae/issues
data/config.reek DELETED
@@ -1,111 +0,0 @@
1
- ---
2
- Attribute:
3
- enabled: false
4
- exclude: []
5
- BooleanParameter:
6
- enabled: true
7
- exclude: []
8
- ClassVariable:
9
- enabled: true
10
- exclude: []
11
- ControlParameter:
12
- enabled: true
13
- exclude: []
14
- DataClump:
15
- enabled: true
16
- exclude: []
17
- max_copies: 2
18
- min_clump_size: 2
19
- DuplicateMethodCall:
20
- enabled: true
21
- exclude: []
22
- max_calls: 3
23
- allow_calls: []
24
- FeatureEnvy:
25
- enabled: true
26
- exclude: []
27
- IrresponsibleModule:
28
- enabled: true
29
- exclude: []
30
- LongParameterList:
31
- enabled: true
32
- exclude: []
33
- max_params: 3
34
- overrides:
35
- initialize:
36
- max_params: 5
37
- LongYieldList:
38
- enabled: true
39
- exclude: []
40
- max_params: 3
41
- ModuleInitialize:
42
- enabled: true
43
- exclude: []
44
- NestedIterators:
45
- enabled: true
46
- exclude: []
47
- max_allowed_nesting: 1
48
- ignore_iterators: []
49
- NilCheck:
50
- enabled: true
51
- exclude: []
52
- PrimaDonnaMethod:
53
- enabled: true
54
- exclude: []
55
- RepeatedConditional:
56
- enabled: true
57
- exclude: []
58
- max_ifs: 2
59
- TooManyInstanceVariables:
60
- enabled: true
61
- exclude: []
62
- max_instance_variables: 9
63
- TooManyMethods:
64
- enabled: true
65
- exclude: []
66
- max_methods: 25
67
- TooManyStatements:
68
- enabled: true
69
- exclude:
70
- - initialize
71
- max_statements: 15
72
- UncommunicativeMethodName:
73
- enabled: true
74
- exclude: []
75
- reject:
76
- - !ruby/regexp /^[a-z]$/
77
- - !ruby/regexp /[0-9]$/
78
- - !ruby/regexp /[A-Z]/
79
- accept: []
80
- UncommunicativeModuleName:
81
- enabled: true
82
- exclude: []
83
- reject:
84
- - !ruby/regexp /^.$/
85
- - !ruby/regexp /[0-9]$/
86
- accept:
87
- - Inline::C
88
- UncommunicativeParameterName:
89
- enabled: true
90
- exclude: []
91
- reject:
92
- - !ruby/regexp /^.$/
93
- - !ruby/regexp /[0-9]$/
94
- - !ruby/regexp /[A-Z]/
95
- - !ruby/regexp /^_/
96
- accept: []
97
- UncommunicativeVariableName:
98
- enabled: true
99
- exclude: []
100
- reject:
101
- - !ruby/regexp /^.$/
102
- - !ruby/regexp /[0-9]$/
103
- - !ruby/regexp /[A-Z]/
104
- accept:
105
- - _
106
- UnusedParameters:
107
- enabled: true
108
- exclude: []
109
- UtilityFunction:
110
- enabled: true
111
- exclude: []