forked from cwsaylor/integrity-twitter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRakefile
27 lines (21 loc) · 795 Bytes
/
Rakefile
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
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 = "[email protected]"
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