Completed
Push — master ( fc6b68...5ba60e )
by Marcelo
44s
created

Symbol   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
dl 0
loc 5
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A coerce() 0 3 1
1
module Koine
2
  module Attributes
3
    module Adapter
4
      class Symbol < Base
5
        def coerce(value)
6
          value.to_sym
7
        end
8
      end
9
    end
10
  end
11
end
12