aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-05-10 10:21:40 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-05-23 15:06:12 -0700
commitad3f0eec755d1d4dbe488eecf348f19dff6f58de (patch)
tree2f1fb01841996df30383f65a2680e111a8020326 /activerecord/lib/active_record
parent1170cceaaec8c0c8aef173913405be1456e4b2be (diff)
downloadrails-ad3f0eec755d1d4dbe488eecf348f19dff6f58de.tar.gz
rails-ad3f0eec755d1d4dbe488eecf348f19dff6f58de.tar.bz2
rails-ad3f0eec755d1d4dbe488eecf348f19dff6f58de.zip
adding AR::Fixtures::File class to wrap a fixture file
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/fixtures.rb1
-rw-r--r--activerecord/lib/active_record/fixtures/file.rb43
2 files changed, 44 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb
index 4aa6389a04..16a30e3fdb 100644
--- a/activerecord/lib/active_record/fixtures.rb
+++ b/activerecord/lib/active_record/fixtures.rb
@@ -14,6 +14,7 @@ require 'active_support/core_ext/object/blank'
require 'active_support/core_ext/logger'
require 'active_support/ordered_hash'
require 'active_support/core_ext/module/deprecation'
+require 'active_record/fixtures/file'
if defined? ActiveRecord
class FixtureClassNotFound < ActiveRecord::ActiveRecordError #:nodoc:
diff --git a/activerecord/lib/active_record/fixtures/file.rb b/activerecord/lib/active_record/fixtures/file.rb
new file mode 100644
index 0000000000..9e95007f40
--- /dev/null
+++ b/activerecord/lib/active_record/fixtures/file.rb
@@ -0,0 +1,43 @@
+begin
+ require 'psych'
+rescue LoadError
+end
+
+require 'erb'
+require 'yaml'
+
+module ActiveRecord
+ class Fixtures
+ class File
+ include Enumerable
+
+ ##
+ # Open a fixture file named +file+. When called with a block, the block
+ # is called with the filehandle and the filehandle is automatically closed
+ # when the block finishes.
+ def self.open(file)
+ x = new file
+ block_given? ? yield(x) : x
+ end
+
+ def initialize(file)
+ @file = file
+ @rows = nil
+ end
+
+ def each(&block)
+ rows.each(&block)
+ end
+
+ private
+ def rows
+ return @rows if @rows
+ @rows = YAML.load(render(IO.read(@file))).to_a
+ end
+
+ def render(content)
+ ERB.new(content).result
+ end
+ end
+ end
+end