summaryrefslogtreecommitdiff
path: root/lib/api/validations/types/comma_separated_to_integer_array.rb
blob: b8ab08b3fd4074605d491b6cfa03b076cc1933a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module API
  module Validations
    module Types
      class CommaSeparatedToIntegerArray < CommaSeparatedToArray
        def self.coerce
          lambda do |value|
            super.call(value).map(&:to_i)
          end
        end
      end
    end
  end
end