method

extract_record

rails latest stable - Class: ActionDispatch::Routing::PolymorphicRoutes

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v4.1.8) is shown here.

extract_record(record_or_hash_or_array)
private

No documentation available.

# File actionpack/lib/action_dispatch/routing/polymorphic_routes.rb, line 208
        def extract_record(record_or_hash_or_array)
          case record_or_hash_or_array
            when Array; record_or_hash_or_array.last
            when Hash;  record_or_hash_or_array[:id]
            else        record_or_hash_or_array
          end
        end