2009-05-20 20:59:34 -04:00
|
|
|
# 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, each_with_object, none?
|
|
|
|
# Process Process.daemon
|
2009-11-09 22:30:02 -05:00
|
|
|
# REXML security fix
|
2009-05-20 20:59:34 -04:00
|
|
|
# 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/process/daemon'
|
|
|
|
require 'active_support/core_ext/string/conversions'
|
2009-12-20 17:07:19 -05:00
|
|
|
require 'active_support/core_ext/string/interpolation'
|
2009-11-09 22:30:02 -05:00
|
|
|
require 'active_support/core_ext/rexml'
|
2009-05-20 20:59:34 -04:00
|
|
|
require 'active_support/core_ext/time/conversions'
|
2010-02-23 18:37:17 -05:00
|
|
|
require 'active_support/core_ext/file/path'
|
2010-03-17 03:15:55 -04:00
|
|
|
require 'active_support/core_ext/module/method_names'
|