We have random nondeterministic rspec failures of the form:
NoMethodError:
undefined method `[]' for nil:NilClass
We eventually traced the failures back through cover_me to its dependency on configatron. Configatron forces the use of syck for ruby > 1.9.1 with the following in store.rb:
class Configatron
class Store
if RUBY_VERSION.match(/^1\.9\.[^1]/)
require 'syck'
::YAML::ENGINE.yamler = 'syck' unless RUBY_PLATFORM == 'java'
end
You can work around the issue by requiring configatron and then setting your yamler back to psych.
require 'configatron'
::YAML::ENGINE.yamler = 'psych'
Or, just don't use cover_me/configatron until it is fixed.