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?