Project

pnslurp

0.0
No commit activity in last 3 years
No release in over 3 years
Slurps notes from the given file (notes.slurper by default) and creates ProjectNotifier notes from them.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

pnslurp¶ ↑

PNSlurp allows you to manage a release note file and upload the notes into ProjectNotifier.

Note on Patches/Pull Requests¶ ↑

  • Fork the project.

  • Make your feature addition or bug fix.

  • Add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Commit, do not mess with rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)

  • Send me a pull request.

Setup¶ ↑

$gem install pnslurp

Config¶ ↑

PNSlurp requires a slurper_config.yml file in your working directory. This file contains your ProjectNotifier API information.

Example¶ ↑

account: my account
project: my project
token: 123abc123abc123abc 
default_tags: everyone, dev
ssl: true

Note: ssl might not be enabled yet on projectnotifier.com.

The account and project tells ProjectNotifier which project to add your notes to. It can be found on the url for the project.

The token can be found under the Account menu in ProjectNotifier.

Usage¶ ↑

Create a notes.slurper file and compose your notes in the slurper notes format. In your working directory use the slurp command to import your notes from the notes.slurper file into ProjectNotifier. PNSlurp looks for a notes.slurper file in your current directory by default, however, you can provide an alternate note source file if necessary.

Default

$slurp ~/notes.slurper

Also valid

$slurp ~/special_notes.slurper

Or even

$slurp ~/mynotes.txt

Example notes.slurper¶ ↑

==
subject:
  Completed important feature
body:
  This feature is really cool and this is how you can inspect it.

==
subject:
  Completed important feature
body:
  This feature is really cool and this is how you can inspect it.
tag_list:
  testers-only

Note: the note source file is whitespace-sensitive. Be sure the value for each key phrase is indented with two spaces beneath each key phrase. Also, start each note with a double-equals on its own line.

Your best bet is to leverage slurper.vim or TextMate and benefit auto-indenting goodness.

Credit - Thank you to the Hashrocket crew for their PivotalTracker slurper gem. The ProjectNotifier gem completely leveraged their hard work.