forked from yob/pdf-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
88 lines (79 loc) · 2.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
require "rubygems"
require 'rake'
require 'rake/clean'
require 'rake/rdoctask'
require 'rake/testtask'
require "rake/gempackagetask"
require 'spec/rake/spectask'
PKG_VERSION = "0.7.5"
PKG_NAME = "pdf-reader"
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
desc "Default Task"
task :default => [ :spec ]
# run all rspecs
desc "Run all rspec files"
Spec::Rake::SpecTask.new("spec") do |t|
t.spec_files = FileList['specs/**/*.rb']
t.rcov = true
t.rcov_dir = (ENV['CC_BUILD_ARTIFACTS'] || 'doc') + "/rcov"
# t.rcov_opts = ["--exclude","spec.*\.rb"]
end
# generate specdocs
desc "Generate Specdocs"
Spec::Rake::SpecTask.new("specdocs") do |t|
t.spec_files = FileList['specs/**/*.rb']
t.spec_opts = ["--format", "rdoc"]
t.out = (ENV['CC_BUILD_ARTIFACTS'] || 'doc') + '/specdoc.rd'
end
# generate failing spec report
desc "Generate failing spec report"
Spec::Rake::SpecTask.new("spec_report") do |t|
t.spec_files = FileList['specs/**/*.rb']
t.spec_opts = ["--format", "html", "--diff"]
t.out = (ENV['CC_BUILD_ARTIFACTS'] || 'doc') + '/spec_report.html'
t.fail_on_error = false
end
# Genereate the RDoc documentation
desc "Create documentation"
Rake::RDocTask.new("doc") do |rdoc|
rdoc.title = "pdf-reader"
rdoc.rdoc_dir = (ENV['CC_BUILD_ARTIFACTS'] || 'doc') + '/rdoc'
rdoc.rdoc_files.include('README.rdoc')
rdoc.rdoc_files.include('TODO')
rdoc.rdoc_files.include('CHANGELOG')
#rdoc.rdoc_files.include('COPYING')
#rdoc.rdoc_files.include('LICENSE')
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.options << "--inline-source"
end
# a gemspec for packaging this library
# RSpec files aren't included, as they depend on the PDF files,
# which will make the gem filesize irritatingly large
spec = Gem::Specification.new do |spec|
spec.name = PKG_NAME
spec.version = PKG_VERSION
spec.platform = Gem::Platform::RUBY
spec.summary = "A library for accessing the content of PDF files"
spec.files = Dir.glob("{examples,lib}/**/**/*") +
["Rakefile"]
spec.require_path = "lib"
spec.bindir = "bin"
spec.executables << "pdf_object"
spec.executables << "pdf_text"
spec.executables << "pdf_list_callbacks"
spec.has_rdoc = true
spec.extra_rdoc_files = %w{README.rdoc TODO CHANGELOG}
spec.rdoc_options << '--title' << 'PDF::Reader Documentation' <<
'--main' << 'README.rdoc' << '-q'
spec.author = "Peter Jones"
spec.email = "[email protected]"
spec.rubyforge_project = "pdf-reader"
spec.homepage = "http://software.pmade.com/pdfreader"
spec.description = "The PDF::Reader library implements a PDF parser conforming as much as possible to the PDF specification from Adobe"
end
# package the library into a gem
desc "Generate a gem for pdf-reader"
Rake::GemPackageTask.new(spec) do |pkg|
pkg.need_zip = true
pkg.need_tar = true
end