# File lib/ruby-vpi/integer.rb, line 70 70: def ensure_min aLimit 71: if self < aLimit 72: aLimit 73: else 74: self 75: end 76: end