Skip to content

Commit

Permalink
README.md: use bundle for all commands
Browse files Browse the repository at this point in the history
The README.md instructs users to install dependencies with bundle. Then
we need to use `bundler` when we want to interact with `rake`.
  • Loading branch information
bastelfreak authored and evgeni committed Jun 29, 2024
1 parent ab824e4 commit 92fda9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ Everything you push into the gh-pages branch goes live immediately!

To test your changes locally use

# rake
# bundle exec rake

to generate your site in the \_site directory, or

# rake server
# bundle exec rake server

To start Jekyll server locally.

Expand All @@ -42,7 +42,7 @@ Navigate to http://localhost:4000
## Contributing a blog post

1. (following on from step 5 above)
2. Run `rake new_post['title of my post']` to generate a new empty blog post
2. Run `bundle exec rake new_post['title of my post']` to generate a new empty blog post
3. Edit _posts/YYYY-MM-DD-title\_of\_my\_post.md
4. Set the author correctly, and appropriate tags (see previous posts for examples)
5. Add content, and preview as above.
Expand Down

0 comments on commit 92fda9d

Please sign in to comment.