I pressed gem to rubygems.org, and when I do "gem install (gem)", I get this error:
ERROR: While executing gem ... (NameError)
uninitialized constant Psych::Syck
I can create a "gem build (gem) .gemspec" to create a local gem, and then gem install (gem) .gem, and this installs fine. I can also put the gem in the Gemfile of the Rails application with a pointer to the Github repository, which will also work. I tried installing a gem (from rubygems.org on several computers, and they all get the same error.
I don’t understand what might cause the installation to fail while rubygems.org is running, but not when I create it locally. I use Jeweler to push gem to rubygems.org.
source
share