I have a Team class:
class Team
attr_accessor :teamplayers
def initialize
@team_players = []
end
def <<(player)
@team_players << player
end
def to_s
puts "THIS IS THE TEAM #{@team_players}"
end
end
I want to add members to the team with <<. I use this code:
team << @goalkeepers.last
team << @defenders[-1..-4]
team << @midfielders[-1]
team << @attackers[-1..-2]
The first line works fine and adds one member to the team. The other lines however add arrays to my team, not the actual members.
How can I add the members individually then?