mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
15 lines
618 B
Ruby
15 lines
618 B
Ruby
# Backported Ruby builtins so you can code with the latest & greatest
|
|
# but still run on any Ruby 1.8.x.
|
|
#
|
|
# Date next_year, next_month
|
|
# DateTime to_date, to_datetime, xmlschema
|
|
# Enumerable group_by, none?
|
|
# String ord
|
|
# Time to_date, to_time, to_datetime
|
|
require 'active_support'
|
|
require 'active_support/core_ext/date/calculations'
|
|
require 'active_support/core_ext/date_time/conversions'
|
|
require 'active_support/core_ext/enumerable'
|
|
require 'active_support/core_ext/string/conversions'
|
|
require 'active_support/core_ext/string/interpolation'
|
|
require 'active_support/core_ext/time/conversions'
|