forked from lsegal/yard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
39 lines (30 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
39
# frozen_string_literal: true
require File.dirname(__FILE__) + '/lib/yard'
require File.dirname(__FILE__) + '/lib/yard/rubygems/specification'
require 'rbconfig'
require 'samus'
YARD::VERSION.replace(ENV['YARD_VERSION']) if ENV['YARD_VERSION']
Dir['tasks/**/*.rake'].each { |task_file| load task_file }
desc "Builds the gem"
task :gem do
sh "gem build yard.gemspec"
end
desc "Installs the gem"
task :install => :gem do
sh "gem install yard-#{YARD::VERSION}.gem --no-document"
end
begin
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
rescue LoadError
nil # noop
end
desc "Generate documentation for Yard, and fail if there are any warnings"
task :test_doc do
sh "ruby bin/yard --fail-on-warning #{"--no-progress" if ENV["CI"]}"
end
task :default => [:spec, :test_doc]
YARD::Rake::YardocTask.new do |t|
t.options += ['--title', "YARD #{YARD::VERSION} Documentation"]
end
Samus::Rake::DockerReleaseTask.new