I receive this message during capistrano deploy of my rails project:
syck has been removed, psych is used instead
Versions:
gem 'rails', '=3.2.13'
ruby 2.0.0p247
As i know ruby use native yamler "Psych".
There is no any yamler in Gemfile.
In my boot.rb:
require 'yaml'
YAML::ENGINE.yamler = 'psych'
What could be the problem?