Last active
December 11, 2015 08:49
-
-
Save GusGA/4575912 to your computer and use it in GitHub Desktop.
Script de prueba para tuitear el ida de la semana a través de la consola
This file contains hidden or 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
require 'date' | |
arreglo = %w(Domingo Lunes Martes Miercoles Jueves Viernes Sabado) | |
dia = Date.today.wday | |
puts `t update "Hoy es #{arreglo[dia]}"` | |
#el comando "t update" es un comando de una gema de ruby para tuitear a traves de la consola | |
#link del repositorio https://github.com/GusGA/t | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment