1 2 3 4 5 6 7 8 9 10 11
module Support module Subject def expect_it expect(subject) end end end RSpec.configure do |conf| conf.include Support::Subject end