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

Any   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

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

1 Method

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