Skip to content

Instantly share code, notes, and snippets.

@neektza
Created April 14, 2017 17:50
Show Gist options
  • Save neektza/e129cf8de34d54c37a8e428ebe79afae to your computer and use it in GitHub Desktop.
Save neektza/e129cf8de34d54c37a8e428ebe79afae to your computer and use it in GitHub Desktop.
module Celluloid
module ClassMethods
def new(*args, &block)
proxy = Cell.new(allocate, behavior_options, actor_options).proxy
proxy._send_(:initialize, *args, &block)
proxy
end
alias_method :spawn, :new
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment