agileanimal-integrity-twitter 1.0.3.1 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
2
2
  require 'rake'
3
3
  require 'echoe'
4
4
 
5
- Echoe.new('integrity-twitter', '1.0.3.1') do |e|
5
+ Echoe.new('integrity-twitter', '1.0.4') do |e|
6
6
  e.summary = "Twitter notifier for the Integrity continuous integration server"
7
7
  e.description = "Easily let Integrity tweet after each build"
8
8
  e.url = "http://integrityapp.com"
@@ -2,11 +2,11 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{integrity-twitter}
5
- s.version = "1.0.3.1"
5
+ s.version = "1.0.4"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Mark Madsen","Chris Saylor"]
9
- s.date = %q{2009-07-11}
9
+ s.date = %q{2009-07-13}
10
10
  s.description = %q{Easily let Integrity tweet after each build}
11
11
  s.email = %q{mark@___.___}
12
12
  s.extra_rdoc_files = ["lib/notifier/config.haml", "lib/notifier/integrity_twitter.rb", "README.markdown"]
@@ -13,7 +13,7 @@ module Integrity
13
13
  def deliver!
14
14
  @httpauth = Twitter::HTTPAuth.new(@config['email'], @config['pass'],{:ssl=>true})
15
15
  @tweet = Twitter::Base.new(@httpauth)
16
- @tweet.update(short_message)
16
+ @tweet.update("#{commit.author.name} | #{build.project.name}: #{short_message}") rescue nil
17
17
  end
18
18
 
19
19
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: agileanimal-integrity-twitter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3.1
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Madsen
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2009-07-11 00:00:00 -07:00
13
+ date: 2009-07-13 00:00:00 -07:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency