henkei 2.9.0.1 → 2.9.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8dda0f00775909099ff353cf469539896b6623b83b929a750e4f3fb991e3c71b
4
- data.tar.gz: 074ae868d11a9ac9355334cbbd45666fea558eb77d44e9d1c1b5dc2bec1462c6
3
+ metadata.gz: db0832d80d7445a7cfd495055c4b9081af1a6aa987adccfd162985dccd4bb2f2
4
+ data.tar.gz: 746bee81b787098e87b2c684a1cc33c48e3d34995b47c1d6848dd8e8f3d90991
5
5
  SHA512:
6
- metadata.gz: 26b1943135b7c9ad26ebcbc41ab1a7825a32fe06b05e9a45055d685ee51df5ba89bf6c1bb012b2a42d4e6118901dfaa6551d0d6b66aaacc33de7e69750915827
7
- data.tar.gz: d631390b29b20a7d7919fba75bcb05783a3593a131c6f3f3ec67f196118a2e84ba4eee101809f281f38cae6cca6ff71a2c51533444a86c5cc27fe72b8096de42
6
+ metadata.gz: df61c967907e043f3ebfb1e60a76d097e6e565b1d0d0cebf71da021af295d8c3cfc0d897c7d49f5301cd1356b8e9a13ce9ec482174a1dbdad0aa3a021f267afe
7
+ data.tar.gz: 410971738b61f572796a652d260658025fe8c64c15813774a617485d98882af210daaf8fc91e64946a9844e9a61feb6e9c6f16042647b7cf83fe561f80163781
@@ -14,7 +14,7 @@ jobs:
14
14
  runs-on: ubuntu-latest
15
15
  strategy:
16
16
  matrix:
17
- ruby-version: ['2.7', '3.0', '3.1', '3.2', '3.3']
17
+ ruby-version: ['3.0', '3.1', '3.2', '3.3']
18
18
 
19
19
  steps:
20
20
  - uses: actions/checkout@v3
data/.rubocop.yml CHANGED
@@ -4,7 +4,7 @@ require:
4
4
 
5
5
  AllCops:
6
6
  NewCops: enable
7
- TargetRubyVersion: 2.7
7
+ TargetRubyVersion: 3.0
8
8
 
9
9
  Layout/EmptyLinesAroundAttributeAccessor:
10
10
  Enabled: true
data/Gemfile CHANGED
@@ -8,7 +8,6 @@ gemspec
8
8
  group :development do
9
9
  gem 'bundler', '~> 2.0'
10
10
  gem 'nokogiri', '~> 1.12'
11
- gem 'rails', '~> 5.0'
12
11
  gem 'rake', '~> 12.3'
13
12
  gem 'rspec', '~> 3.7'
14
13
  gem 'rubocop', '~> 1.26'
data/henkei.gemspec CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  '(.doc, .docx, .pages, .odt, .rtf, .pdf) using Apache Tika toolkit'
16
16
  spec.homepage = 'https://github.com/abrom/henkei'
17
17
  spec.license = 'MIT'
18
- spec.required_ruby_version = ['>= 2.7.0', '< 3.4.0']
18
+ spec.required_ruby_version = ['>= 3.0.0', '< 3.4.0']
19
19
 
20
20
  # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
21
21
  # delete this section to allow pushing this gem to any host.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Henkei
4
- VERSION = '2.9.0.1'
4
+ VERSION = '2.9.2.1'
5
5
  end
data/lib/henkei.rb CHANGED
@@ -25,7 +25,7 @@ require 'open3'
25
25
  # Read text and metadata from files and documents using Apache Tika toolkit
26
26
  class Henkei # rubocop:disable Metrics/ClassLength
27
27
  GEM_PATH = File.dirname(File.dirname(__FILE__))
28
- JAR_PATH = File.join(Henkei::GEM_PATH, 'jar', 'tika-app-2.9.0.jar')
28
+ JAR_PATH = File.join(Henkei::GEM_PATH, 'jar', 'tika-app-2.9.2.jar')
29
29
  CONFIG_PATH = File.join(Henkei::GEM_PATH, 'jar', 'tika-config.xml')
30
30
  CONFIG_WITHOUT_OCR_PATH = File.join(Henkei::GEM_PATH, 'jar', 'tika-config-without-ocr.xml')
31
31
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: henkei
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.9.0.1
4
+ version: 2.9.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Erol Fornoles
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-01-15 00:00:00.000000000 Z
12
+ date: 2024-05-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: json
@@ -71,7 +71,7 @@ files:
71
71
  - Rakefile
72
72
  - bin/console
73
73
  - henkei.gemspec
74
- - jar/tika-app-2.9.0.jar
74
+ - jar/tika-app-2.9.2.jar
75
75
  - jar/tika-config-without-ocr.xml
76
76
  - jar/tika-config.xml
77
77
  - lib/henkei.rb
@@ -99,7 +99,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
99
99
  requirements:
100
100
  - - ">="
101
101
  - !ruby/object:Gem::Version
102
- version: 2.7.0
102
+ version: 3.0.0
103
103
  - - "<"
104
104
  - !ruby/object:Gem::Version
105
105
  version: 3.4.0