public
Description: Convert PDF documents to various image formats in attachment based models.
Homepage:
Clone URL: git://github.com/jstewart/pdf_converter.git
jstewart (author)
Mon Jul 07 09:58:54 -0700 2008
commit  b8fe2987b5cf88392d329d84528dbd24695637f5
tree    96ba7bdea5d4fcae8daa06094a0926c407abc129
parent  f52915123cb296781cae3296b19f7fa4f5fe388c
pdf_converter / Rakefile
100644 23 lines (19 sloc) 0.558 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the pdf_converter plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the pdf_converter plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'PdfConverter'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end