forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
= 0.11.3 * Fix for #78 i.e. alias Object#method as Object#_method, not Object#__method__ which already exists as another Ruby method. = 0.11.2 * Rails has a Request class which defines its own #method method. This broke the new mechanism for stubbing a method. This release includes a slightly modified version of fix #77 provided by @sikachu. See rails/rails#5907 for further info. = 0.11.1 () * In Ruby 1.8.7 methods accepting a block parameter were incorrectly restored without the block parameter after being stubbed. Fix for #76. = 0.11.0 (fa601c89a7f5314dc3d258391a99c6a9e25cefb3) * Store original method when stubbing rather than using alias_method. This fixes #41, #47, #74 and all tests now pass on both Ruby 1.8.7 and 1.9.3. * Attempting to stub a method on a frozen object should fail fast. See #68. * Prevent stubbing a method on nil by default. See #68. * Generate documentation using YARD instead of Rdoc - removes dependency on Coderay. * Publish documentation on Github pages instead of Rubyforge - uses rake task written by @tomafro. * Remove agiledox which has outlived it's usefulness. * Removed trailing whitespace throughout codebase. * Add documentation for Mock#unstub. * Improve documentation for ObjectMethods. * Provide a way to run multiple tests within a single acceptance test method.
- Loading branch information
taca
committed
Apr 28, 2012
1 parent
f11b736
commit e29c934
Showing
3 changed files
with
67 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# $NetBSD: Makefile,v 1.10 2012/03/17 14:39:20 taca Exp $ | ||
# $NetBSD: Makefile,v 1.11 2012/04/28 15:55:03 taca Exp $ | ||
|
||
DISTNAME= mocha-0.10.5 | ||
DISTNAME= mocha-0.11.3 | ||
CATEGORIES= devel | ||
|
||
MAINTAINER= [email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.9 2012/03/17 14:39:20 taca Exp $ | ||
$NetBSD: distinfo,v 1.10 2012/04/28 15:55:03 taca Exp $ | ||
|
||
SHA1 (mocha-0.10.5.gem) = b3490deeb5a2e50b86df3cdacf27f19b67fc6f3f | ||
RMD160 (mocha-0.10.5.gem) = 5e29c4701db4fdd90012cf3e1c4ebe46a254e972 | ||
Size (mocha-0.10.5.gem) = 73728 bytes | ||
SHA1 (mocha-0.11.3.gem) = bb2daa794aa488c8c51c8106247e5ccaeae61e02 | ||
RMD160 (mocha-0.11.3.gem) = 7f16324f26a39bf4890d6b957fe56d0324478538 | ||
Size (mocha-0.11.3.gem) = 178176 bytes |