joaquimadraz/compel

View on GitHub
lib/compel/coercion/types/integer.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Compel
  module Coercion

    class Integer < Type

      def coerce_value
        Integer(value) rescue nil
      end

    end

  end
end