Skip to content

sneakin/snitch

 
 

Repository files navigation

=Snitch
Snitch is an git/subversion post-commit service integration helper. SCMs typically have a post commit hook which is executed each time you commit a change to a repository. Snitch makes it really easy to hook into the post-commit and send the commit message along with the files changed to various services on the web. 

Snitch currently works with campfire, twitter and email.

==Installation:

NOTE: the twitter gem will not work with a 0.5+ version of hpricot at this time due to a xml parsing bug

1. sudo gem install hpricot --source http://code.whytheluckystiff.net -v 0.4.86 
	
2. sudo gem install twitter tinder snitch

   Needed for the git support:

   sudo gem sources -a http://gems.github.com/ 
   sudo gem install mojombo-grit open4 mime-types


3. Create a configuration file (default is /home/deploy/.snitch) that looks like the following (be sure to fill in all the values). Be sure that none of the tabs from below get stay in the config file. It gets parse by yaml so formatting is important.

	# SNITCH START
	# what is the location of svnlook (you can find this on *nix boxes by typing `which svnlook`)
	svnlook: /usr/bin/svnlook

  # If you want git support, comment out the line above and uncomment this one:
  # git: true

	# what services would you like to send commit messages to?
	services:
	  :campfire:
	    :subdomain: 
	    :login: 
	    :password: 
	    :room: Development
	  :twitter:
	    :login: 
	    :password: 
	# SNITCH END

4. Create or edit the post-commit file inside your repository to look like the following. Be sure to edit the CONFIG_FILE variable to wherever you created your config file in step 3.

	#!/bin/sh
	REPOS="$1"
	REV="$2"
	CONFIG_FILE="/home/deploy/.snitch"

	snitch $REPOS $REV $CONFIG_FILE 2> /tmp/snitch

About

Drop dead easy subversion commit notifications.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages