Class: ActiveRecord::Fixture
- Includes:
- Enumerable
- Defined in:
- activerecord/lib/active_record/fixtures.rb
Overview
:nodoc:
Defined Under Namespace
Classes: FixtureError, FormatError
Instance Attribute Summary collapse
-
#fixture ⇒ Object
(also: #to_hash)
readonly
Returns the value of attribute fixture.
-
#model_class ⇒ Object
readonly
Returns the value of attribute model_class.
Instance Method Summary collapse
- #[](key) ⇒ Object
- #class_name ⇒ Object
- #each ⇒ Object
- #find ⇒ Object
-
#initialize(fixture, model_class) ⇒ Fixture
constructor
A new instance of Fixture.
Methods included from Enumerable
#as_json, #compact_blank, #exclude?, #excluding, #including, #index_by, #index_with, #many?, #pluck, #sum, #without
Constructor Details
#initialize(fixture, model_class) ⇒ Fixture
Returns a new instance of Fixture.
747 748 749 750 |
# File 'activerecord/lib/active_record/fixtures.rb', line 747 def initialize(fixture, model_class) @fixture = fixture @model_class = model_class end |
Instance Attribute Details
#fixture ⇒ Object (readonly) Also known as: to_hash
Returns the value of attribute fixture
745 746 747 |
# File 'activerecord/lib/active_record/fixtures.rb', line 745 def fixture @fixture end |
#model_class ⇒ Object (readonly)
Returns the value of attribute model_class
745 746 747 |
# File 'activerecord/lib/active_record/fixtures.rb', line 745 def model_class @model_class end |
Instance Method Details
#[](key) ⇒ Object
760 761 762 |
# File 'activerecord/lib/active_record/fixtures.rb', line 760 def [](key) fixture[key] end |
#class_name ⇒ Object
752 753 754 |
# File 'activerecord/lib/active_record/fixtures.rb', line 752 def class_name model_class.name if model_class end |
#each ⇒ Object
756 757 758 |
# File 'activerecord/lib/active_record/fixtures.rb', line 756 def each fixture.each { |item| yield item } end |
#find ⇒ Object
766 767 768 769 770 771 |
# File 'activerecord/lib/active_record/fixtures.rb', line 766 def find raise FixtureClassNotFound, "No class attached to find." unless model_class model_class.unscoped do model_class.find(fixture[model_class.primary_key]) end end |