updating to clojure 1.2 RC1

This commit is contained in:
Colin Jones 2010-08-03 20:44:52 -05:00
parent a61332e264
commit 494798e4de
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: The only things you need to run the Clojure Koans are:
- JRE 1.5 or higher - JRE 1.5 or higher
- clojure-1.2.0-beta1.jar - clojure-1.2.0-RC1.jar
(http://github.com/downloads/relevance/functional-koans/clojure-1.2.0-beta1.jar) (http://github.com/downloads/relevance/functional-koans/clojure-1.2.0-RC1.jar)
clojure-1.2.0-beta1.jar needs to be placed in a directory `lib` under this project. clojure-1.2.0-RC1.jar needs to be placed in a directory `lib` under this project.
You can also use leiningen (http://github.com/technomancy/leiningen) to You can also use leiningen (http://github.com/technomancy/leiningen) to
automatically install the clojure-1.2.0-beta1.jar in the right place. automatically install the clojure-1.2.0-RC1.jar in the right place.
After you have leiningen installed, run After you have leiningen installed, run

View File

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

View File

@ -1,2 +1,2 @@
@echo off @echo off
java -cp lib\clojure-1.2.0-beta1.jar;src clojure.main -e "(load \"path_to_enlightenment\")" -e "(do (in-ns 'path-to-enlightenment) (run))" 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))"

2
run.sh
View File

@ -1,2 +1,2 @@
java -cp lib/clojure-1.2.0-beta1.jar:src clojure.main -e '(load "path_to_enlightenment")' -e "(do (in-ns 'path-to-enlightenment) (run))" 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))"
echo echo

View File

@ -1,2 +1,2 @@
@echo off @echo off
java -cp lib\clojure-1.2.0-beta1.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-RC1.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-beta1.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-RC1.jar:src clojure.main -e '(load "path_to_answer_sheet")' -e "(do (in-ns 'path-to-answer-sheet) (run))"
echo echo