Sha256: c8152ea64a1195a800ec1e9a228879908329ab5b4ebff7bd994cb04a4b59db2e
Contents?: true
Size: 1015 Bytes
Versions: 6
Compression:
Stored size: 1015 Bytes
Contents
module ClosureTree module SupportFlags def use_attr_accessible? defined?(ActiveModel::MassAssignmentSecurity) && model_class.respond_to?(:accessible_attributes) && ! model_class.accessible_attributes.nil? end def include_forbidden_attributes_protection? defined?(ActiveModel::ForbiddenAttributesProtection) && model_class.ancestors.include?(ActiveModel::ForbiddenAttributesProtection) end def order_option? order_by.present? end def order_is_numeric? # The table might not exist yet (in the case of ActiveRecord::Observer use, see issue 32) return false if !order_option? || !model_class.table_exists? c = model_class.columns_hash[order_column] c && c.type == :integer end def subclass? model_class != model_class.base_class end def has_type? attribute_names.include? 'type' end def has_name? model_class.new.attributes.include? options[:name_column] end end end
Version data entries
6 entries across 6 versions & 1 rubygems