Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Sorry for the short, poor question before I added the answer. It was operator error using stackoverflow that caused the question to be posted before I was ready. Please advise if I should do something differently in bringing this to the community. – Brandon CS Sanders Nov 6 '12 at 0:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.