0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

yamlを使って履歴書作成

Posted at

はじめに

転職活動をしており、履歴書を作成する機会が多いです。ただ、履歴書の作成って面倒ではないですか?社用PCではないので、office系のアプリケーションは使えないですし。。。
そこで、yaml形式で内容を記載すれば、自動で履歴書を生成してくれる方法を探しましたので、備忘録がてら紹介します。

実行手順

履歴書を作成したいディレクトリを作成します。
今回は、/users/username/jobというディレクトリを作成します。

mkdir ~/job

次に、yaml_cvというリポジトリをクローンします。

cd ~/job
git clone https://github.com/ikasam/yaml_cv.git
cd yaml_cv

必要モジュールのインストールを行います。

bundle config path vendor/bundle
bundle config set --local without 'documentation'
bundle install

以下コマンドで履歴書を作成します。

ruby make_cv.rb -i data.yaml -s style.txt -o output.pdf

このコマンドで、data.yamlというファリをstyle.txtに倣い、output.pdfという形式で出力します。

以上。

参考

YAMLで履歴書を作る

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?