summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-08-31 09:51:23 +0000
committerAleksandar Pokopec <aleksandar.prokopec@epfl.ch>2010-08-31 09:51:23 +0000
commit9db3f49ff41bb9d037924cd6995ed598c9619650 (patch)
tree27af7284ff60253039fbb01bbf86bc637ef77d57 /tools
parent4af85c28c4d3e1bf57f773fe7feb7c03d6afe052 (diff)
downloadscala-9db3f49ff41bb9d037924cd6995ed598c9619650.tar.gz
scala-9db3f49ff41bb9d037924cd6995ed598c9619650.tar.bz2
scala-9db3f49ff41bb9d037924cd6995ed598c9619650.zip
Added scalacheck folder, scalacheck source upda...
Added scalacheck folder, scalacheck source update script, and scalacheck ant tasks. Build process will now generate a scalacheck jar in the build/pack/lib directory. It generates it from the scalacheck source in the src/scalacheck dir. If the source there gets out of date, it is to be updated manually using the tools/updatescalacheck script. Review by phaller.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/updatescalacheck12
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/updatescalacheck b/tools/updatescalacheck
new file mode 100755
index 0000000000..46112cf29d
--- /dev/null
+++ b/tools/updatescalacheck
@@ -0,0 +1,12 @@
+#
+# Updates ScalaCheck sources from ScalaCheck nightly branch
+#
+
+# update sources
+rm -r -f ../src/scalacheck
+svn export https://scalacheck.googlecode.com/svn/branches/scalanightly/src/main/scala ../src/scalacheck
+
+# remove unneeded class
+rm ../src/scalacheck/org/scalacheck/ScalaCheckFramework.scala
+
+