Advertisement
Guest User

Untitled

a guest
Sep 20th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.27 KB | None | 0 0
  1. module A
  2.     class something
  3.         def initialize
  4.             ...
  5.             ...
  6.         end
  7.  
  8.         require '3rd-party-module'
  9.         ...
  10.         ...
  11.     end
  12. end
  13.  
  14. obj = A::something.new()
  15.  
  16. error:
  17. uninitialized constant A::3rd-party-module::class (NameError)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement