Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ドキュメントのディレクトリ構成変更に伴いRakefileの内容を修正した #748

Merged

Conversation

maimux2x
Copy link
Collaborator

@maimux2x maimux2x commented Oct 30, 2023

issue

#747

やったこと

#608
上記PRでドキュメントのディレクトリ構成が変更になっているが、翻訳やブログのファイルを作成するRakefileの内容が対応していなかったため修正しました。

翻訳は

'pages' => File.join(SOURCE, "_pages")

に作成され、
ブログは

'posts' => File.join(SOURCE, "_posts")

のblogディレクトリ配下にファイルが作成されるようにしました。

修正後

修正後、以下のように正しく各ファイルが作成されます。

$ bundle exec rake blog title="a good entry"
Creating new post: ./_posts/blog/2023-10-30-a-good-entry.markdown

$ bundle exec rake blog title="a nice entry" post_ext="html"
Creating new post: ./_posts/blog/2023-10-30-a-nice-entry.html

$ bundle exec rake post title="my fabulous post"
Creating new post: ./_pages/2023-10-30-my-fabulous-post.markdown

@urimaro urimaro linked an issue Nov 2, 2023 that may be closed by this pull request
Rakefile Show resolved Hide resolved
Copy link
Collaborator

@urimaro urimaro left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM:+1:です

@urimaro urimaro merged commit de76def into railsgirls-jp:master Nov 6, 2023
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Rakefile内のブログ記事作成箇所を修正する
2 participants