aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/template/handlers/erb/deprecated_erubis.rb
blob: 00c7d7cc7d4687496bd0294a9ce6f41ba464f1ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

::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