module RR::Extensions

This is here because RSpec-2’s RR adapters uses it

Public Class Methods

const_missing(name) click to toggle source
Calls superclass method
# File lib/rr/deprecations.rb, line 58
def self.const_missing(name)
  if name == :InstanceMethods
    RR.autohook
    RR::Integrations::RSpec2::Mixin
  else
    super
  end
end