resume_exporter 1.0.0 → 1.1.0
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/bin/resume_exporter +1 -1
- data/lib/exporters/xml.rb +1 -1
- data/lib/extractors/base.rb +2 -2
- data/lib/extractors/html/linkedin.rb +1 -1
- data/lib/extractors/html/xing.rb +1 -1
- data/lib/extractors/json/fresh.rb +2 -2
- data/lib/extractors/json/prtflio.rb +4 -4
- data/lib/templates/default.json.jbuilder +128 -146
- data/lib/templates/default.md.erb +76 -37
- data/lib/templates/default.txt.erb +154 -100
- data/lib/templates/default.xml.builder +211 -149
- data/lib/templates/fresh.json.jbuilder +3 -5
- data/lib/templates/json_resume.json.jbuilder +2 -2
- metadata +2 -2
@@ -70,13 +70,11 @@ json.projects @data.dig("projects") do |project|
|
|
70
70
|
end
|
71
71
|
|
72
72
|
json.skills do
|
73
|
-
json.sets @data.dig("skills"
|
73
|
+
json.sets @data.dig("skills") do |skill|
|
74
74
|
json.name skill["name"]
|
75
75
|
json.level skill["level"]
|
76
76
|
json.skills skill["keywords"]
|
77
77
|
end
|
78
|
-
|
79
|
-
json.list @data.dig("skills", "list")
|
80
78
|
end
|
81
79
|
|
82
80
|
json.service do
|
@@ -187,7 +185,7 @@ json.interests @data.dig("interests") do |interest|
|
|
187
185
|
json.keywords interest["keywords"]
|
188
186
|
end
|
189
187
|
|
190
|
-
json.extracurricular @data.dig("
|
188
|
+
json.extracurricular @data.dig("extracurricular") do |entry|
|
191
189
|
json.title entry["title"]
|
192
190
|
json.activity entry["summary"]
|
193
191
|
json.location entry["location"]
|
@@ -196,7 +194,7 @@ json.extracurricular @data.dig("extracurriculars") do |entry|
|
|
196
194
|
end
|
197
195
|
|
198
196
|
json.affiliation do
|
199
|
-
json.history @data.dig("
|
197
|
+
json.history @data.dig("affiliation") do |entry|
|
200
198
|
json.category entry["category"]
|
201
199
|
json.organization entry["organization"]
|
202
200
|
json.role entry["roles"].join(", ") if entry["roles"]
|
@@ -31,7 +31,7 @@ json.work @data.dig("employment") do |job|
|
|
31
31
|
json.highlights job["highlights"]
|
32
32
|
end
|
33
33
|
|
34
|
-
json.volunteer @data.dig("service").select{|s| s["category"].downcase.include?("volunteer") } do |volunteer|
|
34
|
+
json.volunteer @data.dig("service").select{|s| s["category"].downcase.include?("volunteer") if s["category"] } do |volunteer|
|
35
35
|
json.organization volunteer["organization"]
|
36
36
|
json.position volunteer["position"]
|
37
37
|
json.url volunteer["url"]
|
@@ -51,7 +51,7 @@ json.education @data.dig("education") do |education|
|
|
51
51
|
json.courses education["curriculum"]
|
52
52
|
end
|
53
53
|
|
54
|
-
json.awards @data.dig("recognition").select{|a| a["category"].downcase.include?("award") } do |award|
|
54
|
+
json.awards @data.dig("recognition").select{|a| a["category"].downcase.include?("award") if a["category"] } do |award|
|
55
55
|
json.title award["title"]
|
56
56
|
json.date award["startDate"]
|
57
57
|
json.awarder award["from"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: resume_exporter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wolfram Müller
|
@@ -280,7 +280,7 @@ files:
|
|
280
280
|
- lib/templates/html/_writing.liquid
|
281
281
|
- lib/templates/html/default.liquid
|
282
282
|
- lib/templates/json_resume.json.jbuilder
|
283
|
-
homepage: http://programmercv.com/
|
283
|
+
homepage: http://programmercv.com/resume_exporter
|
284
284
|
licenses:
|
285
285
|
- MIT
|
286
286
|
metadata: {}
|