Skip to content

Instantly share code, notes, and snippets.

@clicube
Created February 25, 2013 07:57
Show Gist options
  • Save clicube/5028393 to your computer and use it in GitHub Desktop.
Save clicube/5028393 to your computer and use it in GitHub Desktop.
module MyModule
def pid
"MyModule.pid"
end
end
module ExtendModule
def pid
"ExtendModule.pid"
end
end
Process.extend ExtendModule
MyModule.extend ExtendModule
p Process.pid # => 5201
p MyModule.pid # => "ExtendModule.pid"
@clicube
Copy link
Author

clicube commented Feb 25, 2013

間違えた記録(恥ずかしい)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment