From 28d1d3f0fbbd8dd6c312ff69563c97bf58b5ccaa Mon Sep 17 00:00:00 2001 From: Vipul A M Date: Wed, 3 Jul 2013 08:44:04 +0530 Subject: Remove deprecated `ActiveRecord::Fixtures.find_table_name` in favour of `ActiveRecord::Fixtures.default_fixture_model_name`. --- activerecord/CHANGELOG.md | 5 +++++ activerecord/lib/active_record/fixtures.rb | 6 ------ 2 files changed, 5 insertions(+), 6 deletions(-) (limited to 'activerecord') diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 162c42e2c9..f76246f7a3 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,8 @@ +* Remove deprecated `ActiveRecord::Fixtures.find_table_name` in favor of + `ActiveRecord::Fixtures.default_fixture_model_name`. + + *Vipul A M* + * Removed deprecated `columns_for_remove` from `SchemaStatements`. *Neeraj Singh* diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index 70eda332b3..47d4f3637f 100644 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -379,12 +379,6 @@ module ActiveRecord @@all_cached_fixtures = Hash.new { |h,k| h[k] = {} } - def self.find_table_name(fixture_set_name) # :nodoc: - ActiveSupport::Deprecation.warn( - "ActiveRecord::Fixtures.find_table_name is deprecated and shall be removed from future releases. Use ActiveRecord::Fixtures.default_fixture_model_name instead.") - default_fixture_model_name(fixture_set_name) - end - def self.default_fixture_model_name(fixture_set_name) # :nodoc: ActiveRecord::Base.pluralize_table_names ? fixture_set_name.singularize.camelize : -- cgit v1.2.3