Sha256: b52446d9ec1c127f6b46ffab2d8eb72064cc8b45d89116c0163cd8e2c3a0c417

Contents?: true

Size: 1003 Bytes

Versions: 2

Compression:

Stored size: 1003 Bytes

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"]
  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.platform = 'java'

  shared_libs = ['liblsd.dylib', 'liblsd-linux64.so', 'liblsd-linux32.so', 'liblsd.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_runtime_dependency "trollop", ["~> 2.0"]
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tabula-extractor-0.5.1-java tabula-extractor.gemspec
tabula-extractor-0.5.0-java tabula-extractor.gemspec