Class: PapyTools::Tournoi
- Inherits:
-
Object
- Object
- PapyTools::Tournoi
- Defined in:
- lib/papy-tools/tournoi.rb
Instance Attribute Summary collapse
-
#departages ⇒ Object
Returns the value of attribute departages.
-
#joueurs ⇒ Object
Returns the value of attribute joueurs.
-
#nombre_rondes ⇒ Object
Returns the value of attribute nombre_rondes.
-
#titre ⇒ Object
Returns the value of attribute titre.
Instance Method Summary collapse
- #filtre_ligue(arg) ⇒ Object
- #filtre_premiers(arg) ⇒ Object
- #get_binding ⇒ Object
-
#initialize(&block) ⇒ Tournoi
constructor
A new instance of Tournoi.
- #nombre_joueurs ⇒ Object
- #to_a ⇒ Object
Constructor Details
#initialize(&block) ⇒ Tournoi
Returns a new instance of Tournoi.
12 13 14 15 |
# File 'lib/papy-tools/tournoi.rb', line 12 def initialize(&block) @joueurs=[] block.call(self) if block end |
Instance Attribute Details
#departages ⇒ Object
Returns the value of attribute departages.
7 8 9 |
# File 'lib/papy-tools/tournoi.rb', line 7 def departages @departages end |
#joueurs ⇒ Object
Returns the value of attribute joueurs.
7 8 9 |
# File 'lib/papy-tools/tournoi.rb', line 7 def joueurs @joueurs end |
#nombre_rondes ⇒ Object
Returns the value of attribute nombre_rondes.
7 8 9 |
# File 'lib/papy-tools/tournoi.rb', line 7 def nombre_rondes @nombre_rondes end |
#titre ⇒ Object
Returns the value of attribute titre.
7 8 9 |
# File 'lib/papy-tools/tournoi.rb', line 7 def titre @titre end |
Instance Method Details
#filtre_ligue(arg) ⇒ Object
30 31 32 |
# File 'lib/papy-tools/tournoi.rb', line 30 def filtre_ligue(arg) @joueurs.select{|j| j.ligue == arg} end |
#filtre_premiers(arg) ⇒ Object
25 26 27 28 |
# File 'lib/papy-tools/tournoi.rb', line 25 def filtre_premiers(arg) arg=arg.to_i @joueurs.select{|j| j.place<arg+1} end |
#get_binding ⇒ Object
17 18 19 |
# File 'lib/papy-tools/tournoi.rb', line 17 def get_binding binding end |
#nombre_joueurs ⇒ Object
21 22 23 |
# File 'lib/papy-tools/tournoi.rb', line 21 def nombre_joueurs @joueurs.length end |
#to_a ⇒ Object
34 35 36 |
# File 'lib/papy-tools/tournoi.rb', line 34 def to_a [@joueurs.map{|j| j.to_a()},@nombre_rondes,@titre,@departages] end |