updating to RC2
This commit is contained in:
		@@ -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
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -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])
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								run.bat
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								run.bat
									
									
									
									
									
								
							@@ -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
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								run.sh
									
									
									
									
									
								
							@@ -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
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								test.bat
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								test.bat
									
									
									
									
									
								
							@@ -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))"
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										2
									
								
								test.sh
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								test.sh
									
									
									
									
									
								
							@@ -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
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user