Method: Time#month

Defined in:
time.c

#monInteger #monthInteger

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

Overloads:



4519
4520
4521
4522
4523
4524
4525
4526
4527
# File 'time.c', line 4519

static VALUE
time_mon(VALUE time)
{
    struct time_object *tobj;

    GetTimeval(time, tobj);
    MAKE_TM(time, tobj);
    return INT2FIX(tobj->vtm.mon);
}