mon()
public
Returns the month of the year (1..12) for time.
t = Time .now #=> 2007年11月19日 08:27:30 -0600
t.mon #=> 11
t.month #=> 11
static VALUE
time_mon(VALUE time)
{
struct time_object *tobj;
GetTimeval(time, tobj);
MAKE_TM(time, tobj);
return INT2FIX(tobj->vtm.mon);
}