module HolaHarsh

Constants

VERSION

Public Class Methods

show_msg() click to toggle source
# File lib/hola_harsh.rb, line 4
def self.show_msg
  if Time.now.hour > 22
    puts "Get off the interwebs!  Go to bed!!"
  else
    puts "Go and do work"  
  end
end