Sha256: 9eca8542555e079d4baa24023614fc4e403445da1657e7283cb175de85dbb17d
Contents?: true
Size: 972 Bytes
Versions: 24
Compression:
Stored size: 972 Bytes
Contents
module RailsAdmin module Adapters module ActiveRecord class AbstractObject # undef almost all of this class's methods so it will pass almost # everything through to its delegate using method_missing (below). instance_methods.each { |m| undef_method m unless m.to_s =~ /(^__|^send$|^object_id$)/ } # ^^^^^ # the unnecessary "to_s" above is a workaround for meta_where, see # https://github.com/sferik/rails_admin/issues/374 attr_accessor :object def initialize(object) self.object = object end def set_attributes(attributes) object.assign_attributes(attributes) if attributes end def save(options = {validate: true}) object.save(options) end def method_missing(name, *args, &block) object.send(name, *args, &block) end end end end end
Version data entries
24 entries across 24 versions & 2 rubygems