Module: RR::Extensions

Defined in:
lib/rr/deprecations.rb

Overview

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

Class Method Summary collapse

Class Method Details

.const_missing(name) ⇒ Object



58
59
60
61
62
63
64
65
# 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