Completed
Push — master ( 6923c1...f0f5ed )
by Marcelo
01:21
created

String.coerce()   A

Complexity

Conditions 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
1
module Koine
2
  module Attributes
3
    module Adapter
4
      class String < Base
5
        def coerce(value)
6
          ensure_frozen do
7
            String(value)
8
          end
9
        end
10
      end
11
    end
12
  end
13
end
14