aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/load_all.clj
diff options
context:
space:
mode:
authorStuart Sierra <mail@stuartsierra.com>2010-01-20 15:39:56 -0500
committerStuart Sierra <mail@stuartsierra.com>2010-01-20 15:39:56 -0500
commit2ede388a9267d175bfaa7781ee9d57532eb4f20f (patch)
treebb42002af196405d7e25cc4e30b4c1c9de5c06d5 /src/clojure/contrib/load_all.clj
parent1bc820d96048a6536706ff999e9892649b53c700 (diff)
Move source files into Maven-style directory structure.
Diffstat (limited to 'src/clojure/contrib/load_all.clj')
-rw-r--r--src/clojure/contrib/load_all.clj91
1 files changed, 0 insertions, 91 deletions
diff --git a/src/clojure/contrib/load_all.clj b/src/clojure/contrib/load_all.clj
deleted file mode 100644
index 7a38230a..00000000
--- a/src/clojure/contrib/load_all.clj
+++ /dev/null
@@ -1,91 +0,0 @@
-;;; load_all.clj - loads all contrib libraries for testing purposes
-
-;; by Stuart Sierra, http://stuartsierra.com/
-;; February 21, 2009
-
-;; Copyright (c) Stuart Sierra, 2009. All rights reserved. The use
-;; and distribution terms for this software are covered by the Eclipse
-;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
-;; which can be found in the file epl-v10.html at the root of this
-;; distribution. By using this software in any fashion, you are
-;; agreeing to be bound by the terms of this license. You must not
-;; remove this notice, or any other, from this software.
-
-
-;; This file simple attempts to "require" every library in
-;; clojure-contrib. The names of all contrib libs (minus the
-;; "clojure.contrib" part) are in *all-contrib-libs*. Libraries which
-;; throw errors when loading under the latest trunk SVN revisions of
-;; Clojure and clojure-contrib are commented out.
-;;
-;; This is only intended to check that the libraries will load without
-;; errors, not that they work correctly. If the libraries have tests
-;; defined using test-is, you can run them with:
-;;
-;; (clojure.test/run-all-tests)
-;;
-;; If you write a new lib, please add it to the list in this file.
-
-
-(ns clojure.contrib.load-all)
-
-(def *all-contrib-libs* '[
-accumulators
-apply-macro
-combinatorics
-command-line
-complex-numbers
-cond
-def
-duck-streams
-error-kit
-except
-fcase
-generic
-generic.arithmetic
-generic.collection
-generic.comparison
-generic.functor
-generic.math-functions
-import-static
-jar
-;; javadoc - moved to repl-utils
-javadoc.browse
-;; javalog
-json.read
-json.write
-lazy-seqs
-lazy-xml
-macro-utils
-macros
-math
-miglayout
-mmap
-monads
-ns-utils
-pprint
-probabilities.finite-distributions
-probabilities.monte-carlo
-probabilities.random-numbers
-prxml
-repl-ln
-repl-utils
-seq-utils
-server-socket
-set
-shell-out
-sql
-str-utils
-str-utils2
-stream-utils
-swing-utils
-test-contrib
-test-contrib.shell-out
-test-contrib.str-utils
-trace
-types
-zip-filter
-])
-
-(doseq [name *all-contrib-libs*]
- (require (symbol (str "clojure.contrib." name))))