-
-
Save practicingruby/eda5444dc47eb53a6327 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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