forked from lsegal/yard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
46 lines (38 loc) · 1.37 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
46
require File.dirname(__FILE__) + '/lib/yard'
require 'rbconfig'
WINDOWS = (Config::CONFIG['host_os'] =~ /mingw|win32|cygwin/ ? true : false) rescue false
SUDO = WINDOWS ? '' : 'sudo'
task :default => :specs
desc "Builds the gem"
task :gem do
sh "gem build yard.gemspec"
end
desc "Installs the gem"
task :install => :gem do
sh "#{SUDO} gem install yard-#{YARD::VERSION}.gem --no-rdoc --no-ri"
end
begin
require 'spec'
require 'spec/rake/spectask'
desc "Run all specs"
Spec::Rake::SpecTask.new("specs") do |t|
$DEBUG = true if ENV['DEBUG']
t.spec_opts = ["--format", "specdoc", "--colour"]
t.spec_opts += ["--require", File.join(File.dirname(__FILE__), 'spec', 'spec_helper')]
t.spec_files = Dir["spec/**/*_spec.rb"].sort
if ENV['RCOV']
hide = '_spec\.rb$,spec_helper\.rb$,ruby_lex\.rb$,autoload\.rb$'
hide += ',legacy\/.+_handler,html_syntax_highlight_helper18\.rb$' if RUBY19
hide += ',ruby_parser\.rb$,ast_node\.rb$,handlers\/ruby\/[^\/]+\.rb$,html_syntax_highlight_helper\.rb$' if RUBY18
t.rcov = true
t.rcov_opts = ['-x', hide]
end
end
task :spec => :specs
rescue LoadError
warn "warn: RSpec tests not available. `gem install rspec` to enable them."
end
YARD::Rake::YardocTask.new do |t|
t.options += ['--title', "YARD #{YARD::VERSION} Documentation"]
t.after = lambda { `cp -R docs/images/ doc/images/` }
end