changeset 9:35cf337adfcf

replaced jars
author Robert McIntyre <rlm@mit.edu>
date Sat, 21 Aug 2010 06:10:24 -0400
parents 0f48db8d2a05
children ef7dbbd6452c
files lib/ant-launcher.jar lib/ant.jar lib/clojure-1.2.0.jar lib/clojure-contrib-1.2.0.jar lib/clojure-contrib-src.jar lib/clojure-contrib.jar lib/clojure-sources.jar lib/clojure.jar lib/nailgun-0.7.1.jar lib/swank-clojure-1.2.1.jar lib/swank-clojure.jar lib/tools.jar lib/twitter4j-core-2.1.2.jar src/laser/rubyisms.clj
diffstat 14 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
     1.1 Binary file lib/ant-launcher.jar has changed
     2.1 Binary file lib/ant.jar has changed
     3.1 Binary file lib/clojure-1.2.0.jar has changed
     4.1 Binary file lib/clojure-contrib-1.2.0.jar has changed
     5.1 Binary file lib/clojure-contrib-src.jar has changed
     6.1 Binary file lib/clojure-contrib.jar has changed
     7.1 Binary file lib/clojure-sources.jar has changed
     8.1 Binary file lib/clojure.jar has changed
     9.1 Binary file lib/nailgun-0.7.1.jar has changed
    10.1 Binary file lib/swank-clojure-1.2.1.jar has changed
    11.1 Binary file lib/swank-clojure.jar has changed
    12.1 Binary file lib/tools.jar has changed
    13.1 Binary file lib/twitter4j-core-2.1.2.jar has changed
    14.1 --- a/src/laser/rubyisms.clj	Sat Aug 21 03:21:22 2010 -0400
    14.2 +++ b/src/laser/rubyisms.clj	Sat Aug 21 06:10:24 2010 -0400
    14.3 @@ -1,9 +1,13 @@
    14.4  (ns laser.rubyisms
    14.5 -  (:use [clojure.contrib repl-utils str-utils seq-utils]))
    14.6 -
    14.7 +  (:use [clojure.contrib
    14.8 +	 repl-utils
    14.9 +	 str-utils
   14.10 +	 [duck-streams :only [file-str]]
   14.11 +	 
   14.12 +	 ]))
   14.13  
   14.14  (defmacro unless [boolean & forms]
   14.15    `(if (not ~boolean) ~@forms))
   14.16  
   14.17  (defn exit []
   14.18 - )
   14.19 +  (throw (Exception. "Exit.")))