You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by as...@apache.org on 2008/07/28 19:15:31 UTC

svn commit: r680404 - in /incubator/buildr/trunk: CHANGELOG spec/common_spec.rb

Author: assaf
Date: Mon Jul 28 10:15:30 2008
New Revision: 680404

URL: http://svn.apache.org/viewvc?rev=680404&view=rev
Log:
Fixed: BUILDR-109 Failure of "Buildr::Filter should respond to :include anduse these inclusion patterns" (Lacton).

Modified:
    incubator/buildr/trunk/CHANGELOG
    incubator/buildr/trunk/spec/common_spec.rb

Modified: incubator/buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/CHANGELOG?rev=680404&r1=680403&r2=680404&view=diff
==============================================================================
--- incubator/buildr/trunk/CHANGELOG (original)
+++ incubator/buildr/trunk/CHANGELOG Mon Jul 28 10:15:30 2008
@@ -5,9 +5,11 @@
 supported terminal, error message is red.
 * Changed: BUILDR-104 Buildr::group has :under and :version, but not :type.
 Now it has :type too (Lacton).
-* Fixed: BUILDR-108 Trace to explain why a compile is done (Lacton).
 * Fixed: BUILDR-106 download(artifact(...)=>url) broken in certain cases
 (Lacton).
+* Fixed: BUILDR-108 Trace to explain why a compile is done (Lacton).
+* Fixed: BUILDR-109 Failure of "Buildr::Filter should respond to :include and
+use these inclusion patterns" (Lacton).
 
 1.3.2 (2008-07-18)
 * Added: --prereqs command line argument to show all tasks and their

Modified: incubator/buildr/trunk/spec/common_spec.rb
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/spec/common_spec.rb?rev=680404&r1=680403&r2=680404&view=diff
==============================================================================
--- incubator/buildr/trunk/spec/common_spec.rb (original)
+++ incubator/buildr/trunk/spec/common_spec.rb Mon Jul 28 10:15:30 2008
@@ -304,7 +304,7 @@
 
   it 'should respond to :include and use these inclusion patterns' do
     @filter.from('src').into('target').include('file2', 'file3').run
-    Dir['target/*'].should eql(['target/file2', 'target/file3'])
+    Dir['target/*'].sort.should eql(['target/file2', 'target/file3'])
   end
 
   it 'should respond to :exclude and return self' do