Celluloid v0.1.0 Release Notes

    • ๐Ÿ’Ž Fiber-based reentrant actors. Requires Ruby 1.9
    • MyActor.new (where MyActor includes Celluloid::Actor) is now identical to .spawn
    • Terminate actors with MyActor#terminate
    • Obtain current actor with Celluloid.current_actor
    • ๐Ÿ”ง Configurable logger with Celluloid.logger
    • ๐Ÿ”€ Synchronization now based on ConditionVariables instead of Celluloid::Waker
    • Determine if you're in actor scope with Celluloid.actor?