Sha256: d214be59d7542532169e483803ba1ffb9ee631cd978421dfdb4d0e4cffcac4d4

Contents?: true

Size: 1.08 KB

Versions: 1

Compression:

Stored size: 1.08 KB

Contents

module ClosureTree
  module SupportFlags

    def use_attr_accessible?
      ActiveRecord::VERSION::MAJOR == 3 &&
        defined?(ActiveModel::MassAssignmentSecurity) &&
        model_class.respond_to?(:accessible_attributes) &&
        model_class.accessible_attributes.present?
    end

    def include_forbidden_attributes_protection?
      ActiveRecord::VERSION::MAJOR == 3 &&
        defined?(ActiveModel::ForbiddenAttributesProtection) &&
        model_class.ancestors.include?(ActiveModel::ForbiddenAttributesProtection)
    end

    def order_option?
      !options[:order].nil?
    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.0 lib/closure_tree/support_flags.rb