Sha256: 4e444312705ae2e63f7ac9eb1f57bb4253ab6f38381734fe38b217066c0c6703
Contents?: true
Size: 1.18 KB
Versions: 3
Compression:
Stored size: 1.18 KB
Contents
# 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 = ["manuel@jazzido.com"] 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
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tabula-extractor-0.7.2-java | tabula-extractor.gemspec |
tabula-extractor-0.7.1-java | tabula-extractor.gemspec |
tabula-extractor-0.7.0-java | tabula-extractor.gemspec |