Using Active Support Outside Rails
The ActiveSupport gem gives us the ability to do things like 3.days.ago
and to have Ruby return a date-time object.
To get this functionality outside Rails, require ‘active_support/all’, or to specifically load only the extensions for integers,
require 'active_support/core_ext/integer'