Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aslakhellesoy/pickler
PIvotal traCKer Liaison to cucumbER
https://github.com/aslakhellesoy/pickler
Last synced: about 1 month ago
JSON representation
PIvotal traCKer Liaison to cucumbER
- Host: GitHub
- URL: https://github.com/aslakhellesoy/pickler
- Owner: aslakhellesoy
- License: mit
- Created: 2008-11-30T14:08:49.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2008-12-01T15:55:39.000Z (about 16 years ago)
- Last Synced: 2024-04-14T15:13:28.109Z (8 months ago)
- Language: Ruby
- Homepage:
- Size: 103 KB
- Stars: 7
- Watchers: 2
- Forks: 28
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- License: MIT-LICENSE
Awesome Lists containing this project
README
= Pickler
Synchronize user stories in Pivotal Tracker with Cucumber features.
== Getting started
gem install tpope-pickler --source=http://gems.github.com
echo "api_token: ..." > ~/.tracker.yml
echo "project_id: ..." > ~/my/app/features/tracker.ymlFor details about the Pivotal Tracker API, including where to find your API
token and project id, see http://www.pivotaltracker.com/help/api .The pull and push commands map the story's name into the "Feature: ..." line
and the story's description with an additional two space indent into the
feature's body. Keep this in mind when entering stories into Pivotal Tracker.== Usage
pickler pull
Download all well formed stories to the features/ directory. Previously
unseen stories will be given a numeric filename that you are encouraged to
change.pickler push
Upload all features with a tracker url in a comment on the first line.
pickler search
List all stories matching the given query.
pickler show
Show details for the story referenced by the id.
pickler start [basename]
Pull a given feature and change its state to started. If basename is given
and no local file exists, features/basename.feature will be created in lieu
of features/id.feature.pickler finish
Push a given feature and change its state to finished.
== Disclaimer
No warranties, expressed or implied.
Notably, the push and pull commands are quite happy to blindly clobber
features if so instructed. Pivotal Tracker has a history to recover things
server side.