irbrc 401 B

12345678910111213141516171819202122
  1. # User driven .irbrc file for working in interactive ruby sessions, ie. a Ruby REPL
  2. #
  3. #
  4. require 'irb/completion'
  5. require 'date'
  6. require 'irb/ext/save-history'
  7. IRB.conf[:PROMPT_MODE] = :SIMPLE
  8. IRB.conf[:SAVE_HISTORY] = 1000
  9. IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb_history"
  10. def pbcopy(input)
  11. str = input.to_s
  12. IO.popen('pbcopy', 'w') { |f| f << str }
  13. str
  14. end
  15. def pbpaste
  16. `pbpaste`
  17. end