pjhyett / github-services

Official GitHub Services Integration

This URL has Read+Write access

pjhyett (author)
Tue Apr 28 18:15:05 -0700 2009
commit  25b27acf8cdd096442316a4f65c9afc426211e78
tree    e620b08796a34df7e1dc27a1fb654f3167e4fd15
parent  11ddcc81408b7f1326d376017d4071d454076b41
name age message
file .gitignore Wed Jul 09 22:18:36 -0700 2008 Improving email format. This includes a second... [eric]
file CONTRIBUTORS Sun Jan 25 20:53:48 -0800 2009 More thanks [pjhyett]
file LICENSE Mon Jul 14 01:30:49 -0700 2008 add LICENSE [pjhyett]
file README.mkdn Wed Jan 21 18:36:08 -0800 2009 Updating bugs/issues link to point to support.g... [ngerakines]
file Rakefile Tue May 06 02:08:47 -0700 2008 Added Rakefile with a RSpec task to make runnin... [Luke Redpath]
directory docs/ Sun Jan 25 20:44:21 -0800 2009 Added a nick config option - needed for Private... [Dav Glass]
file github-services.rb Tue Apr 28 18:15:05 -0700 2009 use mongrel if it's installed [pjhyett]
directory services/ Mon Feb 16 13:36:55 -0800 2009 [campfire] Don't ignore remote merges as they'r... [defunkt]
directory spec/ Wed Nov 12 11:49:45 -0800 2008 Moved experimental testing framework into it's ... [Luke Redpath]
directory vendor/ Loading commit data...
README.mkdn

GitHub Services

How the services work

  1. A post-receive background job is submitted when someone pushes their commits to GitHub
  2. If the repository the commits belong to has any "Service Hooks" setup, the job makes a request to http://services-server/service_name/ with the following data:
    • params[:payload] containing all of the commit data (the same data you get using the API)
    • params[:data] containing the service data (username, password, room, etc)
  3. Sinatra (github-services.rb) processes the request (twitters your data, says something in campfire, posts it to lighthouse, etc)
  4. Rinse and repeat

Steps to contributing

  1. Fork the project
  2. Create a new file in /services/ called service_name.rb, using the following template:

    service :service_name do |data, payload|
    end
    
  3. Vendor any external gems your code relies on, and make sure to include it in the requires at the top of github-services.rb

  4. Add documentation to docs/service_name (refer to the others for guidance)
  5. Send us a pull request
  6. Once it's accepted, we'll add any new necessary data fields to the GitHub front-end so people can start using your addition.

Patches including tests are encouraged

Bugs can be filed here: http://support.github.com/discussions/post-receive-issues