Sha256: dcc6f4ff370e2ca6e981c1e94dd97ae0c3197ca6f3c8df8a53517b2a576078f2

Contents?: true

Size: 1.33 KB

Versions: 11

Compression:

Stored size: 1.33 KB

Contents

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = 'paper_trail'
    gemspec.summary = "Track changes to your models' data.  Good for auditing or versioning."
    gemspec.email = 'boss@airbladesoftware.com'
    gemspec.homepage = 'http://github.com/airblade/paper_trail'
    gemspec.authors = ['Andy Stewart']
  end
  Jeweler::GemcutterTasks.new
rescue LoadError
  puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end

desc 'Test the paper_trail plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

begin
  require 'rcov/rcovtask'
  Rcov::RcovTask.new do |test|
    test.libs << 'test'
    test.pattern = 'test/**/*_test.rb'
    test.verbose = true
  end
rescue LoadError
  task :rcov do
    abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
  end
end

desc 'Generate documentation for the paper_trail plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'PaperTrail'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

desc 'Default: run unit tests.'
task :default => :test

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
paper_trail-1.5.3 Rakefile
paper_trail-1.5.2 Rakefile
paper_trail-1.5.1 Rakefile
paper_trail-1.5.0 Rakefile
paper_trail-1.4.6 Rakefile
paper_trail-1.4.5 Rakefile
paper_trail-1.4.4 Rakefile
paper_trail-1.4.3 Rakefile
paper_trail-1.4.1 Rakefile
paper_trail-1.4.0 Rakefile
paper_trail-1.3.1 Rakefile