Created
July 26, 2011 21:25
-
-
Save mat/1108100 to your computer and use it in GitHub Desktop.
.irbrc awesomeness
This file contains 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
# | |
# Now living in https://github.com/mat/dotfiles | |
# | |
require 'benchmark' | |
require 'open-uri' | |
require 'rubygems' | |
require 'active_support/all' | |
require 'nokogiri' | |
IRB.conf[:USE_READLINE] = true | |
IRB.conf[:PROMPT_MODE] = :SIMPLE | |
require 'irb/completion' | |
IRB.conf[:AUTO_INDENT]=true | |
require 'irb/ext/save-history' | |
IRB.conf[:SAVE_HISTORY] = 1000 | |
IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb-save-history" | |
module Kernel | |
def methodz | |
self.methods - Object.methods | |
end | |
def profile2file(filename = "profile-#{Time.now.to_i}") | |
require 'ruby-prof' | |
block_result = nil | |
profile_result = ::RubyProf.profile do | |
block_result = yield | |
end | |
File.open("#{filename}.txt" , "w") { |file| ::RubyProf::FlatPrinter.new(profile_result).print(file) } | |
File.open("#{filename}.html", "w") { |file| ::RubyProf::GraphHtmlPrinter.new(profile_result).print(file) } | |
$stderr.puts("Find profile results in #{File.expand_path(filename)}.[txt|html]") | |
block_result | |
end | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment