class Hydra::Derivatives::FullTextExtract

Public Class Methods

processor_class() click to toggle source
# File lib/hydra/derivatives/runners/full_text_extract.rb, line 11
def self.processor_class
  Processors::FullText
end
transform_directives(options) click to toggle source

Adds format: 'txt' as the default to each of the directives

# File lib/hydra/derivatives/runners/full_text_extract.rb, line 4
def self.transform_directives(options)
  options.each do |directive|
    directive.reverse_merge!(format: 'txt', binary: false)
  end
  options
end