Sha256: 893b03d4b8e80f9c62ade99472701bb56c69cca5fc0ea4307c7af44174bcbaa5
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 KB
Contents
module ClosureTree module SupportFlags def use_attr_accessible? (3..4).include? ActiveRecord::VERSION::MAJOR && defined?(ActiveModel::MassAssignmentSecurity) && model_class.respond_to?(:accessible_attributes) && model_class.accessible_attributes.present? end def include_forbidden_attributes_protection? (3..4).include? ActiveRecord::VERSION::MAJOR && 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
closure_tree-4.2.2 | lib/closure_tree/support_flags.rb |