Class: Next_Months_Calendar

Inherits:
Object
  • Object
show all
Defined in:
lib/Next_Months_Calendar/next_months_calendar.rb

Instance Method Summary collapse

Instance Method Details

#run(params) ⇒ Object



3
4
5
6
7
# File 'lib/Next_Months_Calendar/next_months_calendar.rb', line 3

def run(params)
  today = Date.today
  nextmonth = today >> 1
  system("cal","#{nextmonth.month}","#{nextmonth.year}")
end