RailsCasts Pro episodes are now free!

Learn more or hide this

Tobias Gerschner's Profile

GitHub User: TobiG77

Site: http://tobias.it-veterans.org

Comments by Tobias Gerschner

Avatar

I just thought it's worth noting that the API has changed and rightly so, since the implementation of asynchronous calls by bang method clashed in projects that have used bang methods heavily .

https://github.com/celluloid/celluloid/commit/946eeb81

ruby
r.launch! ; r.launch! ; r.launch!
# becomes
r.async (:launch) ; r.async (:launch); r.async (:launch)