You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2010/11/03 16:46:50 UTC

svn commit: r1030504 - in /buildr/trunk/spec: packaging/artifact_namespace_spec.rb spec_helpers.rb

Author: boisvert
Date: Wed Nov  3 15:46:49 2010
New Revision: 1030504

URL: http://svn.apache.org/viewvc?rev=1030504&view=rev
Log:
More RSpec 2.0.0 changes

Modified:
    buildr/trunk/spec/packaging/artifact_namespace_spec.rb
    buildr/trunk/spec/spec_helpers.rb

Modified: buildr/trunk/spec/packaging/artifact_namespace_spec.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/spec/packaging/artifact_namespace_spec.rb?rev=1030504&r1=1030503&r2=1030504&view=diff
==============================================================================
--- buildr/trunk/spec/packaging/artifact_namespace_spec.rb (original)
+++ buildr/trunk/spec/packaging/artifact_namespace_spec.rb Wed Nov  3 15:46:49 2010
@@ -661,7 +661,7 @@ describe "Extension using ArtifactNamesp
           end
         end
 
-        include Spec::Matchers # for assertions
+        include RSpec::Matchers # for assertions
 
         # Called with the ArtifactRequirement that has just been selected
         # by a user. This allows extension author to selectively perform

Modified: buildr/trunk/spec/spec_helpers.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/spec/spec_helpers.rb?rev=1030504&r1=1030503&r2=1030504&view=diff
==============================================================================
--- buildr/trunk/spec/spec_helpers.rb (original)
+++ buildr/trunk/spec/spec_helpers.rb Wed Nov  3 15:46:49 2010
@@ -353,7 +353,7 @@ unless defined?(SpecHelpers)
 
   # Allow using matchers within the project definition.
   class Buildr::Project
-    include ::Spec::Matchers, SpecHelpers
+    include ::RSpec::Matchers, SpecHelpers
   end