diff --git a/.idea/libraries/Leiningen__gorilla_plot_0_1_0.xml b/.idea/libraries/Leiningen__gorilla_plot_0_1_0.xml
new file mode 100644
index 0000000..109ecd2
--- /dev/null
+++ b/.idea/libraries/Leiningen__gorilla_plot_0_1_0.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/libraries/Leiningen__gorilla_plot_0_1_2.xml b/.idea/libraries/Leiningen__gorilla_plot_0_1_2.xml
new file mode 100644
index 0000000..b8c9989
--- /dev/null
+++ b/.idea/libraries/Leiningen__gorilla_plot_0_1_2.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/libraries/Leiningen__gorilla_repl_0_1_0.xml b/.idea/libraries/Leiningen__gorilla_repl_0_1_0.xml
new file mode 100644
index 0000000..875d1e7
--- /dev/null
+++ b/.idea/libraries/Leiningen__gorilla_repl_0_1_0.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/libraries/Leiningen__gorilla_repl_0_1_2.xml b/.idea/libraries/Leiningen__gorilla_repl_0_1_2.xml
new file mode 100644
index 0000000..8cccb5c
--- /dev/null
+++ b/.idea/libraries/Leiningen__gorilla_repl_0_1_2.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/lein_gorilla.iml b/lein_gorilla.iml
index 7d45880..499d190 100644
--- a/lein_gorilla.iml
+++ b/lein_gorilla.iml
@@ -10,12 +10,12 @@
-
+
-
+
diff --git a/project.clj b/project.clj
index 2a9741d..623edfb 100644
--- a/project.clj
+++ b/project.clj
@@ -1,6 +1,6 @@
-(defproject lein-gorilla "0.1.1"
+(defproject lein-gorilla "0.1.2"
:description "A Leiningen plugin for the Gorilla REPL."
:url "https://github.com/JonyEpsilon/lein-gorilla"
:license {:name "MIT"}
- :dependencies [[gorilla-repl "0.1.1"]]
+ :dependencies [[gorilla-repl "0.1.2"]]
:eval-in-leiningen true)
diff --git a/src/leiningen/gorilla.clj b/src/leiningen/gorilla.clj
index 22e1d23..9c978f2 100644
--- a/src/leiningen/gorilla.clj
+++ b/src/leiningen/gorilla.clj
@@ -10,14 +10,13 @@
[clojure.pprint :as pp]))
;; This is the leiningen task. It needs no arguments, and can run outside a project (assuming you've got the plugin
-;; installed in your profile). You can pass the arguments:
-;; - :worksheet path/to/worksheet -- loads the indicated worksheet in a new gorilla instance
+;; installed in your profile).
(defn ^:no-project-needed gorilla
[project & opts]
(let [opts-map (apply hash-map opts)
port (read-string (or (get opts-map ":port") "8990"))
curr-deps (or (:dependencies project) [])
- new-deps (conj curr-deps '[gorilla-repl/gorilla-repl "0.1.0-SNAPSHOT"])
+ new-deps (conj curr-deps '[gorilla-repl/gorilla-repl "0.1.2"])
prj (assoc project :dependencies new-deps)]
(when-let [w (get opts-map ":worksheet")] ())
(eval/eval-in-project