aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/app
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-03-11 23:16:47 +0900
committerGitHub <noreply@github.com>2019-03-11 23:16:47 +0900
commitc41269ebc8d1f608e5161f932fb6a3ae7c85a562 (patch)
tree2d777cc45ebdd80af24d26e279b76d8bc7e681d9 /activestorage/app
parent2259b486f173e3259a9c3871803b6aecdd74b81f (diff)
parent538a459a3b8b4192636c58b32f48a9e87089cb10 (diff)
downloadrails-c41269ebc8d1f608e5161f932fb6a3ae7c85a562.tar.gz
rails-c41269ebc8d1f608e5161f932fb6a3ae7c85a562.tar.bz2
rails-c41269ebc8d1f608e5161f932fb6a3ae7c85a562.zip
Merge pull request #35568 from prathamesh-sonpatki/server_squish
Squish the deprecation messages across the codebase
Diffstat (limited to 'activestorage/app')
-rw-r--r--activestorage/app/models/active_storage/variation.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activestorage/app/models/active_storage/variation.rb b/activestorage/app/models/active_storage/variation.rb
index 67568772da..41b5a45f53 100644
--- a/activestorage/app/models/active_storage/variation.rb
+++ b/activestorage/app/models/active_storage/variation.rb
@@ -64,7 +64,7 @@ class ActiveStorage::Variation
begin
require "image_processing"
rescue LoadError
- ActiveSupport::Deprecation.warn <<~WARNING
+ ActiveSupport::Deprecation.warn <<~WARNING.squish
Generating image variants will require the image_processing gem in Rails 6.1.
Please add `gem 'image_processing', '~> 1.2'` to your Gemfile.
WARNING