vinistock/sail

View on GitHub
lib/sail/types/range.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Sail
  module Types
    # Range
    #
    # The Range type is similar to an
    # integer, but has a minimum value
    # of 0 and a maximum value of 99.
    class Range < Integer; end
  end
end