Reputation: 1688
From my understanding, Python's twisted framework provides a higher-level abstraction for networking communications (?).
I am looking for a Ruby equivalent of twisted to use in a Rails application.
Upvotes: 6
Views: 2186
Reputation: 5019
Take a look at EventMachine. It's not as extensive as Twisted but it's built around the same concepts of event-driven network programming.
Upvotes: 7