0.03
No release in over 3 years
Low commit activity in last 3 years
Wrapper around the tika-app jar
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 1.0.15
>= 0
>= 0
>= 0
>= 0
~> 3.9.0
>= 0

Runtime

>= 0
 Project Readme

Ruby Tika Parser

Introduction

This is a simple frontend to the Java Tika parser command line jar / app.

It is the same as running:

java -server -Djava.awt.headless=true -Dfile.encoding=UTF-8 -jar tika-app-1.24.1.jar FileToParse.pdf

with options like --xml, --text, etc.

Installation

To install, add ruby_tika_app to your Gemfile and run bundle install:

gem 'ruby_tika_app'

Note about installation

RubyTikaApp is a pretty big gem since it includes the ruby-tika-app jarfile. It might take a while to install.

Usage

First, you need Java installed. And it needs to be in your $PATH.

Then:

require 'ruby_tika_app'

rta = RubyTikaApp.new("sample_file.pdf")

puts rta.to_xml # <xml output>

# You also get to_json, to_text, to_text_main, and to_metadata

Testing

Run:

bundle exec rspec spec/

NOTE: Since we are using an underlying java library to connect to external URLs we can't use a standard mocking library. The test suite starts a rack-based web server.

Contributing

Fork on GitHub and after you've committed tested patches, send a pull request.