private Method

PolymorphicRoutes.extract_record(record_or_hash_or_array)

There's no documentation for this item.

Source Code

# File action_controller/polymorphic_routes.rb, line 144
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
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.