File Manager

Path: /opt/chef.upgrade/embedded/lib/ruby/gems/2.3.0/gems/rb-readline-0.5.5/examples/

Viewing File: tinyirb.rb

require 'readline.rb'

loop do
  line = Readline::readline('> ')
  Readline::HISTORY.push(line)
  puts "You typed: #{line}"

  if line =~ /exit|quit/ then
    exit
  end
end