forked from oauth-xx/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Rakefile
45 lines (38 loc) · 881 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
42
43
44
45
# encoding: utf-8
# !/usr/bin/env rake
require 'bundler/gem_tasks'
begin
require 'wwtd/tasks'
rescue LoadError
puts 'failed to load wwtd'
end
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 File.expand_path('../lib/oauth2/version', __FILE__)
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 => [:test, :rubocop]