Sha256: 37e7b74f1b7875eec671452f971138c3c7e688db1ab16d50eb22c928b82e1d5e
Contents?: true
Size: 1.41 KB
Versions: 5
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 = ['>= 2.7.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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
henkei-2.9.1.1 | henkei.gemspec |
henkei-2.9.0.1 | henkei.gemspec |
henkei-2.8.0.1 | henkei.gemspec |
henkei-2.7.0.1 | henkei.gemspec |
henkei-2.6.0.2 | henkei.gemspec |