We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In ruby 1.9.2-p290 gem install gives the following error:
ERROR: While executing gem ... (NameError) uninitialized constant Psych::Syck
I could try hacking around it, e.g.:
require 'yaml' YAML::ENGINE.yamler = 'syck'
Not sure how well this will fly on 1.8.7. Any ideas?
The text was updated successfully, but these errors were encountered:
/cc @yashke
Sorry, something went wrong.
Just had this too, I encountered a similar problem with gherkin last week (see https://groups.google.com/group/cukes/browse_thread/thread/7e926a3b59545651), aslakhellesoy fixed this in cucumber/gherkin@df94b6d and the following 2 commits, might help you find a fix.
No branches or pull requests
In ruby 1.9.2-p290 gem install gives the following error:
ERROR: While executing gem ... (NameError) uninitialized constant Psych::Syck
I could try hacking around it, e.g.:
require 'yaml' YAML::ENGINE.yamler = 'syck'
Not sure how well this will fly on 1.8.7. Any ideas?
The text was updated successfully, but these errors were encountered: