Sha256: 44833756219a5a827884f2a97f2e961a8e3c0f02375fb413122ca9c8150ce989
Contents?: true
Size: 704 Bytes
Versions: 250
Compression:
Stored size: 704 Bytes
Contents
# frozen_string_literal: true module ActionView module Helpers module Tags # :nodoc: module Placeholderable # :nodoc: def initialize(*) super if tag_value = @options[:placeholder] placeholder = tag_value if tag_value.is_a?(String) method_and_value = tag_value.is_a?(TrueClass) ? @method_name : "#{@method_name}.#{tag_value}" placeholder ||= Tags::Translator .new(object, @object_name, method_and_value, scope: "helpers.placeholder") .translate placeholder ||= @method_name.humanize @options[:placeholder] = placeholder end end end end end end
Version data entries
250 entries across 237 versions & 17 rubygems