7 lines
125 B
Ruby
7 lines
125 B
Ruby
# frozen_string_literal: true
|
|
|
|
class GtOneCoercion < Virtus::Attribute
|
|
def coerce(value)
|
|
[1, value.to_i].max
|
|
end
|
|
end
|