From 288553540b5b2f37497cb19357b25ac12e0498fd Mon Sep 17 00:00:00 2001 From: Michael Koziarski Date: Thu, 3 Jan 2008 19:14:38 +0000 Subject: Ruby 1.9: Forwards compatibility change for fixtures and the new CSV module [JEG2] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8544 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- activerecord/lib/active_record/fixtures.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activerecord/lib') diff --git a/activerecord/lib/active_record/fixtures.rb b/activerecord/lib/active_record/fixtures.rb index ffbce97295..f424b9379c 100755 --- a/activerecord/lib/active_record/fixtures.rb +++ b/activerecord/lib/active_record/fixtures.rb @@ -717,7 +717,7 @@ class Fixtures < (RUBY_VERSION < '1.9' ? YAML::Omap : Hash) end def read_csv_fixture_files - reader = CSV::Reader.create(erb_render(IO.read(csv_file_path))) + reader = CSV.parse(erb_render(IO.read(csv_file_path))) header = reader.shift i = 0 reader.each do |row| -- cgit v1.2.3