noprompt / frak

Transform collections of strings into regular expressions.
1.13k stars 39 forks source link

0.1.3 RuntimeException #9

Closed yPhil-gh closed 11 years ago

yPhil-gh commented 11 years ago

When I replace [frak "0.1.2"] with [frak "0.1.3"] I get an exception

; project.clj

(defproject regard "1.0.0-SNAPSHOT"
  :description "Spits out regexps, given keywords"
  :dependencies [[org.clojure/clojure "1.3.0"]
                [frak "0.1.3"]]
  :main regard.core)

; core.clj
(ns regard.core)

(require 'frak)

(defn -main [& args]
  "I don't do a whole lot."
  (println (apply str args)))
$ lein repl
REPL started; server listening on localhost port 15186
CompilerException java.lang.RuntimeException: Unable to resolve symbol: mapv in this context, compiling:(frak.clj:157) 
clojure.core=> 
yPhil-gh commented 11 years ago

Hum, I found out that I was using an old [org.clojure/clojure "1.3.0"], upgraded to [org.clojure/clojure "1.5.1"] and now [frak "0.1.3"] works just fine ; closing.