Created
August 6, 2014 11:04
-
-
Save hacknfortes/8ef4ea2601a4c37bbbb4 to your computer and use it in GitHub Desktop.
Inscrição Hack'n Fortes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class HacknFortes | |
class << self | |
def objetivo | |
"A Fortes Informática está em busca de novos talentos. Por isso, convidamos você para participar do Hack’n Fortes!\n\nSe você busca novos desafios, inscreva-se e venha participar de um dia dedicado ao desenvolvimento, com muito Ruby, Red Bull e junk food." | |
end | |
def data | |
"Data: #{Time.new(2014,8,30,10,00).strftime('%d/%m/%Y')} (Sábado)\nHORÁRIO: #{Time.new(2014,8,30,10,00).strftime('%H:%M')} às #{Time.new(2014,8,30,18,00).strftime('%H:%M')}\n\n" | |
end | |
def como_participar? | |
"Para que pensar duas vezes?! acesse https://docs.google.com/forms/d/17ujWSJFPfZ3PTUxNIUfmoRR5P-ru2qWoM8oRJLBPYdI e faça sua pré-inscrição no evento até o dia 17 de agosto. As vagas são limitadas e nossa equipe entrará em contato com você para confirmar sua participação.\n" | |
end | |
def onde? | |
"\nLOCAL: GRUPO FORTES (Rua Antônio Fortes, 330 – Luciano Cavalcante)\n" | |
end | |
def monta_anuncio | |
limpar_tela | |
[:objetivo, :como_participar?, :onde?, :data].each do |action| | |
puts self.send action | |
end | |
true | |
end | |
def limpar_tela | |
system("cls") || system("clear") | |
end | |
end | |
end | |
HacknFortes.monta_anuncio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment