Sha256: 640d563ea00b65f4119cb9e7cfcdf5c7fd704b28017e223a3e551d9303ab2fab

Contents?: true

Size: 552 Bytes

Versions: 19

Compression:

Stored size: 552 Bytes

Contents

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

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

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

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

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
backlog-0.37.2 vendor/plugins/has_history/Rakefile
backlog-0.37.1 vendor/plugins/has_history/Rakefile
backlog-0.36.2 vendor/plugins/has_history/Rakefile
backlog-0.29.0 vendor/plugins/has_history/Rakefile
backlog-0.30.0 vendor/plugins/has_history/Rakefile
backlog-0.31.0 vendor/plugins/has_history/Rakefile
backlog-0.31.1 vendor/plugins/has_history/Rakefile
backlog-0.32.0 vendor/plugins/has_history/Rakefile
backlog-0.33.0 vendor/plugins/has_history/Rakefile
backlog-0.33.1 vendor/plugins/has_history/Rakefile
backlog-0.34.1 vendor/plugins/has_history/Rakefile
backlog-0.34.2 vendor/plugins/has_history/Rakefile
backlog-0.34 vendor/plugins/has_history/Rakefile
backlog-0.35.0 vendor/plugins/has_history/Rakefile
backlog-0.35.1 vendor/plugins/has_history/Rakefile
backlog-0.35.2 vendor/plugins/has_history/Rakefile
backlog-0.35.4 vendor/plugins/has_history/Rakefile
backlog-0.35.3 vendor/plugins/has_history/Rakefile
backlog-0.35.5 vendor/plugins/has_history/Rakefile