class Tika::Result

Attributes

error[R]
output[R]
status[R]

Public Class Methods

new(output, error, status) click to toggle source
# File lib/tika/result.rb, line 13
def initialize(output, error, status)
  @output, @error, @status = output, error, status
end

Public Instance Methods

render() click to toggle source
# File lib/tika/result.rb, line 17
def render
  output
end