-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRakefile
More file actions
37 lines (32 loc) · 1.18 KB
/
Rakefile
File metadata and controls
37 lines (32 loc) · 1.18 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
29
30
31
32
33
34
35
36
37
require 'rake/testtask'
Rake::TestTask.new do |t|
t.verbose = true
t.test_files = FileList['test/*_test.rb']
end
task :default => :test
begin
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = "dash-ruby"
s.rubyforge_project = 'fiveruns'
s.summary = "FiveRuns Dash core library for Ruby"
s.email = "dev@fiveruns.com"
s.homepage = "http://github.com/fiveruns/dash-ruby"
s.description = "Provides an API to send metrics to the FiveRuns Dash service"
s.authors = ["FiveRuns Development Team"]
s.files = FileList['README.rdoc', 'Rakefile', 'version.yml', "{lib,test,recipes,examples}/**/*", ]
end
rescue LoadError
puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end
task :coverage do
rm_f "coverage"
rm_f "coverage.data"
rcov = "rcov --exclude gems --exclude version.rb --sort coverage --text-summary --html -o coverage"
system("#{rcov} test/*_test.rb")
if ccout = ENV['CC_BUILD_ARTIFACTS']
FileUtils.rm_rf '#{ccout}/coverage'
FileUtils.cp_r 'coverage', ccout
end
system "open coverage/index.html" if PLATFORM['darwin']
end