forked from mikel/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
45 lines (35 loc) · 1.23 KB
/
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
39
40
41
42
43
44
45
require File.expand_path('../spec/environment', __FILE__)
require 'rake/rdoctask'
require 'rake/testtask'
require 'spec/rake/spectask'
desc "Build a gem file"
task :build do
system "gem build mail.gemspec"
end
task :default => :spec
Spec::Rake::SpecTask.new(:rcov) do |t|
t.spec_files = FileList['test/**/tc_*.rb', 'spec/**/*_spec.rb']
t.rcov = true
t.rcov_opts = t.rcov_opts << ['--exclude', '/Library,/opt,/System,/usr']
end
Spec::Rake::SpecTask.new(:spec) do |t|
t.warning = true
t.spec_files = FileList["#{File.dirname(__FILE__)}/spec/**/*_spec.rb"]
t.spec_opts = %w(--backtrace --diff --color)
t.libs << "#{File.dirname(__FILE__)}/spec"
t.libs << "#{File.dirname(__FILE__)}/spec/mail"
end
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Mail - A Ruby Mail Library'
rdoc.options << '-c' << 'utf-8'
rdoc.options << '--line-numbers'
rdoc.options << '--inline-source'
rdoc.options << '-m' << 'README.rdoc'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.rdoc_files.include('lib/network/**/*.rb')
rdoc.rdoc_files.exclude('lib/parsers/*')
end
# load custom rake tasks
Dir["#{File.dirname(__FILE__)}/lib/tasks/**/*.rake"].sort.each { |ext| load ext }