forked from collectiveidea/audited
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
38 lines (30 loc) · 823 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
require 'rake'
require 'rspec/core/rake_task'
require 'rake/testtask'
require 'bundler'
Bundler::GemHelper.install_tasks
$:.unshift File.expand_path('../lib', __FILE__)
require 'acts_as_audited'
desc 'Default: run specs and tests'
task :default => [:spec, :test]
RSpec::Core::RakeTask.new do |t|
t.rspec_opts = ["-c", "-f progress", "-r ./spec/spec_helper.rb"]
t.pattern = 'spec/*_spec.rb'
end
RSpec::Core::RakeTask.new(:rcov) do |t|
t.rcov = true
t.rcov_opts = %q[--exclude "spec"]
end
desc 'Test the acts_as_audited generators'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/*_test.rb'
t.verbose = true
end
begin
require 'yard'
YARD::Rake::YardocTask.new
rescue LoadError
puts "YARD (or a dependency) not available. Install it with: bundle install"
end