forked from collectiveidea/audited
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
57 lines (46 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
require 'rake'
require 'rspec/core/rake_task'
require 'rake/testtask'
$:.unshift File.expand_path('../lib', __FILE__)
require 'acts_as_audited'
desc 'Default: run specs and tests'
task :default => [:spec, :test]
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "acts_as_audited"
gem.summary = %Q{ActiveRecord extension that logs all changes to your models in an audits table}
gem.email = "[email protected]"
gem.homepage = "http://github.com/collectiveidea/acts_as_audited"
gem.authors = ["Brandon Keepers", "Kenneth Kalmer"]
gem.rdoc_options << '--main' << 'README.rdoc' << '--line-numbers' << '--inline-source'
gem.version = ActsAsAudited::VERSION
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
# Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: bundle install"
end
RSpec::Core::RakeTask.new do |t|
t.rspec_opts = ["-c", "-f progress", "-r ./spec/spec_helper.rb"]
t.pattern = 'spec/*_spec.rb'
end
task :spec => :check_dependencies
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
task :test => :check_dependencies
begin
require 'yard'
YARD::Rake::YardocTask.new
rescue LoadError
puts "YARD (or a dependency) not available. Install it with: bundle install"
end