Skip to content

Instantly share code, notes, and snippets.

@mikepack
Created August 27, 2012 16:25
Show Gist options
  • Save mikepack/3490065 to your computer and use it in GitHub Desktop.
Save mikepack/3490065 to your computer and use it in GitHub Desktop.
# app/something/parent.rb
class Parent
def path
__FILE__
end
end
# app/something/child.rb
class Child < Parent; end
# I want Child.path to return app/something/child.rb
Child.path #=> app/something/parent.rb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment