Module: Rika
- Defined in:
- lib/rika.rb,
lib/rika/version.rb
Overview
Heavily based on the Apache Tika API: tika.apache.org/1.5/api/org/apache/tika/Tika.html
Defined Under Namespace
Classes: Parser
Constant Summary collapse
- VERSION =
"1.7.0"
Class Method Summary collapse
- .parse_content(file_location, max_content_length = -1)) ⇒ Object
- .parse_content_and_metadata(file_location, max_content_length = -1)) ⇒ Object
- .parse_metadata(file_location) ⇒ Object
Class Method Details
.parse_content(file_location, max_content_length = -1)) ⇒ Object
30 31 32 33 |
# File 'lib/rika.rb', line 30 def self.parse_content(file_location, max_content_length = -1) parser = Parser.new(file_location, max_content_length) parser.content end |