# File lib/hammer_cli/shell.rb, line 47 def push(line) line.strip! return if line.empty? or ingonred_commands.include?(line) Readline::HISTORY.push(line) File.open(file_path, "a") do |f| f.puts(line) end end