Skip to content

Instantly share code, notes, and snippets.

@peakpado
Forked from clarkware/gist:1046693
Created June 26, 2011 15:04
Show Gist options
  • Save peakpado/1047678 to your computer and use it in GitHub Desktop.
Save peakpado/1047678 to your computer and use it in GitHub Desktop.
View Source for Ruby
# Toss this in your ~/.irbrc file for a convenient way
# to peruse Ruby source code in TextMate. This
# only works in Ruby 1.9!
#
# Use it in irb like so:
#
# >> require 'active_record'
# >> ActiveRecord::Base.source_for_method(:create)
class Object
def source_for_method(method)
location = self.method(method).source_location
`geany #{location[0]}` if location
location
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment