aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/fixtures/file.rb
Commit message (Collapse)AuthorAgeFilesLines
* Move/rename files to follow naming conventionsAlexey Muranov2012-10-071-56/+0
|
* Rename "Fixtures" class to "FixtureSet"Alexey Muranov2012-10-071-1/+1
| | | | Rename `ActiveRecord::Fixtures` class to `ActiveRecord::FixtureSet`. Instances of this class normally hold a collection of fixtures (records) loaded either from a single YAML file, or from a file and a folder with the same name. This change make the class name singular and makes the class easier to distinguish from the modules like `ActiveRecord::TestFixtures`, which operates on multiple fixture sets, or `DelegatingFixtures`, `::Fixtures`, etc., and from the class `ActiveRecord::Fixture`, which corresponds to a single fixture.
* add :nodoc: directive to AR::Fixtures::File [ci skip]Francesco Rodriguez2012-09-211-1/+1
|
* Psych is always available on 1.9Jeremy Kemper2012-05-311-24/+20
|
* No need to require psych since require yaml does that.Rafael Mendonça França2012-01-041-1/+0
|
* No need to use rescue block to require psychRafael Mendonça França2012-01-041-5/+1
|
* * Psych errors with poor yaml formatting are proxied. Fixes #2645, #2731Aaron Patterson2011-09-011-1/+11
|
* fixing 1.8 support for new fixture testsAaron Patterson2011-05-231-1/+4
|
* fixture file will validate fixture formatAaron Patterson2011-05-231-1/+8
|
* return an empty array for empty yaml filesAaron Patterson2011-05-231-1/+3
|
* adding AR::Fixtures::File class to wrap a fixture fileAaron Patterson2011-05-231-0/+43