El now() es un método incorporado en Ruby que devuelve la hora actual.
Sintaxis : tiempo.ahora()
Parámetros : la función no acepta ningún parámetro.
Valor devuelto : Devuelve la hora actual
Ejemplo 1 :
# Ruby code for now() method # Include Time require 'time' # Declaring time a = Time.now() # Prints current time puts a
Salida :
2019-08-27 08:26:42 +0000
Ejemplo 2 :
# Ruby code for now() method # Include Time require 'time' # Declaring time a = Time.now() # Prints current time puts a
Salida :
2019-08-27 08:26:42 +0000