updating to RC2

This commit is contained in:
Colin Jones 2010-08-08 20:13:26 -04:00
parent 494798e4de
commit e3ff13b84e
6 changed files with 9 additions and 9 deletions

View File

@ -6,13 +6,13 @@
The only things you need to run the Clojure Koans are:
- JRE 1.5 or higher
- clojure-1.2.0-RC1.jar
(http://github.com/downloads/relevance/functional-koans/clojure-1.2.0-RC1.jar)
- clojure-1.2.0-RC2.jar
(http://github.com/downloads/relevance/functional-koans/clojure-1.2.0-RC2.jar)
clojure-1.2.0-RC1.jar needs to be placed in a directory `lib` under this project.
clojure-1.2.0-RC2.jar needs to be placed in a directory `lib` under this project.
You can also use leiningen (http://github.com/technomancy/leiningen) to
automatically install the clojure-1.2.0-RC1.jar in the right place.
automatically install the clojure-1.2.0-RC2.jar in the right place.
After you have leiningen installed, run

View File

@ -1,4 +1,4 @@
(defproject functional-koans "0.1.0"
:description "The functional koans"
:dependencies [[org.clojure/clojure "1.2.0-RC1"]]
:dependencies [[org.clojure/clojure "1.2.0-RC2"]]
:namespaces [koans])

View File

@ -1,2 +1,2 @@
@echo off
java -cp lib\clojure-1.2.0-RC1.jar;src clojure.main -e "(load \"path_to_enlightenment\")" -e "(do (in-ns 'path-to-enlightenment) (run))"
java -cp lib\clojure-1.2.0-RC2.jar;src clojure.main -e "(load \"path_to_enlightenment\")" -e "(do (in-ns 'path-to-enlightenment) (run))"

2
run.sh
View File

@ -1,2 +1,2 @@
java -cp lib/clojure-1.2.0-RC1.jar:src clojure.main -e '(load "path_to_enlightenment")' -e "(do (in-ns 'path-to-enlightenment) (run))"
java -cp lib/clojure-1.2.0-RC2.jar:src clojure.main -e '(load "path_to_enlightenment")' -e "(do (in-ns 'path-to-enlightenment) (run))"
echo

View File

@ -1,2 +1,2 @@
@echo off
java -cp lib\clojure-1.2.0-RC1.jar;src clojure.main -e "(load \"path_to_answer_sheet\")" -e "(do (in-ns 'path-to-answer-sheet) (run))"
java -cp lib\clojure-1.2.0-RC2.jar;src clojure.main -e "(load \"path_to_answer_sheet\")" -e "(do (in-ns 'path-to-answer-sheet) (run))"

View File

@ -1,2 +1,2 @@
java -cp lib/clojure-1.2.0-RC1.jar:src clojure.main -e '(load "path_to_answer_sheet")' -e "(do (in-ns 'path-to-answer-sheet) (run))"
java -cp lib/clojure-1.2.0-RC2.jar:src clojure.main -e '(load "path_to_answer_sheet")' -e "(do (in-ns 'path-to-answer-sheet) (run))"
echo