1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Add a missing requirement on yaml to run integrity_spec.rb
Author: Cédric Boutillier <cedric.boutillier@gmail.com>
Bug: https://github.com/yob/pdf-reader/issues/49
Last-Update: 2012-02-23
Forwarded: not-needed
---
spec/spec_helper.rb | 1 +
1 file changed, 1 insertion(+)
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 5f09428..adf316b 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -10,6 +10,7 @@ require 'pdf/reader'
require 'timeout'
require 'singleton'
require 'digest/md5'
+require 'yaml'
# Requires supporting ruby files with custom matchers and macros, etc,
|