Skip to content

Instantly share code, notes, and snippets.

@spanuska
Last active March 30, 2016 13:27
Show Gist options
  • Save spanuska/74c5c7907444a0eb358044e71131410e to your computer and use it in GitHub Desktop.
Save spanuska/74c5c7907444a0eb358044e71131410e to your computer and use it in GitHub Desktop.
Book with named keyword arguments
class Book
....
def initialize(title: 'Unknown', author: 'Unknown') # This is the Ruby >= 2.0 syntax.
@title = title
@author = author
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment