forked from tabulapdf/tabula-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabula-extractor.gemspec
26 lines (21 loc) · 926 Bytes
/
tabula-extractor.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
25
26
# encoding: utf-8
$:.push File.expand_path("../lib", __FILE__)
require 'tabula/version'
Gem::Specification.new do |s|
s.name = "tabula-extractor"
s.version = Tabula::VERSION
s.authors = ["Manuel Aristarán", "Jeremy B. Merill", "Mike Tigas"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/jazzido/tabula-extractor"
s.summary = %q{extract tables from PDF files}
s.description = %q{extract tables from PDF files}
s.license = 'MIT'
s.platform = 'java'
s.files = `git ls-files`.split("\n").reject { |f| f =~ /^test\// }
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency 'ruby-debug', '~> 0.10.4'
s.add_development_dependency 'pry', '~> 0.10.1'
s.add_development_dependency 'minitest', '~> 5.4.0'
s.add_runtime_dependency "trollop", ["~> 2.0"]
end