Skip to content
This repository has been archived by the owner on Nov 29, 2019. It is now read-only.

Commit

Permalink
gemspec: Include a gemspec. Remove gem spec from Rakefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
kjw committed Jun 8, 2011
1 parent 7970f68 commit f34acc2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 22 deletions.
22 changes: 0 additions & 22 deletions Rakefile

This file was deleted.

File renamed without changes.
16 changes: 16 additions & 0 deletions pdf-extract.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Gem spec for pdf-extract.
Gem::Specification.new do |s|
s.name = "pdf-extract"
s.version = "0.0.1"
s.summary = "PDF text, region, section and section header extraction tool and library."
s.files = Dir.glob("{bin,lib}/**/**/*") + ["TODO.md"]
s.executables << "pdf-extract"
s.authors = ["Karl Jonathan Ward"]
s.email = ["[email protected]"]
s.homepage = "http://github.com/CrossRef/pdfextract"
s.required_ruby_version = ">=1.9.1"

s.add_dependency 'pdf-reader', '>= 0.9.2'
s.add_dependency 'nokogiri', '>= 1.4.4'
end

0 comments on commit f34acc2

Please sign in to comment.