Skip to content

Instantly share code, notes, and snippets.

@leejarvis
Last active December 21, 2015 18:59
Show Gist options
  • Save leejarvis/8dd0225e65c795c779b8 to your computer and use it in GitHub Desktop.
Save leejarvis/8dd0225e65c795c779b8 to your computer and use it in GitHub Desktop.
class Document
def initialize
@authors = []
end
def add_authors(*names)
@authors.concat(names)
end
def author
@authors.join(' ')
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment