Sha256: 5933482c3c55354cc6970ad3f0f4cbb51fcae3d3b7a7aa4bc6e383f546f8c1f6
Contents?: true
Size: 1.41 KB
Versions: 3
Compression:
Stored size: 1.41 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'henkei/version' Gem::Specification.new do |spec| spec.name = 'henkei' spec.version = Henkei::VERSION spec.authors = ['Erol Fornoles', 'Andrew Bromwich'] spec.email = %w[erol.fornoles@gmail.com a.bromwich@gmail.com] spec.description = 'Read text and metadata from files and documents using Apache Tika toolkit' spec.summary = 'Read text and metadata from files and documents ' \ '(.doc, .docx, .pages, .odt, .rtf, .pdf) using Apache Tika toolkit' spec.homepage = 'https://github.com/abrom/henkei' spec.license = 'MIT' spec.required_ruby_version = ['>= 3.0.0', '< 3.4.0'] # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or # delete this section to allow pushing this gem to any host. raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' unless spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' spec.metadata['rubygems_mfa_required'] = 'true' spec.files = `git ls-files`.split("\n") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ['lib'] spec.add_runtime_dependency 'json', '>= 1.8', '< 3' spec.add_runtime_dependency 'mini_mime', '>= 0.1.1', '< 2' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
henkei-2.9.2.2 | henkei.gemspec |
henkei-2.9.2.1 | henkei.gemspec |
henkei-1.28.5.2 | henkei.gemspec |