resume_exporter 1.1.0 → 1.1.1
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/html.rb +0 -1
- data/lib/extractors/json.rb +2 -0
- data/lib/templates/default.json.jbuilder +1 -1
- data/lib/templates/default.xml.builder +1 -1
- data/lib/templates/html/_image.liquid +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39fdc0e03d3c82655edbcb6cf4e1f45ab870dc17
|
|
4
|
+
data.tar.gz: e356ca08dee816741201975804a5568b4877e549
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d55b48ad0ff3d835ff1b20bfb1cb1cdc7e5a40870a5dfdc82db32c75a6c68c27ddebf55ce446fdf185f0d8990c53fcd63c07ea9c580d6f9fc783996133c505b
|
|
7
|
+
data.tar.gz: d8d59397796067ed74cd71ac6ea436d1f673b9c536541c4919bfcbccb441e1710cc9afef563905400c7edf738d42488f06bd4b659fb10ef6a270c372721a0d37
|
data/bin/resume_exporter
CHANGED
|
@@ -4,7 +4,7 @@ require 'rubygems'
|
|
|
4
4
|
require 'commander/import'
|
|
5
5
|
require 'resume_exporter'
|
|
6
6
|
|
|
7
|
-
program :version, '1.1.
|
|
7
|
+
program :version, '1.1.1'
|
|
8
8
|
program :description, 'ResumeExporter is a tool to export data from public profile html files.
|
|
9
9
|
Save your profile (e.g. from LinkedIn, Xing, or Stackoverflow) as html and export to json or xml with the help of ResumeExporter.
|
|
10
10
|
|
data/lib/exporters/html.rb
CHANGED
data/lib/extractors/json.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{% if site.data.resume.basics.image %}
|
|
2
2
|
<div class="row image noprint">
|
|
3
3
|
<div class="col-12">
|
|
4
|
-
<img class="profile-image" src="{{ site.data.resume.basics.image }}" />
|
|
4
|
+
<img class="profile-image" src="{{ site.data.resume.basics.image | encode64 }}" />
|
|
5
5
|
</div>
|
|
6
6
|
</div>
|
|
7
7
|
{% endif %}
|