diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2019-03-11 18:39:14 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2019-03-11 19:22:37 +0530 |
commit | 538a459a3b8b4192636c58b32f48a9e87089cb10 (patch) | |
tree | 2dd231fa076d17773ed464862ac78edc6ac15b40 /activerecord/lib | |
parent | 33800d2330e1c7d36dcbb5150857cfb33fc45379 (diff) | |
download | rails-538a459a3b8b4192636c58b32f48a9e87089cb10.tar.gz rails-538a459a3b8b4192636c58b32f48a9e87089cb10.tar.bz2 rails-538a459a3b8b4192636c58b32f48a9e87089cb10.zip |
Squish the deprecation messages across the codebase
Sample example ->
Before:
prathamesh@Prathameshs-MacBook-Pro-2 blog *$ rails server thin
DEPRECATION WARNING: Passing the Rack server name as a regular argument is deprecated
and will be removed in the next Rails version. Please, use the -u
option instead.
After:
prathamesh@Prathameshs-MacBook-Pro-2 squish_app *$ rails server thin
DEPRECATION WARNING: Passing the Rack server name as a regular argument is deprecated and will be removed in the next Rails version. Please, use the -u option instead.
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb index 3dc81ffccf..6981ea6ecd 100644 --- a/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +++ b/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb @@ -1051,7 +1051,7 @@ module ActiveRecord def assume_migrated_upto_version(version, migrations_paths = nil) unless migrations_paths.nil? - ActiveSupport::Deprecation.warn(<<~MSG) + ActiveSupport::Deprecation.warn(<<~MSG.squish) Passing migrations_paths to #assume_migrated_upto_version is deprecated and will be removed in Rails 6.1. MSG end |