This method is only available on newer versions. The first available version (v2_6_3) is shown here.
min()
Returns the minute (0-59).
DateTime.new(2001,2,3,4,5,6).min #=> 5
static VALUE d_lite_min(VALUE self) { get_d1(self); return INT2FIX(m_min(dat)); }