aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/form_helper.rb
diff options
context:
space:
mode:
authorTodd Bealmear <todd@t0dd.io>2015-01-08 13:01:16 -0800
committerTodd Bealmear <todd@t0dd.io>2015-02-16 11:35:27 -0800
commit01e94ef3b12922b77e55a067866d7a1fa62f1759 (patch)
tree20b17af0bb337a32edcc7f23245276c58fddfb24 /actionview/lib/action_view/helpers/form_helper.rb
parentd9f8b58d9802afe62f7bf772fc08683851d49940 (diff)
downloadrails-01e94ef3b12922b77e55a067866d7a1fa62f1759.tar.gz
rails-01e94ef3b12922b77e55a067866d7a1fa62f1759.tar.bz2
rails-01e94ef3b12922b77e55a067866d7a1fa62f1759.zip
Remove RecordTagHelper, add extraction notices
Per DHH in #18337, ActionView::Helpers::RecordTagHelper has been extracted to an external gem (source currently lives at todd/record_tag_helper). Removal notices have also been added for anyone upgrading that use the extracted methods.
Diffstat (limited to 'actionview/lib/action_view/helpers/form_helper.rb')
-rw-r--r--actionview/lib/action_view/helpers/form_helper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionview/lib/action_view/helpers/form_helper.rb b/actionview/lib/action_view/helpers/form_helper.rb
index 8d78ba13d5..cd52763f31 100644
--- a/actionview/lib/action_view/helpers/form_helper.rb
+++ b/actionview/lib/action_view/helpers/form_helper.rb
@@ -4,6 +4,7 @@ require 'action_view/helpers/tag_helper'
require 'action_view/helpers/form_tag_helper'
require 'action_view/helpers/active_model_helper'
require 'action_view/model_naming'
+require 'action_view/record_identifier'
require 'active_support/core_ext/module/attribute_accessors'
require 'active_support/core_ext/hash/slice'
require 'active_support/core_ext/string/output_safety'
@@ -110,6 +111,7 @@ module ActionView
include FormTagHelper
include UrlHelper
include ModelNaming
+ include RecordIdentifier
# Creates a form that allows the user to create or update the attributes
# of a specific model object.