aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/template/handlers/erb/deprecated_erubis.rb
blob: 427ea20064006e69e584c76b8e607e1a20bedfd4 (plain) (blame)
1
2
3
4
5
6
7
8
9
::ActiveSupport::Deprecation.warn("ActionView::Template::Handlers::Erubis is deprecated and will be removed from Rails 5.2. Switch to ActionView::Template::Handlers::ERB::Erubi instead.")

module ActionView
  class Template
    module Handlers
      Erubis = ERB::Erubis
    end
  end
end