diff options
author | Xavier Noria <fxn@hashref.com> | 2010-01-26 22:57:27 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-01-26 22:57:27 +0100 |
commit | 7d312e54bad9c39634c137caec07dfc8df471650 (patch) | |
tree | 6267fcbc50215cca6a2395a27959dfb055ba4080 /activesupport | |
parent | 44afd785c8e390f47bc5b80e5d94309b6b56a13c (diff) | |
download | rails-7d312e54bad9c39634c137caec07dfc8df471650.tar.gz rails-7d312e54bad9c39634c137caec07dfc8df471650.tar.bz2 rails-7d312e54bad9c39634c137caec07dfc8df471650.zip |
deletes no void files removal.rb and class_test.rb
Diffstat (limited to 'activesupport')
5 files changed, 0 insertions, 28 deletions
diff --git a/activesupport/lib/active_support/core_ext/class.rb b/activesupport/lib/active_support/core_ext/class.rb index 44ad6c8c08..62df7d8b82 100644 --- a/activesupport/lib/active_support/core_ext/class.rb +++ b/activesupport/lib/active_support/core_ext/class.rb @@ -1,4 +1,3 @@ require 'active_support/core_ext/class/attribute_accessors' require 'active_support/core_ext/class/inheritable_attributes' -require 'active_support/core_ext/class/removal' require 'active_support/core_ext/class/delegating_attributes' diff --git a/activesupport/lib/active_support/core_ext/class/removal.rb b/activesupport/lib/active_support/core_ext/class/removal.rb deleted file mode 100644 index 74140eb978..0000000000 --- a/activesupport/lib/active_support/core_ext/class/removal.rb +++ /dev/null @@ -1,5 +0,0 @@ -require 'active_support/core_ext/object/extending' -require 'active_support/core_ext/module/introspection' - -class Class #:nodoc: -end diff --git a/activesupport/lib/active_support/core_ext/object/extending.rb b/activesupport/lib/active_support/core_ext/object/extending.rb index 76ed8801f9..c3331ab478 100644 --- a/activesupport/lib/active_support/core_ext/object/extending.rb +++ b/activesupport/lib/active_support/core_ext/object/extending.rb @@ -1,4 +1,3 @@ -require 'active_support/core_ext/class/removal' require 'active_support/core_ext/object/blank' class Object diff --git a/activesupport/test/core_ext/class_test.rb b/activesupport/test/core_ext/class_test.rb deleted file mode 100644 index a082beb26a..0000000000 --- a/activesupport/test/core_ext/class_test.rb +++ /dev/null @@ -1,20 +0,0 @@ -require 'abstract_unit' -require 'active_support/core_ext/class' - -class A -end - -module X - class B - end -end - -module Y - module Z - class C - end - end -end - -class ClassTest < Test::Unit::TestCase -end diff --git a/activesupport/test/core_ext/object_and_class_ext_test.rb b/activesupport/test/core_ext/object_and_class_ext_test.rb index 375273d680..33a321db36 100644 --- a/activesupport/test/core_ext/object_and_class_ext_test.rb +++ b/activesupport/test/core_ext/object_and_class_ext_test.rb @@ -1,7 +1,6 @@ require 'abstract_unit' require 'active_support/time' require 'active_support/core_ext/object' -require 'active_support/core_ext/class/removal' class ClassA; end class ClassB < ClassA; end |