From 05d9990e69bb7bda321012dc14a8090c690d42b9 Mon Sep 17 00:00:00 2001 From: Mario Visic Date: Sun, 27 Nov 2011 20:05:39 +1100 Subject: [PATCH] Use syck for yaml, fixes an issuew with new delayed job. --- config/boot.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/boot.rb b/config/boot.rb index 712b0981..c3c5221e 100644 --- a/config/boot.rb +++ b/config/boot.rb @@ -1,4 +1,9 @@ require 'rubygems' + +# Need to explicitly use syck for yaml +require 'yaml' +YAML::ENGINE.yamler = 'syck' + # Set up gems listed in the Gemfile. if File.exist?(File.expand_path('../../Gemfile', __FILE__)) require 'bundler'