method

method_missing

rails latest stable - Class: ActionView::Helpers

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

method_missing(called, *args, escape: true, **options, &block)
private

No documentation available.

# File actionview/lib/action_view/helpers/tag_helper.rb, line 337
          def method_missing(called, *args, escape: true, **options, &block)
            name = called.name.dasherize

            TagHelper.ensure_valid_html5_tag_name(name)

            tag_string(name, *args, options, escape: escape, &block)
          end