Sha256: 126851eb3c133063fed01bf61d306324f100724da5a2c7ae56cc1ba972118a76

Contents?: true

Size: 336 Bytes

Versions: 50

Compression:

Stored size: 336 Bytes

Contents

# frozen_string_literal: true

module Ree::Contracts
  class RangeValidator < BaseValidator
    def call(value)
      contract.include? value
    end

    def to_s
      contract.inspect
    end

    def message(value, _name, _lvl = 1)
      "expected value to be in range #{contract}, got #{truncate(value.inspect)}"
    end
  end
end

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
ree-1.1.1 lib/ree/contracts/validators/range_validator.rb
ree-1.1.0 lib/ree/contracts/validators/range_validator.rb
ree-1.0.47 lib/ree/contracts/validators/range_validator.rb
ree-1.0.46 lib/ree/contracts/validators/range_validator.rb
ree-1.0.45 lib/ree/contracts/validators/range_validator.rb
ree-1.0.44 lib/ree/contracts/validators/range_validator.rb
ree-1.0.43 lib/ree/contracts/validators/range_validator.rb
ree-1.0.42 lib/ree/contracts/validators/range_validator.rb
ree-1.0.41 lib/ree/contracts/validators/range_validator.rb
ree-1.0.40 lib/ree/contracts/validators/range_validator.rb
ree-1.0.39 lib/ree/contracts/validators/range_validator.rb
ree-1.0.38 lib/ree/contracts/validators/range_validator.rb
ree-1.0.37 lib/ree/contracts/validators/range_validator.rb
ree-1.0.36 lib/ree/contracts/validators/range_validator.rb
ree-1.0.35 lib/ree/contracts/validators/range_validator.rb
ree-1.0.34 lib/ree/contracts/validators/range_validator.rb
ree-1.0.33 lib/ree/contracts/validators/range_validator.rb
ree-1.0.32 lib/ree/contracts/validators/range_validator.rb
ree-1.0.31 lib/ree/contracts/validators/range_validator.rb
ree-1.0.30 lib/ree/contracts/validators/range_validator.rb