class DuoSplitter::Services::CreateSentences
Public Class Methods
new(context:)
click to toggle source
# File lib/duo_splitter/services/create_sentences.rb, line 6 def initialize(context:) @context = context end
Public Instance Methods
run()
click to toggle source
# File lib/duo_splitter/services/create_sentences.rb, line 10 def run TempDirWrapper.new(context: @context).run do Support::SplitTracks.new(context: @context).run Support::Encode.new(context: @context).run end end