public
Description: Send integrity build notifications to your yammer feed
Homepage:
Clone URL: git://github.com/jstewart/integrity-yammer.git
name age message
file .gitignore Tue Mar 10 14:45:45 -0700 2009 Initial Import [jstewart]
file README.markdown Wed Aug 12 08:30:36 -0700 2009 Add registration step to README [jstewart]
file Rakefile Tue Mar 10 14:45:45 -0700 2009 Initial Import [jstewart]
file integrity-yammer.gemspec Wed Aug 12 08:19:59 -0700 2009 Remove oauth/consumer requirement from notifier... [jstewart]
directory lib/ Fri Sep 25 06:37:10 -0700 2009 Use custom message with project name instead of... [jstewart]
directory spec/ Wed Mar 11 05:34:10 -0700 2009 Fix specs [jstewart]
README.markdown

Integrity Yammer Notifier

Post a message to a Yammer feed after each build

Setup

Step 1. Install Required Gems

oauth (gem install oauth)
yammer4r (gem install -s http://gems.github.com jstewart-yammer4r)
integrity-yammer (gem install -s http://gems.github.com jstewart-integrity-yammer)

Step 2. Add this to config.ru file:

require "rubygems"
require "notifier/yammer"
Integrity::Notifier.register(Integrity::Notifier::Yammer)

Step 3. Create a yammer oauth yml file with the following information (or use the yammer_create_oauth_yml script in yammer4r):

consumer:
  key: YOUR_KEY_HERE
  secret: YOUR_KEY_HERE

access:
  token: YOUR_KEY_HERE
  secret: YOUR_KEY_HERE

Step 4. Edit your project and enter the location of your yammer oauth file.

License

(The MIT License)

Copyright (c) 2009 Jason Stewart

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.