aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/railtie.rb
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2010-07-19 14:53:15 +0200
committerPiotr Sarnacki <drogus@gmail.com>2010-09-03 22:59:04 +0200
commit939d4255e690bd0406179cad00836975273fd49e (patch)
tree1753974a2221210ebd6b68b14d1db45951b3fddd /railties/lib/rails/railtie.rb
parent7cccfed5943cddd6d72ed0df0ee7291cca9025ad (diff)
downloadrails-939d4255e690bd0406179cad00836975273fd49e.tar.gz
rails-939d4255e690bd0406179cad00836975273fd49e.tar.bz2
rails-939d4255e690bd0406179cad00836975273fd49e.zip
Removed most of deprecated stuff from Application and Engine
Diffstat (limited to 'railties/lib/rails/railtie.rb')
-rw-r--r--railties/lib/rails/railtie.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/railties/lib/rails/railtie.rb b/railties/lib/rails/railtie.rb
index 58b0d851f7..7126ec1699 100644
--- a/railties/lib/rails/railtie.rb
+++ b/railties/lib/rails/railtie.rb
@@ -1,7 +1,6 @@
require 'rails/initializable'
require 'rails/configuration'
require 'active_support/inflector'
-require 'active_support/deprecation'
module Rails
# Railtie is the core of the Rails Framework and provides several hooks to extend
@@ -142,14 +141,6 @@ module Rails
end
end
- def railtie_name(*)
- ActiveSupport::Deprecation.warn "railtie_name is deprecated and has no effect", caller
- end
-
- def log_subscriber(*)
- ActiveSupport::Deprecation.warn "log_subscriber is deprecated and has no effect", caller
- end
-
def rake_tasks(&blk)
@rake_tasks ||= []
@rake_tasks << blk if blk