mirror of
https://github.com/github/rails.git
synced 2026-02-10 14:15:00 -05:00
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
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Make sure CSV fixtures are compatible with ruby 1.9's new csv implementation. [JEG2]
|
||||
|
||||
* Added by parameter to increment, decrement, and their bang varieties so you can do player1.increment!(:points, 5) #10542 [Sam]
|
||||
|
||||
* Optimize ActiveRecord::Base#exists? to use #select_all instead of #find. Closes #10605 [jamesh, fcheung, protocool]
|
||||
|
||||
@@ -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|
|
||||
|
||||
Reference in New Issue
Block a user