aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2012-05-10 19:28:02 -0300
committerSantiago Pastorino <santiago@wyeworks.com>2012-05-11 19:00:11 -0300
commita6381042fa9899544c365dfa369ab15c79f7f158 (patch)
tree1582813b6dd4d27207a4f67522e2f48c6c8721f6 /activesupport/lib/active_support
parentecef5a9f224ad3ac74c0466b33cef0226ec0787c (diff)
downloadrails-a6381042fa9899544c365dfa369ab15c79f7f158.tar.gz
rails-a6381042fa9899544c365dfa369ab15c79f7f158.tar.bz2
rails-a6381042fa9899544c365dfa369ab15c79f7f158.zip
Remove ruby/shim
require 'action_view' is now much faster
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/ruby/shim.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/activesupport/lib/active_support/ruby/shim.rb b/activesupport/lib/active_support/ruby/shim.rb
deleted file mode 100644
index 13e96b3596..0000000000
--- a/activesupport/lib/active_support/ruby/shim.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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'