-
Notifications
You must be signed in to change notification settings - Fork 48
/
Rakefile
38 lines (32 loc) · 944 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
27
28
29
30
31
32
33
34
35
36
37
38
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "differ"
gem.summary = "A simple gem for generating string diffs"
gem.email = "pvande@gmail.com"
gem.homepage = "http://github.com/pvande/differ"
gem.authors = [ "Pieter van de Bruggen" ]
end
rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'differ'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
require 'spec/rake/spectask'
Spec::Rake::SpecTask.new(:spec) do |spec|
spec.libs << 'lib' << 'spec'
spec.spec_files = FileList['spec/**/*_spec.rb']
end
Spec::Rake::SpecTask.new(:rcov) do |spec|
spec.libs << 'lib' << 'spec'
spec.pattern = 'spec/**/*_spec.rb'
spec.rcov = true
end
task :default => :spec