This repository has been archived by the owner on Mar 13, 2021. It is now read-only.
forked from tardate/pdf-reader-turtletext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
56 lines (49 loc) · 1.69 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
# encoding: utf-8
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'rspec'
require 'rspec/core/rake_task'
$LOAD_PATH.unshift('lib')
require 'pdf/reader/turtletext/version'
require 'jeweler'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
gem.name = "pdf-reader-turtletext"
gem.version = PDF::Reader::Turtletext::Version::STRING
gem.homepage = "https://github.com/tardate/pdf-reader-turtletext"
gem.license = "MIT"
gem.summary = %Q{PDF structured text reader}
gem.description = %Q{a library that can read structured and positional text from PDFs. Ideal for asembling structured data from invoices and the like.}
gem.email = "[email protected]"
gem.authors = ["Paul Gallagher", "Daniel Musekamp"]
gem.files.exclude 'pkg/*'
# dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
desc "Run all RSpec test examples"
RSpec::Core::RakeTask.new do |spec|
spec.rspec_opts = ["-c", "-f progress"]
spec.pattern = 'spec/**/*_spec.rb'
end
task :default => :spec
require 'rdoc/task'
RDoc::Task.new do |rdoc|
rdoc.main = "README.rdoc"
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "pdf-reader-turtletext #{PDF::Reader::Turtletext::Version::STRING}"
rdoc.rdoc_files.include('README*', 'lib/**/*.rb')
end
desc "Generate sample PDFs for tests"
task :make_pdf_samples do |t|
require Pathname.new(File.dirname(__FILE__)).join('spec','support','pdf_samples_helper')
include PdfSamplesHelper
make_pdf_samples
end