Author: assaf
Date: Sat Dec 22 12:38:39 2007
New Revision: 606487
URL: http://svn.apache.org/viewvc?rev=606487&view=rev
Log:
Changed version number and added Test::Unit dependency for RSpec 1.1
Modified:
incubator/buildr/trunk/CHANGELOG
incubator/buildr/trunk/lib/buildr.rb
Modified: incubator/buildr/trunk/CHANGELOG
URL:
http://svn.apache.org/viewvc/incubator/buildr/trunk/CHANGELOG?rev=606487&r1=606486&r2=606487&view=diff
==============================================================================
--- incubator/buildr/trunk/CHANGELOG (original)
+++ incubator/buildr/trunk/CHANGELOG Sat Dec 22 12:38:39 2007
@@ -7,7 +7,7 @@
* Changed: Compile extension and CompileTask are now separate from the Java
module. Multiple compilers can be used, either guessed from the project
layout, or specified with compile.using(:name).
* Changed: Test extension and TestTask are now separate from the Java module.
JUnit and TestNG are Java specific extensions picked using test.with(:name).
* Changed: For compile and test, use dependencies instead of classpath (with
works are before).
-* Changed: Test framework componentized along the same lines at the compilers.
+* Changed: Test framework componentized along the same lines as the compilers.
* Removed: Prepare tasks removed.
* Fixed: Artifact.pom resolves artifact without classifier, i.e
org.testng:testng:jar:jdk15:5.1 uses org.testng:testng:pom:5.1 (Tommy).
* Fixed: More patches towards JRuby support, courtesy of Vic Borja.
Modified: incubator/buildr/trunk/lib/buildr.rb
URL:
http://svn.apache.org/viewvc/incubator/buildr/trunk/lib/buildr.rb?rev=606487&r1=606486&r2=606487&view=diff
==============================================================================
--- incubator/buildr/trunk/lib/buildr.rb (original)
+++ incubator/buildr/trunk/lib/buildr.rb Sat Dec 22 12:38:39 2007
@@ -9,28 +9,25 @@
# &:symbol goodness.
require "facet/symbol/to_proc"
# blank? on string and nil
-require "facet/string/blank"
-require "facet/nilclass/blank"
-# x.in?(y) is better than y.include?(x)
-require "facet/kernel/in"
-# Allows binding[]
-require "facet/binding"
+require 'facet/string/blank'
+require 'facet/nilclass/blank'
# What it says.
-require "facet/kernel/__DIR__"
-require "facet/kernel/instance_exec"
-require "facet/module/alias_method_chain"
-require "facet/module/memoize"
-require "facet/array/head"
-require "facet/string/starts_with"
-require "facet/openobject"
-require "facets/core/kernel/tap"
-require "facets/core/enumerable/uniq_by"
+require 'facet/kernel/__DIR__'
+require 'facet/module/alias_method_chain'
+require 'facet/module/memoize'
+require 'facet/array/head'
+require 'facet/string/starts_with'
+require 'facet/openobject'
+require 'facets/core/kernel/tap'
+require 'facets/core/enumerable/uniq_by'
# A different kind of buildr, one we use to create XML.
-require "builder"
+require 'builder'
+require 'test/unit'
+require 'spec'
module Buildr
- VERSION = "1.2.11".freeze # unless const_defined?(:VERSION)
+ VERSION = '1.3.0'.freeze # unless const_defined?(:VERSION)
end