agileanimal-integrity-twitter 1.0.2 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/Manifest CHANGED
@@ -1,8 +1,8 @@
1
1
  integrity-twitter.gemspec
2
2
  lib/notifier/config.haml
3
3
  lib/notifier/integrity_twitter.rb
4
- Manifest
5
4
  Rakefile
6
5
  README.markdown
7
6
  spec/integrity_twitter_spec.rb
8
7
  spec/spec_helper.rb
8
+ Manifest
data/README.markdown CHANGED
@@ -1,7 +1,7 @@
1
1
  Integrity
2
2
  =========
3
3
 
4
- [Integrity][http://www.integrityapp.com] is your friendly automated Continuous Integration server.
4
+ [Integrity](http://www.integrityapp.com) is your friendly automated Continuous Integration server.
5
5
 
6
6
  Integrity Twitter Notifier
7
7
  ===========================
@@ -44,6 +44,7 @@ License
44
44
  (The MIT License)
45
45
 
46
46
  Copyright (c) 2008 Chris Saylor
47
+
47
48
  Modified (Forked) 2009 Mark Madsen
48
49
 
49
50
  Permission is hereby granted, free of charge, to any person obtaining
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.2') do |e|
5
+ Echoe.new('integrity-twitter', '1.0.3') 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,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{integrity-twitter}
5
- s.version = "1.0.2"
5
+ s.version = "1.0.3"
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"]
@@ -11,9 +11,9 @@ module Integrity
11
11
  end
12
12
 
13
13
  def deliver!
14
- @httpauth = Twitter::HTTPAuth.new(@config['email'], @config['pass'])
14
+ @httpauth = Twitter::HTTPAuth.new(@config['email'], @config['pass'],{:ssl=>true})
15
15
  @tweet = Twitter::Base.new(@httpauth)
16
- @tweet.post(short_message)
16
+ @tweet.update(short_message)
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.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mark Madsen