-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ガイドを作成するrakeコマンドが `post` を指定する形になっていて何を作成するコマンドかが判断しにくくなっていたため、明示的に`guide`を指定するように修正しました。 ``` bundle exec rake guide title="my fabulous guide" ``` `CoC` や `About` のようなドメイン直下のページを新規で作成するコマンドがなかったため追加しました。 ``` $ bundle exec rake original_content title="new original content" ``` `_pages-jp` 配下に新規ファイルが作成されます。 ファイル作成時には以下の項目がデフォルトで追加されるようにしてあります。 ``` --- layout: original_content title: "my fabulous post" permalink: --- ``` 独立したページを作成するコマンドを実行すると、「ディレクトリ+ファイル」が生成されるため、コマンド名もそれが明示的にわかるように修正しました。 ``` $ bundle exec rake directory_with_page name="something" ``` 1~3に合わせてREADMEを修正しました。
- Loading branch information
Showing
2 changed files
with
77 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters