README in rr-0.1.1 vs README in rr-0.1.2
- old
+ new
@@ -41,5 +41,21 @@
flexmock(User).should_receive(:find).with('42').and_return(jane) # Flexmock
User.should_receive(:find).with('42').and_return(jane) # Rspec
User.expects(:find).with('42').returns {jane} # Mocha
mock(User).find('42') {jane} # RR
+
+== Special Thanks To
+With any development effort, there are countless people who have contributed
+to making it possible. We all are standing on the shoulders of giants.
+* Pivotal Labs for sponsoring RR development
+* Parker Thompson for pairing with me
+* Felix Morio for pairing with me
+* David Chelimsky for encouragement to make the RR framework, for developing
+ the Rspec mock framework, and syntax ideas
+* Gerald Meszaros for his excellent book "xUnit Test Patterns"
+* Dan North for syntax ideas
+* Jim Weirich for developing Flexmock, the first Terse ruby mock framework
+* James Mead for developing Mocha
+* Aslak Hellesoy for Developing Rspec
+* Stephen Baker for Developing Rspec
+* Dave Astels for some BDD inspiration