forked from abrom/henkei
-
Notifications
You must be signed in to change notification settings - Fork 0
/
henkei.gemspec
34 lines (28 loc) · 1.43 KB
/
henkei.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
32
33
34
# 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[[email protected] [email protected]]
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 = 'http://github.com/abrom/henkei'
spec.license = 'MIT'
spec.required_ruby_version = ['>= 2.4.0', '< 3.1.0']
spec.files = `git ls-files`.split("\n")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_runtime_dependency 'json', '>= 1.8', '< 3'
spec.add_runtime_dependency 'mini_mime', '>= 0.1.1', '< 2'
spec.add_development_dependency 'bundler', '~> 2.0'
spec.add_development_dependency 'rails', '~> 5.0'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'rspec', '~> 3.7'
spec.add_development_dependency 'rubocop', '~> 0.71'
spec.add_development_dependency 'simplecov', '~> 0.15'
end