Skip to content

Instantly share code, notes, and snippets.

View manusajith's full-sized avatar

Manu S Ajith manusajith

View GitHub Profile
@jessejanderson
jessejanderson / the_abcs_of_otp.md
Last active March 13, 2024 11:23
The ABCs of OTP
@joshuawscott
joshuawscott / spec_helper.rb
Created August 1, 2013 14:08
checking for rspec typo
module RSpec
module Mocks
module AnyInstance
class Recorder
def should_recieve(*args)
raise NoMethodError.new "should_recieve: Did you mean 'should_receive' ?"
end
def should_not_recieve(*args)
raise NoMethodError.new "should_not_receive: Did you mean 'should_not_receive' ?"
end