aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/fixtures
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-09-01 15:00:31 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-09-01 15:08:19 -0700
commit6f3c6992c529a09c8f8bfdb1f714bb8ff1e23300 (patch)
treee7439b62a6c946b8bb0d05e93ba47dc9c3836a6e /activerecord/lib/active_record/fixtures
parent8b9ddbd8f912d4aac475bcbcbd3e3d39b9b73bf9 (diff)
downloadrails-6f3c6992c529a09c8f8bfdb1f714bb8ff1e23300.tar.gz
rails-6f3c6992c529a09c8f8bfdb1f714bb8ff1e23300.tar.bz2
rails-6f3c6992c529a09c8f8bfdb1f714bb8ff1e23300.zip
* Psych errors with poor yaml formatting are proxied. Fixes #2645, #2731
Diffstat (limited to 'activerecord/lib/active_record/fixtures')
-rw-r--r--activerecord/lib/active_record/fixtures/file.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/fixtures/file.rb b/activerecord/lib/active_record/fixtures/file.rb
index 04f494db2c..6bad36abb9 100644
--- a/activerecord/lib/active_record/fixtures/file.rb
+++ b/activerecord/lib/active_record/fixtures/file.rb
@@ -29,11 +29,21 @@ module ActiveRecord
rows.each(&block)
end
+ RESCUE_ERRORS = [ ArgumentError ] # :nodoc:
+
private
+ if defined?(Psych) && defined?(Psych::SyntaxError)
+ RESCUE_ERRORS << Psych::SyntaxError
+ end
+
def rows
return @rows if @rows
- data = YAML.load(render(IO.read(@file)))
+ begin
+ data = YAML.load(render(IO.read(@file)))
+ rescue *RESCUE_ERRORS => error
+ raise Fixture::FormatError, "a YAML error occurred parsing #{@file}. Please note that YAML must be consistently indented using spaces. Tabs are not allowed. Please have a look at http://www.yaml.org/faq.html\nThe exact error was:\n #{error.class}: #{error}", error.backtrace
+ end
@rows = data ? validate(data).to_a : []
end