Created
May 3, 2010 22:21
-
-
Save jberkel/388655 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .irbrc | |
| # vim: set syntax=ruby : | |
| require 'irb/completion' | |
| require 'irb/ext/save-history' | |
| require 'fileutils' | |
| require 'pp' | |
| require 'rubygems' | |
| ARGV.concat [ "--readline", | |
| "--prompt-mode", | |
| "simple" ] | |
| #begin | |
| # # load wirble | |
| # require 'wirble' | |
| # | |
| # # start wirble (with color) | |
| # Wirble.init | |
| # Wirble.colorize | |
| #rescue LoadError => err | |
| # warn "Couldn't load Wirble: #{err}" | |
| #end | |
| # 25 entries in the list | |
| IRB.conf[:SAVE_HISTORY] = 25 | |
| # Store results in home directory with specified file name | |
| IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb-history" | |
| IRB.conf[:PROMPT_MODE] = :SIMPLE | |
| # Giles Bowkett, Greg Brown, and several audience members from Giles' Ruby East presentation. | |
| # http://gilesbowkett.blogspot.com/2007/10/use-vi-or-any-text-editor-from-within.html | |
| require 'tempfile' | |
| module Exec | |
| extend self | |
| def system(file, *args) | |
| Kernel::system(file, *args) | |
| end | |
| end | |
| if RUBY_PLATFORM =~ /java/ | |
| require 'ffi' | |
| Exec.extend(FFI::Library) | |
| Exec.class_eval do | |
| attach_function :ffi_execlp, :execlp, [:string, :string, :varargs], :int | |
| attach_function :fork, [], :int | |
| def system(file, *args) | |
| var_args = (args.map { |a| [:pointer, a.to_s] } + [:pointer, nil]).flatten | |
| if Exec.fork == 0 | |
| ffi_execlp(file, file, *var_args) | |
| end | |
| Process.waitall.each do |(pid, status)| | |
| raise "status code: #{status}" unless status == 0 | |
| end | |
| end | |
| end | |
| end | |
| class InteractiveEditor | |
| attr_accessor :editor | |
| def initialize(editor) | |
| @editor = editor.to_s | |
| end | |
| def edit(file=nil) | |
| @file = if file | |
| FileUtils.touch(file) unless File.exist?(file) | |
| File.new(file) | |
| else | |
| (@file && File.exist?(@file.path)) ? @file : Tempfile.new(["irb_tempfile", ".rb"]) | |
| end | |
| mtime = File.stat(@file.path).mtime | |
| Exec.system(@editor, @file.path) | |
| execute if mtime < File.stat(@file.path).mtime | |
| end | |
| def execute | |
| Object.class_eval(IO.read(@file.path)) | |
| end | |
| def self.edit(editor, file=nil) | |
| #idea serialise last file to disk, for recovery | |
| unless IRB.conf[:interactive_editors] && IRB.conf[:interactive_editors][editor] | |
| IRB.conf[:interactive_editors] ||= {} | |
| IRB.conf[:interactive_editors][editor] = InteractiveEditor.new(editor) | |
| end | |
| IRB.conf[:interactive_editors][editor].edit(file) | |
| end | |
| end | |
| class << self | |
| def vi(name=nil) | |
| InteractiveEditor.edit('vi', name) | |
| end | |
| def gvim(name=nil) | |
| InteractiveEditor.edit('/Applications/MacVim.app/Contents/MacOS/Vim -g -f', name) | |
| end | |
| def mate(name=nil) | |
| InteractiveEditor.edit('mate -w', name) | |
| end | |
| def emacs(name=nil) | |
| InteractiveEditor.edit('emacs', name) | |
| end | |
| def nano(name=nil) | |
| InteractiveEditor.edit('nano', name) | |
| end | |
| def pbcopy(stuff) | |
| IO.popen('pbcopy', 'w+') {|clipboard| clipboard.write(stuff)} | |
| end | |
| end | |
| # This extension adds a UNIX-style pipe to strings | |
| # | |
| # Synopsis: | |
| # | |
| # >> puts "UtilityBelt is better than alfalfa" | "cowsay" | |
| # ____________________________________ | |
| # < UtilityBelt is better than alfalfa > | |
| # ------------------------------------ | |
| # \ ^__^ | |
| # \ (oo)\_______ | |
| # (__)\ )\/\ | |
| # ||----w | | |
| # || || | |
| # => nil | |
| class String | |
| def |(cmd) | |
| IO.popen(cmd.to_s, 'r+') do |pipe| | |
| pipe.write(self) | |
| pipe.close_write | |
| pipe.read | |
| end | |
| end | |
| end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment