lib/celluloid/proxy/cell.rb in celluloid-0.18.0.pre vs lib/celluloid/proxy/cell.rb in celluloid-0.18.0.pre2
- old
+ new
@@ -20,10 +20,10 @@
def method(name)
::Celluloid::Internals::Method.new(self, name)
end
- alias_method :sync, :method_missing
+ alias sync method_missing
# Obtain an async proxy or explicitly invoke a named async method
def async(method_name = nil, *args, &block)
if method_name
@async_proxy.method_missing method_name, *args, &block