forked from documentcloud/docsplit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docsplit.gemspec
executable file
·24 lines (20 loc) · 960 Bytes
/
docsplit.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Gem::Specification.new do |s|
s.name = 'docsplit'
s.version = '0.7.2' # Keep version in sync with docsplit.rb
s.date = '2013-02-21'
s.homepage = "http://documentcloud.github.com/docsplit/"
s.summary = "Break Apart Documents into Images, Text, Pages and PDFs"
s.description = <<-EOS
Docsplit is a command-line utility and Ruby library for splitting apart
documents into their component parts: searchable UTF-8 plain text, page
images or thumbnails in any format, PDFs, single pages, and document
metadata (title, author, number of pages...)
EOS
s.authors = ['Jeremy Ashkenas', 'Samuel Clay', 'Ted Han']
s.email = '[email protected]'
s.rubyforge_project = 'docsplit'
s.require_paths = ['lib']
s.executables = ['docsplit']
s.files = Dir['build/**/*', 'lib/**/*', 'bin/*', 'vendor/**/*',
'docsplit.gemspec', 'LICENSE', 'README']
end