Sha256: 6154ae1131f4e1753ac2fe4e6bb2b87812e00759fb7dc8538c6c03fa46a3ad3e
Contents?: true
Size: 419 Bytes
Versions: 19
Compression:
Stored size: 419 Bytes
Contents
# -*- encoding: utf-8 -*- # -*- frozen_string_literal: true -*- # -*- warn_indent: true -*- module RailsBootstrapForm module Inputs module HiddenField extend ActiveSupport::Concern included do def hidden_field(attribute, options = {}) options[:value] = object.send(attribute) unless options.key?(:value) super(attribute, options) end end end end end
Version data entries
19 entries across 19 versions & 1 rubygems