caricature 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +46 -1
- metadata +1 -1
data/README.markdown
CHANGED
@@ -27,4 +27,49 @@ Battle.new(mock)
|
|
27
27
|
battle.combat
|
28
28
|
|
29
29
|
mock.was_told_to?(:attack).should.be.true?
|
30
|
-
</pre>
|
30
|
+
</pre>
|
31
|
+
|
32
|
+
License:
|
33
|
+
--------
|
34
|
+
|
35
|
+
Caricature -- A simple mocking framework for IronRuby
|
36
|
+
|
37
|
+
Copyright (c) 2009, Caricature Team
|
38
|
+
http://github.com/casualjim/caricature
|
39
|
+
All rights reserved.
|
40
|
+
|
41
|
+
Redistribution and use in source and binary forms,
|
42
|
+
with or without modification, are permitted provided
|
43
|
+
that the following conditions are met:
|
44
|
+
|
45
|
+
* Redistributions of source code must retain the
|
46
|
+
above copyright notice, this list of conditions and
|
47
|
+
the following disclaimer.
|
48
|
+
|
49
|
+
* Redistributions in binary form must reproduce
|
50
|
+
the above copyright notice, this list of conditions
|
51
|
+
and the following disclaimer in the documentation
|
52
|
+
and/or other materials provided with the distribution.
|
53
|
+
|
54
|
+
* Neither the name of the Caricature Team nor the
|
55
|
+
names of its contributors may be used to endorse
|
56
|
+
or promote products derived from this software
|
57
|
+
without specific prior written permission.
|
58
|
+
|
59
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
60
|
+
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
61
|
+
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
62
|
+
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
63
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
64
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
65
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
66
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
67
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
68
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
69
|
+
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
70
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
71
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
72
|
+
SUCH DAMAGE.
|
73
|
+
|
74
|
+
[This is the BSD license, see
|
75
|
+
http://www.opensource.org/licenses/bsd-license.php]
|