0.0
No commit activity in last 3 years
No release in over 3 years
Streamline your writing in Bunto with these commands.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.5
~> 10.0
~> 3.0

Runtime

~> 1.0.0
 Project Readme

Bunto::Compose

Streamline your writing in Bunto with some commands.

Build Status

Installation

Add this line to your application's Gemfile:

gem 'bunto-compose', group: [:bunto_plugins]

And then execute:

$ bundle

Usage

After you have installed (see above), run bundle exec bunto help and you should see:

Listed in help you will see new commands available to you:

  draft      # Creates a new draft post with the given NAME
  post       # Creates a new post with the given NAME
  publish    # Moves a draft into the _posts directory and sets the date
  unpublish  # Moves a post back into the _drafts directory
  page       # Creates a new page with the given NAME

Create your new page using:

$ bundle exec bunto page "My New Page"

Create your new post using:

$ bundle exec bunto post "My New Post"

Create your new draft using:

$ bundle exec bunto draft "My new draft"

Publish your draft using:

$ bundle exec bunto publish _drafts/my-new-draft.md
# or specify a specific date on which to publish it
$ bundle exec bunto publish _drafts/my-new-draft.md --date 2014-01-24

Unpublish your post using:

$ bundle exec bunto unpublish _posts/2014-01-24-my-new-draft.md

Contributing

  1. Fork it ( http://github.com/bunto/bunto-compose/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Run the specs (script/cibuild)
  4. Commit your changes (git commit -am 'Add some feature')
  5. Push to the branch (git push origin my-new-feature)
  6. Create new Pull Request