Skip to content

Instantly share code, notes, and snippets.

@practicingruby
Created August 6, 2015 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save practicingruby/eda5444dc47eb53a6327 to your computer and use it in GitHub Desktop.
Save practicingruby/eda5444dc47eb53a6327 to your computer and use it in GitHub Desktop.
roster = Roster.new
data = PeopleService.fetch(some_search_params)
data.each do |person|
roster.names << person.name
end
roster.style = :colorized
RosterPrintout.new(roster).generate_pdf("out.pdf")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment