Flowdock
method

cached_fixtures

Importance_0
v2.2.1 - Show latest stable - 0 notes - Class: Fixtures
cached_fixtures(connection, keys_to_fetch = nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/fixtures.rb, line 464
  def self.cached_fixtures(connection, keys_to_fetch = nil)
    if keys_to_fetch
      fixtures = cache_for_connection(connection).values_at(*keys_to_fetch)
    else
      fixtures = cache_for_connection(connection).values
    end
    fixtures.size > 1 ? fixtures : fixtures.first
  end
Register or log in to add new notes.