Last active
April 14, 2017 17:49
-
-
Save neektza/345b6d6b730d11033f532bdf8cb7ea72 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Celluloid | |
def included(klass) | |
klass.send :extend, ClassMethods | |
klass.send :include, InstanceMethods | |
klass.send :extend, Internals::Properties | |
klass.property :mailbox_class, default: Celluloid::Mailbox | |
klass.property :proxy_class, default: Celluloid::Proxy::Cell | |
klass.property :task_class, default: Celluloid.task_class | |
# ... snip ... | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment