Conditions | 1 |
Total Lines | 10 |
Lines | 10 |
Ratio | 100 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | # encoding: UTF-8 |
||
3 | 1 | View Code Duplication | def heros |
|
|||
4 | 806 | total_heros = Dir['./data/heroes/*'].length |
|
5 | 806 | [*0..(total_heros - 1)].map do |i| |
|
6 | 92690 | h = load_yaml("/heroes/#{i}") |
|
7 | 92690 | h['nivel'] = 1 unless h['nivel'] |
|
8 | 92690 | h['ciudad'] = 'Jadessvärd' unless h['ciudad'] |
|
9 | 92690 | h['id'] = i |
|
10 | 92690 | Hero.new(h) |
|
11 | end |
||
12 | end |
||
13 | |||
36 |