Skip to content

Commit

Permalink
small change and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Alastair Brunton committed Jan 22, 2009
1 parent 513f913 commit 88542b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion integrity-basecamp.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'integrity-basecamp'
s.version = '0.2.3'
s.version = '0.2.4'
s.date = '2009-01-22'
s.summary = 'Basecamp notifier for the Integrity continuous integration server'
s.description = 'Easily let Integrity alert Basecamp after each build'
Expand Down
4 changes: 2 additions & 2 deletions lib/notifier/basecamp.rb
Expand Up @@ -13,11 +13,11 @@ def self.to_haml


def deliver!
@basecamp = Basecamp.new(config['domain'], options['user'], options['pass'], true)
basecamp = Basecamp.new(config['domain'], options['user'], options['pass'], true)
message = {:title => short_message,
:body => full_message,
:category_id => config['category_id']}
@basecamp.post_message(config['project_id'], message)
basecamp.post_message(config['project_id'], message)
end

private
Expand Down

0 comments on commit 88542b0

Please sign in to comment.