Skip to content

Instantly share code, notes, and snippets.

@practicingruby
Created August 6, 2015 16:01

Revisions

  1. practicingruby created this gist Aug 6, 2015.
    14 changes: 14 additions & 0 deletions x.rb
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    roster = Roster.new
    data = PeopleService.fetch(some_search_params)

    data.each do |person|
    if roster.names.count < 10
    roster.names << person.name
    else
    raise "You can't have a roster with more than 10 people on it"
    end
    end

    roster.style = :colorized

    RosterPrintout.new(roster).generate_pdf("out.pdf")