README.rdoc in caricature-0.7.0 vs README.rdoc in caricature-0.7.1
- old
+ new
@@ -1,8 +1,8 @@
= Caricature - Bringing simple mocking to the DLR
-* http://github.com/#{github_username}/#{project_name}
+* http://github.com/casualjim/caricature
== DESCRIPTION:
This project aims to make interop between IronRuby objects and .NET objects easier.
The idea is that it integrates nicely with bacon and later rspec and that it transparently lets you mock ironruby ojbects
@@ -31,28 +31,28 @@
== SYNOPSIS:
isolation = Isolation.for(Ninja)
isolation.when_receiving(:attack) do |exp|
- exp.with(:shuriken)
- exp.return(3)
+ exp.with(:shuriken)
+ exp.return(3)
end
-Battle.new(mock)
-battle.combat
+ Battle.new(mock)
+ battle.combat
-isolation.did_receive?(:attack).should.be.successful
+ isolation.should.have_received?(:attack)
== REQUIREMENTS:
* To use the caricature library you need to have uuidtools installed
-sudo gem install uuidtools
-sudo igem install uuidtools
+(sudo) gem install uuidtools
+(sudo) igem install uuidtools
== INSTALL:
-sudo gem install caricature
+(sudo) gem install caricature
== LICENSE:
Caricature -- A simple mocking framework for IronRuby
\ No newline at end of file