Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) by www.NetBSD.org (Postfix) with ESMTP id BEBC063C07C for ; Sun, 17 Mar 2013 16:05:46 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id B491114A2DB; Sun, 17 Mar 2013 16:05:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 62B1414A2D8 for ; Sun, 17 Mar 2013 16:05:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id tpPQpaoYZnew for ; Sun, 17 Mar 2013 16:05:42 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id 9061114A2D3 for ; Sun, 17 Mar 2013 16:05:42 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 80BBE175DD; Sun, 17 Mar 2013 16:05:42 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Sun, 17 Mar 2013 16:05:42 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-rspec-core To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20130317160542.80BBE175DD@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: taca Date: Sun Mar 17 16:05:42 UTC 2013 Modified Files: pkgsrc/devel/ruby-rspec-core: Makefile distinfo Log Message: Update ruby-rspec-core to 2.13.1. ### 2.13.1 / 2013-03-12 [full changelog](http://github.com/rspec/rspec-core/compare/v2.13.0...v2.13.1) Bug fixes * Use hook classes as proxies rather than extending hook blocks to support lambdas for before/after/around hooks. (David Chelimsky) * Fix regression in 2.13.0 that caused confusing behavior when overriding a named subject with an unnamed subject in an inner group and then referencing the outer group subject's name. The fix for this required us to disallow using `super` in a named subject (which is confusing, anyway -- named subjects create 2 methods, so which method on the parent example group are you `super`ing to?) but `super` in an unnamed subject continues to work (Myron Marston). * Do not allow a referenced `let` or `subject` in `before(:all)` to cause other `let` declarations to leak across examples (Myron Marston). * Work around odd ruby 1.9 bug with `String#match` that was triggered by passing it a regex from a `let` declaration. For more info, see http://bugs.ruby-lang.org/issues/8059 (Aaron Kromer). * Add missing `require 'set'` to `base_text_formatter.rb` (Tom Anderson). Deprecations * Deprecate accessing `let` or `subject` declarations in `before(:all)`. These were not intended to be called in a `before(:all)` hook, as they exist to define state that is reset between each example, while `before(:all)` exists to define state that is shared across examples in an example group (Myron Marston). To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/ruby-rspec-core/Makefile \ pkgsrc/devel/ruby-rspec-core/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.