forked from tabulapdf/tabula-extractor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtabula-extractor.gemspec
31 lines (25 loc) · 1.18 KB
/
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
27
28
29
30
31
# 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'
shared_libs = ['liblsd.dylib', 'liblsd-linux64.so', 'liblsd-linux32.so', 'liblsd.dll', 'liblsd64.dll'].map { |f| 'ext/' + f }
s.files = `git ls-files`.split("\n") + shared_libs.map.reject { |f| !File.exists?(f) }
s.test_files = `git ls-files -- {test,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_development_dependency 'minitest'
s.add_development_dependency 'bundler', '>= 1.3.4'
s.add_development_dependency 'ruby-debug'
s.add_development_dependency 'pry'
s.add_runtime_dependency "trollop", ["~> 2.0"]
# s.add_runtime_dependency "algorithms", ["~> 0.6.1"]
end