public
Description: Twitter notifier for the Integrity continuous integration server
Homepage:
Clone URL: git://github.com/cwsaylor/integrity-twitter.git
commit  1be98f607f158890430bd30a8ee5fc99fcd642dc
tree    bf2e44b4802b0180fbadd6d89dd7cc43ce8bb3c2
parent  2ead28745c80dfc28ee770b8b04e7563a63dce60
integrity-twitter / Rakefile
100644 28 lines (21 sloc) 0.795 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
require 'rubygems'
require 'rake'
require 'echoe'
 
Echoe.new('integrity-twitter', '1.0.1') do |e|
  e.summary = "Twitter notifier for the Integrity continuous integration server"
  e.description = "Easily let Integrity tweet after each build"
  e.url = "http://integrityapp.com"
  e.author = "Chris Saylor"
  e.email = "chris@justhack.com"
  e.has_rdoc = false
  e.development_dependencies = []
  e.runtime_dependencies = ['foca-integrity', 'twitter']
end
 
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext }
 
require 'spec/rake/spectask'
 
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_opts = ["--color", "--format", "progress"]
  t.spec_files = Dir['spec/**/*_spec.rb'].sort
  t.libs = ['lib']
  t.rcov = false
end