https://github.com/railsware/plunger
Code review tool
https://github.com/railsware/plunger
Last synced: 5 months ago
JSON representation
Code review tool
- Host: GitHub
- URL: https://github.com/railsware/plunger
- Owner: railsware
- Created: 2011-10-18T08:10:45.000Z (about 14 years ago)
- Default Branch: master
- Last Pushed: 2011-10-25T08:03:53.000Z (about 14 years ago)
- Last Synced: 2025-07-28T08:48:25.219Z (6 months ago)
- Language: Python
- Homepage:
- Size: 145 KB
- Stars: 1
- Watchers: 20
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# Plunger
Plunger is code review tool for Google Code Reviews.
Basically it's ruby wrapper for [Rietveld](http://code.google.com/p/rietveld/) upload.py tool.
## Goals
* Automated original upload tool installation and configuration
* Automated changeset generation with description/title/reviewers etc...
Supported VCS:
* git
## Install
Install tool:
gem install plunger
Configure google code review for your organization:
See [Using Code Reviews with Google Apps](http://code.google.com/p/rietveld/wiki/CodeReviewHelp#Using_Code_Reviews_with_Google_Apps)
## Commands
To see all commands:
plunger --help
### Configure command
Synopsis:
plunger configure
It will ask your about required options and store configuration to *~/.gem/plunger*
### Push command
Synopsis:
plunger push
Push options:
--initial REVISION Initial changeset revision.
--final REVISION Final changeset revision.
--issue NUMBER Issue number to which to add. Defaults to new issue.
## Developer Flow
* Go to your VCS project and optionally switch to your working branch.
* Finish feature/fix implementation.
* Type ``plunger push``.
* Follow instructions and it generate and push changeset to codereview server.