Obtenez l'année en cours dans Ruby
# Using the Time class
current_year = Time.new.year
current_year = Time.now.year
# Using the Date class
current_year = Date.today.year
# Using the DateTime class
current_year = DateTime.now.year
Ukulily