forked from oauth-xx/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
41 lines (35 loc) · 856 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
40
41
# encoding: utf-8
# frozen_string_literal: true
# !/usr/bin/env rake
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
begin
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
rescue LoadError
task :spec do
warn 'rspec is disabled'
end
end
task test: :spec
begin
require 'rubocop/rake_task'
RuboCop::RakeTask.new do |task|
task.options = ['-D'] # Display the name of the failing cops
end
rescue LoadError
task :rubocop do
warn 'RuboCop is disabled'
end
end
namespace :doc do
require 'rdoc/task'
require 'oauth2/version'
RDoc::Task.new do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "oauth2 #{OAuth2::Version}"
rdoc.main = 'README.md'
rdoc.rdoc_files.include('README.md', 'LICENSE.md', 'lib/**/*.rb')
end
end
task default: %i[test rubocop]