joaquimadraz/compel

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

Summary

Maintainability
A
0 mins
Test Coverage
module Compel
  module Coercion

    class Regexp < Type

      def coerce_value
        if value.is_a?(::Regexp)
          value
        end
      end

    end

  end
end