All codepaths eventually converge on lib/autopsy.rb, which has an explicit require "rspec" call.
This can be problematic if, for example, you're using Cucumber without RSpec, or you're using a library like rspec-rails, which depends directly on rspec-core.
(A workaround for the time being involves creating an "empty" lib/rspec.rb file, but that's far from ideal.)
All codepaths eventually converge on
lib/autopsy.rb, which has an explicitrequire "rspec"call.This can be problematic if, for example, you're using Cucumber without RSpec, or you're using a library like
rspec-rails, which depends directly onrspec-core.(A workaround for the time being involves creating an "empty"
lib/rspec.rbfile, but that's far from ideal.)