Upgrade to Pro — share decks privately, control downloads, hide ads and more …

A Dangerous Game: Safety in Ruby

Ryan Levick
September 12, 2014

A Dangerous Game: Safety in Ruby

This talk explores the advantages of static typing and asks the question: "Do we want this in Ruby?".

Ryan Levick

September 12, 2014
Tweet

More Decks by Ryan Levick

Other Decks in Programming

Transcript

  1. def decorateUser(user: User) = { UserDecorator(user).decorate } ! val user

    = User.findBy(email = "[email protected]") ! val decoratedUser = decorateUser(user) ! respondWith user