In Ruby 2.4, clamp method is added to the Comparable module. This method can be used to clamp an object within a specific range of values. clamp method takes min and max as two arguments to define the range of values in which the given argument should be clamped. Clamping numbers clamp can be used to keep a number within the range of min, max. 1 210.clamp(5, 20) 3=> 10 4 510.clamp(15, 20) 6=> 15 7