Sha256: f5a80d8cfee85d8cca8eec7ff55dcea06be06a1117bf222283845fc8a53ac145
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true $LOAD_PATH.push File.expand_path('lib', __dir__) Gem::Specification.new do |s| s.name = 'ruby_tika_app_lambda' s.version = '1.25.2' s.platform = Gem::Platform::RUBY s.authors = ['Chris Parker', 'Eric Musgrove'] s.email = %w[mrcsparker@gmail.com eric.musgrove@stoatlabs.com] s.homepage = 'https://github.com/StoatLabs/ruby_tika_app' s.summary = 'Wrapper around the tika-app jar' s.description = 'Wrapper around the tika-app jar' s.files = `git ls-files`.split("\n") + %w[LICENSE README.md HISTORY] s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } s.require_paths = %w[lib] s.test_files = Dir.glob('spec/**/*') s.add_runtime_dependency('open4') s.add_development_dependency('bundler', '>= 1.0.15') s.add_development_dependency('json') s.add_development_dependency('pry') s.add_development_dependency('rack') s.add_development_dependency('rake') s.add_development_dependency('rspec', '~> 3.9.0') s.add_development_dependency('simplecov') s.add_development_dependency('thin') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby_tika_app_lambda-1.25.2 | ruby_tika_app.gemspec |