From 05fde24e1ef8c3b225eea8c51cbc05418620ae4a Mon Sep 17 00:00:00 2001 From: Carlos Antonio da Silva Date: Wed, 9 Jul 2014 18:44:53 -0300 Subject: Include missing module in tag_helper Since 6857415187810f1289068a448268264d0cf0844f we are using #safe_join to join the content when an Array is given, so we must include the dependent module here to make sure it's available when this module is used alone. This was making Simple Form tests to fail with current master due to the missing dependency. --- actionview/lib/action_view/helpers/tag_helper.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/actionview/lib/action_view/helpers/tag_helper.rb b/actionview/lib/action_view/helpers/tag_helper.rb index 35444bcfb4..268558669e 100644 --- a/actionview/lib/action_view/helpers/tag_helper.rb +++ b/actionview/lib/action_view/helpers/tag_helper.rb @@ -9,6 +9,7 @@ module ActionView module TagHelper extend ActiveSupport::Concern include CaptureHelper + include OutputSafetyHelper BOOLEAN_ATTRIBUTES = %w(disabled readonly multiple checked autobuffer autoplay controls loop selected hidden scoped async -- cgit v1.2.3