Skip to content

Instantly share code, notes, and snippets.

View wjbuys's full-sized avatar

Jacob Buys wjbuys

View GitHub Profile
@wjbuys
wjbuys / spec_helper.rb
Created November 4, 2010 20:41
Get the latest versions of RSpec2 and RR to play nice
require 'rspec'
require 'rr'
module RR
module Adapters
module Rspec
def self.included(mod)
RSpec.configuration.backtrace_clean_patterns.push(RR::Errors::BACKTRACE_IDENTIFIER)
end
end