rika-stevedore 1.7.2-java → 1.7.3-java

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
  SHA1:
3
- metadata.gz: c278cf5c657b0a193e526b3b6212f789550440da
4
- data.tar.gz: e06dc66fe110473a2be92d5865909e775c02294c
3
+ metadata.gz: 771db0719464cb91745ac7c2da1e353abe773ae7
4
+ data.tar.gz: b7fe4014226455d74b5aa0b3cc0e706c34dc2489
5
5
  SHA512:
6
- metadata.gz: cab0a5182cf2e0f557e8b63a081144291276f3ccbede245b4b63dcaf1b31240a53887d070473e61d83a58ff7962827c604263443c645c51691ec133871f4916a
7
- data.tar.gz: 34fd81b9962dcf614d86b8f1edd5f34d6b574c8558fe1c58d244e994cd48772b82e95e3079f27f87d276a4346b4bfee88bb85d976c61e57de235987623bfcdea
6
+ metadata.gz: f75533356a6f56d591b92758c7fc4b1888c9a648a120681c3d175a83a3e3f29c788cacc1da8f6928f21169f2407d9bd8c2013372fc0b781d7f066dc7ec85371e
7
+ data.tar.gz: 2460a1a559e1a97769ff838191a924f4fe22a04f662a3a514b638619bebb733d4813437f2119e9c119439290bb085d2f97595c32ad1e808ca02808c42cacd995
data/README.md CHANGED
@@ -10,6 +10,7 @@ More information about Apache Tika can be found here: http://tika.apache.org/
10
10
  ## Jeremy's modifications
11
11
  basically, just using my own version of Tika with special email parsing fixes, adds X-Attachments metadata key (listing attachment filenames from emails) and removes bouncycastle from Tika-parsers's requirements because everything is awful.
12
12
 
13
+ for instance, Tika by itself detects an .eml if the file has "Received: " as the first string of bytes. I've made it so it'll detect an email with that in the first 300 bytes, to cope with leaked emails that have non-standard headers first, then the Received: line.
13
14
 
14
15
  ## Installation
15
16
 
data/lib/rika/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Rika
2
- VERSION = "1.7.2"
2
+ VERSION = "1.7.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rika-stevedore
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.2
4
+ version: 1.7.3
5
5
  platform: java
6
6
  authors:
7
7
  - Richard Nyström
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-01-09 00:00:00.000000000 Z
12
+ date: 2017-02-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  requirement: !ruby/object:Gem::Requirement
@@ -39,17 +39,17 @@ dependencies:
39
39
  - - '='
40
40
  - !ruby/object:Gem::Version
41
41
  version: 10.3.1
42
- description: ' A JRuby wrapper for Apache Tika to extract text and metadata from various
43
- file formats, slightly modified. '
42
+ description: " A JRuby wrapper for Apache Tika to extract text and metadata from various\
43
+ \ file formats, slightly modified. "
44
44
  email:
45
45
  - jeremybmerrill@gmail.com
46
46
  executables: []
47
47
  extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
- - .gitignore
51
- - .rspec
52
- - .travis.yml
50
+ - ".gitignore"
51
+ - ".rspec"
52
+ - ".travis.yml"
53
53
  - Gemfile
54
54
  - LICENSE.txt
55
55
  - README.md
@@ -221,17 +221,17 @@ require_paths:
221
221
  - lib
222
222
  required_ruby_version: !ruby/object:Gem::Requirement
223
223
  requirements:
224
- - - '>='
224
+ - - ">="
225
225
  - !ruby/object:Gem::Version
226
226
  version: '0'
227
227
  required_rubygems_version: !ruby/object:Gem::Requirement
228
228
  requirements:
229
- - - '>='
229
+ - - ">="
230
230
  - !ruby/object:Gem::Version
231
231
  version: '0'
232
232
  requirements: []
233
233
  rubyforge_project:
234
- rubygems_version: 2.4.5
234
+ rubygems_version: 2.6.6
235
235
  signing_key:
236
236
  specification_version: 4
237
237
  summary: A JRuby wrapper for Apache Tika to extract text and metadata from various file formats, slightly modified.