Class: PapyTools::Tournoi

Inherits:
Object
  • Object
show all
Defined in:
lib/papy-tools/tournoi.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#departagesObject

Returns the value of attribute departages.



7
8
9
# File 'lib/papy-tools/tournoi.rb', line 7

def departages
  @departages
end

#joueursObject

Returns the value of attribute joueurs.



7
8
9
# File 'lib/papy-tools/tournoi.rb', line 7

def joueurs
  @joueurs
end

#nombre_rondesObject

Returns the value of attribute nombre_rondes.



7
8
9
# File 'lib/papy-tools/tournoi.rb', line 7

def nombre_rondes
  @nombre_rondes
end

#titreObject

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_bindingObject



17
18
19
# File 'lib/papy-tools/tournoi.rb', line 17

def get_binding
    binding
end

#nombre_joueursObject



21
22
23
# File 'lib/papy-tools/tournoi.rb', line 21

def nombre_joueurs
    @joueurs.length
end

#to_aObject



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