Guest User

Untitled

a guest
Dec 11th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. # app/something/parent.rb
  2. class Parent
  3. def path
  4. __FILE__
  5. end
  6. end
  7.  
  8.  
  9. # app/something/child.rb
  10. class Child < Parent; end
  11.  
  12.  
  13. # I want Child.path to return app/something/child.rb
  14. Child.path #=> app/something/parent.rb
Add Comment
Please, Sign In to add comment