Sha256: e5e8b9c02c373227e4384620525c1e2b5434bfa7dfec2218e99659b7f38d36f4
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
# frozen_string_literal: true require 'application_form/version' require 'active_support/concern' module ApplicationForm class Error < StandardError; end extend ActiveSupport::Concern included do prepend Included # raise superclass.inspect # parent.extend ActiveModel::Naming end module Included def initialize(attrs = {}) permitted_attrs = permit_attrs(attrs) super(permitted_attrs) end end module ClassMethods delegate :sti_name, to: :superclass delegate :human_attribute_name, to: :superclass # NOTE: too many side effects if it is enabled # examples: form names, translations # delegate :name, to: :superclass def permit(*args) @_permitted_args = args end def _permitted_args @_permitted_args || (superclass.respond_to?(:_permitted_args) && superclass._permitted_args) || [] end end def update(attrs = {}) permitted_attrs = permit_attrs(attrs) super(permitted_attrs) end def update!(attrs = {}) permitted_attrs = permit_attrs(attrs) super(permitted_attrs) end def assign_attributes(attrs = {}) permitted_attrs = permit_attrs(attrs) super(permitted_attrs) end def permit_attrs(attrs) attrs.respond_to?(:permit) ? attrs.send(:permit, self.class._permitted_args) : attrs end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
application_form-0.4.0 | lib/application_form.rb |