From 1ea4e57db491005143d64bd8442f69d18b89fbfb Mon Sep 17 00:00:00 2001 From: Andrew Kirilenko Date: Fri, 24 Feb 2012 02:52:28 +0300 Subject: [PATCH] github_webhook_worker for ruby_ng - shorter name --- ruby_ng/github_webhook_worker/github_webhook_worker.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruby_ng/github_webhook_worker/github_webhook_worker.rb b/ruby_ng/github_webhook_worker/github_webhook_worker.rb index 543441c..c701863 100644 --- a/ruby_ng/github_webhook_worker/github_webhook_worker.rb +++ b/ruby_ng/github_webhook_worker/github_webhook_worker.rb @@ -14,5 +14,5 @@ hipchat = HipChat::API.new(webhook_config['hipchat']['api_key']) parsed['commits'].each do |c| - log hipchat.rooms_message(webhook_config['hipchat']['room'], 'GithubWebhookWorker', "Rev: #{c['id'][0,9]} - #{c['message']}", true).body + log hipchat.rooms_message(webhook_config['hipchat']['room'], 'WebhookWorkerNG', "Rev: #{c['id'][0,9]} - #{c['message']}", true).body end