Skip to content

Instantly share code, notes, and snippets.

@tiagopog
Created March 31, 2015 19:20
Show Gist options
  • Save tiagopog/ded9049132d330385412 to your computer and use it in GitHub Desktop.
Save tiagopog/ded9049132d330385412 to your computer and use it in GitHub Desktop.
Select authors for Agb's tech blog.
class Agb
@@team = %w(Barreto Douglas Fabio Giovanni Paulo Raphael Tiago)
def sort
team, i = @@team, 1
while team.length > 0
puts "| #{i} - #{team.delete_at(rand(team.length))} |"
i += 1
end
end
end
Agb.new.sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment