class Renote::Cli::Application

Public Instance Methods

into(target_file_path) click to toggle source
# File lib/renote/cli/application.rb, line 8
def into(target_file_path)
  @shell = Renote::Models::Shell.new
  open(target_file_path, 'a') { |handle|
    @shell.open handle
    while @shell.alive?
      @shell.run
    end
  }
  puts ''
end