Skip to content

Instantly share code, notes, and snippets.

@leobessa
Created April 13, 2010 03:01
Show Gist options
  • Save leobessa/364267 to your computer and use it in GitHub Desktop.
Save leobessa/364267 to your computer and use it in GitHub Desktop.
class Time
def day_light?
(6..18).include? self.hour
end
end
class Maria
def greet
p "Bom dia"
end
end
class Joao
def greet
p "E aê mano?"
end
end
class MariaSapatao < Time.now.day_light? ? Maria : Joao
end
MariaSapatao.new.greet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment