Miscelanea   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A precio() 0 3 1
A fits() 0 3 1
A name() 0 3 1
1
# frozen_string_literal: true
2
3
# Bisuteria variada
4
class Miscelanea < Item
5
  def name
6
    miscelanea(id)['name']
7
  end
8
9
  def fits
10
    miscelanea(id)['fits']
11
  end
12
13
  def precio
14
    miscelanea(id)['precio']
15
  end
16
end
17