kamisaku 0.1.0 → 0.1.2
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/CHANGELOG.md +19 -0
- data/Gemfile.lock +1 -1
- data/README.md +3 -1
- data/examples/{plain → paper}/john_doe.pdf +0 -0
- data/examples/sleek/john_doe.yml +157 -0
- data/lib/kamisaku/version.rb +1 -1
- data/lib/templates/{plain → paper}/template.html.erb +11 -4
- metadata +6 -5
- /data/examples/{john_doe.yml → paper/john_doe.yml} +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9fdf1df53449c244e517a611ec8c4f86d70f177d7a1915510673ed284e459862
|
|
4
|
+
data.tar.gz: c46cb9fdd46698f10a9ace7d982973156fc9d8f456a476ce3f60419bf6eb01e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc698661abf790c25d7d4c76b20379087c044ccc5bd12029558e28055ac9c58a9abd78484b7468ec52d1f990892dba0d37abac0ae39f6c24404b6e02bec7ede4
|
|
7
|
+
data.tar.gz: 01102145a9e37cc5a5db0e49423da90491204bbed1279be82f7f70a0c1981e5e67ba6bcb5f74045c2b0dd19f809196b29e693a46317e2d0628e283bf99a1ba6f
|
data/CHANGELOG.md
CHANGED
|
@@ -12,3 +12,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
12
12
|
### Changed
|
|
13
13
|
|
|
14
14
|
### Removed
|
|
15
|
+
|
|
16
|
+
## [0.1.2] - 2025-05-25
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- Update the paper template contact section so that the separator is not applied to the last item.
|
|
21
|
+
|
|
22
|
+
## [0.1.1] - 2025-05-24
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- Fix changelog URI in gemspec.
|
|
27
|
+
|
|
28
|
+
## [0.1.0] - 2025-05-24
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- Initial release.
|
|
33
|
+
- Support for two themes.
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
*Build a CV PDF from a yaml text file.*
|
|
4
4
|
|
|
5
|
+
[](https://badge.fury.io/rb/kamisaku)
|
|
6
|
+
|
|
5
7
|

|
|
6
8
|
|
|
7
9
|
See [examples](/examples) directory for sample generated PDF files based of [templates](/lib/templates).
|
|
@@ -100,7 +102,7 @@ $ gem install kamisaku
|
|
|
100
102
|
Once you have the YAML text file, feed it into the `bin/console` and specify the output location.
|
|
101
103
|
|
|
102
104
|
```bash
|
|
103
|
-
bin/console -c examples/john_doe.yml -o examples/
|
|
105
|
+
bin/console -c examples/paper/john_doe.yml -o examples/paper/john_doe.pdf -t paper
|
|
104
106
|
```
|
|
105
107
|
|
|
106
108
|
#### Bash options
|
|
Binary file
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
|
|
3
|
+
profile:
|
|
4
|
+
name: John Doe
|
|
5
|
+
title: Senior Software Engineer
|
|
6
|
+
about: >
|
|
7
|
+
Seasoned software engineer with more than a decade of experience
|
|
8
|
+
in designing and developing scalable web applications. Passionate
|
|
9
|
+
about building clean, maintainable code and driving best practices
|
|
10
|
+
in software development. Experienced in leading teams, mentoring
|
|
11
|
+
developers, and collaborating with cross-functional teams to deliver
|
|
12
|
+
high-quality solutions.
|
|
13
|
+
|
|
14
|
+
contact:
|
|
15
|
+
github: johndoe
|
|
16
|
+
mobile: +44 7912345678
|
|
17
|
+
website: https://johndoe.dev
|
|
18
|
+
email: john.doe@example.com
|
|
19
|
+
linkedin: john-doe
|
|
20
|
+
location:
|
|
21
|
+
country: United Kingdom
|
|
22
|
+
city: London
|
|
23
|
+
|
|
24
|
+
skills:
|
|
25
|
+
- area: Development
|
|
26
|
+
items:
|
|
27
|
+
- Python
|
|
28
|
+
- Django
|
|
29
|
+
- ReactJS
|
|
30
|
+
- TypeScript
|
|
31
|
+
- Node.js
|
|
32
|
+
- area: Database
|
|
33
|
+
items:
|
|
34
|
+
- PostgreSQL
|
|
35
|
+
- MySQL
|
|
36
|
+
- Redis
|
|
37
|
+
- area: Testing
|
|
38
|
+
items:
|
|
39
|
+
- PyTest
|
|
40
|
+
- Jest
|
|
41
|
+
- Cypress
|
|
42
|
+
- Selenium
|
|
43
|
+
- area: Version Control
|
|
44
|
+
items:
|
|
45
|
+
- Git
|
|
46
|
+
- GitHub
|
|
47
|
+
- GitLab
|
|
48
|
+
- area: Platforms/OS
|
|
49
|
+
items:
|
|
50
|
+
- AWS
|
|
51
|
+
- Google Cloud
|
|
52
|
+
- Linux
|
|
53
|
+
|
|
54
|
+
interests:
|
|
55
|
+
- Yoga
|
|
56
|
+
- Travelling
|
|
57
|
+
- Photography
|
|
58
|
+
- Hiking
|
|
59
|
+
- Chess
|
|
60
|
+
- Reading
|
|
61
|
+
- Cooking
|
|
62
|
+
- Gardening
|
|
63
|
+
- Running
|
|
64
|
+
- Fitness
|
|
65
|
+
- Volunteering
|
|
66
|
+
|
|
67
|
+
experiences:
|
|
68
|
+
- title: Senior Software Engineer
|
|
69
|
+
organisation: CloudCore Solutions
|
|
70
|
+
location:
|
|
71
|
+
city: London
|
|
72
|
+
country: United Kingdom
|
|
73
|
+
from:
|
|
74
|
+
month: 3
|
|
75
|
+
year: 2021
|
|
76
|
+
skills:
|
|
77
|
+
- Django
|
|
78
|
+
- React
|
|
79
|
+
- GraphQL
|
|
80
|
+
- AWS Lambda
|
|
81
|
+
- PostgreSQL
|
|
82
|
+
- Docker
|
|
83
|
+
- Terraform
|
|
84
|
+
achievements:
|
|
85
|
+
- >
|
|
86
|
+
Led the migration from a monolithic system to a microservices
|
|
87
|
+
architecture, significantly improving scalability and performance.
|
|
88
|
+
- >
|
|
89
|
+
Designed and implemented a serverless data processing pipeline
|
|
90
|
+
using AWS Lambda and S3, reducing operational costs by 30%.
|
|
91
|
+
- Established CI/CD workflows for automated deployments and testing.
|
|
92
|
+
|
|
93
|
+
- title: Lead Backend Engineer
|
|
94
|
+
organisation: FinEdge Technologies
|
|
95
|
+
location:
|
|
96
|
+
city: Manchester
|
|
97
|
+
country: United Kingdom
|
|
98
|
+
from:
|
|
99
|
+
month: 5
|
|
100
|
+
year: 2018
|
|
101
|
+
to:
|
|
102
|
+
month: 2
|
|
103
|
+
year: 2021
|
|
104
|
+
skills:
|
|
105
|
+
- Python
|
|
106
|
+
- FastAPI
|
|
107
|
+
- PostgreSQL
|
|
108
|
+
- Redis
|
|
109
|
+
- Kafka
|
|
110
|
+
- Kubernetes
|
|
111
|
+
- Jenkins
|
|
112
|
+
achievements:
|
|
113
|
+
- >
|
|
114
|
+
Spearheaded the development of a real-time financial analytics
|
|
115
|
+
platform, handling millions of transactions per second.
|
|
116
|
+
- >
|
|
117
|
+
Improved API response times by optimizing database queries and
|
|
118
|
+
implementing Redis caching.
|
|
119
|
+
- Led a team of backend engineers, conducting code reviews and
|
|
120
|
+
mentoring junior developers.
|
|
121
|
+
|
|
122
|
+
- title: Software Engineer
|
|
123
|
+
organisation: NextGen Media
|
|
124
|
+
location:
|
|
125
|
+
city: Birmingham
|
|
126
|
+
country: United Kingdom
|
|
127
|
+
from:
|
|
128
|
+
month: 7
|
|
129
|
+
year: 2015
|
|
130
|
+
to:
|
|
131
|
+
month: 4
|
|
132
|
+
year: 2018
|
|
133
|
+
skills:
|
|
134
|
+
- Node.js
|
|
135
|
+
- Express.js
|
|
136
|
+
- MongoDB
|
|
137
|
+
- WebSockets
|
|
138
|
+
- AWS
|
|
139
|
+
achievements:
|
|
140
|
+
- Developed a high-traffic video streaming platform, implementing
|
|
141
|
+
WebSockets for real-time interactions.
|
|
142
|
+
- Built a recommendation engine using machine learning models to
|
|
143
|
+
personalize user content.
|
|
144
|
+
- Automated deployment processes with AWS CodePipeline and Docker.
|
|
145
|
+
|
|
146
|
+
education:
|
|
147
|
+
- institute: Brighton Institute of Technology
|
|
148
|
+
location:
|
|
149
|
+
city: Brighton
|
|
150
|
+
country: United Kingdom
|
|
151
|
+
qualification: Bachelor of Science in Computer Science
|
|
152
|
+
field: Software Engineering
|
|
153
|
+
to:
|
|
154
|
+
month: 5
|
|
155
|
+
year: 2013
|
|
156
|
+
achievements:
|
|
157
|
+
- Awarded a scholarship for outstanding academic performance.
|
data/lib/kamisaku/version.rb
CHANGED
|
@@ -167,6 +167,10 @@
|
|
|
167
167
|
font-size: 16pt;
|
|
168
168
|
font-weight: 400;
|
|
169
169
|
font-family: "Garamond";
|
|
170
|
+
|
|
171
|
+
a:not(:last-child)::after {
|
|
172
|
+
content: " |";
|
|
173
|
+
}
|
|
170
174
|
}
|
|
171
175
|
}
|
|
172
176
|
|
|
@@ -286,20 +290,23 @@
|
|
|
286
290
|
<div class="name bottom-ruler"><%= dig :profile, :name %></div>
|
|
287
291
|
<div class="contact">
|
|
288
292
|
<% if has? :contact, :email %>
|
|
289
|
-
<a href="mailto:<%= dig :contact, :email %>"><%= dig :contact, :email %></a>
|
|
293
|
+
<a href="mailto:<%= dig :contact, :email %>"><%= dig :contact, :email %></a>
|
|
290
294
|
<% end %>
|
|
291
295
|
<% if has? :contact, :mobile %>
|
|
292
|
-
<a href="tel:<%= dig :contact, :mobile %>"><%= dig :contact, :mobile %></a>
|
|
296
|
+
<a href="tel:<%= dig :contact, :mobile %>"><%= dig :contact, :mobile %></a>
|
|
293
297
|
<% end %>
|
|
294
298
|
<% if has?(:contact, :location, :city) || has?(:contact, :location, :country) %>
|
|
295
|
-
<%= dig :contact, :location, :city %>, <%= dig :contact, :location, :country %>
|
|
299
|
+
<%= dig :contact, :location, :city %>, <%= dig :contact, :location, :country %>
|
|
296
300
|
<% end %>
|
|
297
301
|
<% if has? :contact, :website %>
|
|
298
|
-
<a href="<%= dig :contact, :website %>"><%= dig :contact, :website %></a>
|
|
302
|
+
<a href="<%= dig :contact, :website %>"><%= dig :contact, :website %></a>
|
|
299
303
|
<% end %>
|
|
300
304
|
<% if has? :contact, :github %>
|
|
301
305
|
<a href="https://github.com/<%= dig :contact, :github %>">github.com/<%= dig :contact, :github %></a>
|
|
302
306
|
<% end %>
|
|
307
|
+
<% if has? :contact, :linkedin %>
|
|
308
|
+
<a href="https://linkedin.com/in/<%= dig :contact, :linkedin %>">linkedin.com/in/<%= dig :contact, :linkedin %></a>
|
|
309
|
+
<% end %>
|
|
303
310
|
</div>
|
|
304
311
|
</div>
|
|
305
312
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kamisaku
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sinaru Gunawardena
|
|
@@ -25,9 +25,10 @@ files:
|
|
|
25
25
|
- LICENSE.txt
|
|
26
26
|
- README.md
|
|
27
27
|
- Rakefile
|
|
28
|
-
- examples/john_doe.
|
|
29
|
-
- examples/
|
|
28
|
+
- examples/paper/john_doe.pdf
|
|
29
|
+
- examples/paper/john_doe.yml
|
|
30
30
|
- examples/sleek/john_doe.pdf
|
|
31
|
+
- examples/sleek/john_doe.yml
|
|
31
32
|
- kamisaku.png
|
|
32
33
|
- lib/kamisaku.rb
|
|
33
34
|
- lib/kamisaku/arg_parser.rb
|
|
@@ -41,7 +42,7 @@ files:
|
|
|
41
42
|
- lib/kamisaku/cv_generator.rb
|
|
42
43
|
- lib/kamisaku/meta_file_parser.rb
|
|
43
44
|
- lib/kamisaku/version.rb
|
|
44
|
-
- lib/templates/
|
|
45
|
+
- lib/templates/paper/template.html.erb
|
|
45
46
|
- lib/templates/sleek/template.html.erb
|
|
46
47
|
- sig/kamisaku.rbs
|
|
47
48
|
homepage: https://github.com/sinaru/kamisaku
|
|
@@ -50,7 +51,7 @@ licenses:
|
|
|
50
51
|
metadata:
|
|
51
52
|
homepage_uri: https://github.com/sinaru/kamisaku
|
|
52
53
|
source_code_uri: https://github.com/sinaru/kamisaku
|
|
53
|
-
changelog_uri: https://github.com/sinaru/kamisaku/CHANGELOG.md
|
|
54
|
+
changelog_uri: https://github.com/sinaru/kamisaku/blob/main/CHANGELOG.md
|
|
54
55
|
bug_tracker_uri: https://github.com/sinaru/kamisaku/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug
|
|
55
56
|
rdoc_options: []
|
|
56
57
|
require_paths:
|
|
File without changes
|