Class: Time

Inherits:
Object show all
Defined in:
lib/monkey_patches.rb

Overview

Monkey Patch for Time

Instance Method Summary collapse

Instance Method Details

#add_minutes(m) ⇒ Time

add function add_minutes to Time Class

Examples:

time = Time.now
time = time.add_minutes(10)

Returns:



104
105
106
# File 'lib/monkey_patches.rb', line 104

def add_minutes(m)
  self + (60 * m)
end