Sha256: aa9687c7fac9a9c833008c071b12979e55b02c5c3051f430c9fe55ea1fead03d
Contents?: true
Size: 290 Bytes
Versions: 14
Compression:
Stored size: 290 Bytes
Contents
# frozen_string_literal: true module Fields::Options class IntegerField < FieldOptions attribute :step, :integer, default: 0 validates :step, numericality: { only_integer: true, greater_than_or_equal_to: 0 } end end
Version data entries
14 entries across 14 versions & 1 rubygems