diff --git a/.gitignore b/.gitignore index c9ed042..7b5c564 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ .clj-kondo .lsp -.cpcache diff --git a/README.md b/README.md index f471381..8c940a3 100644 --- a/README.md +++ b/README.md @@ -9,14 +9,14 @@ A Clojure library providing convenient wrapper functions for the [Gum](https://g ## Installation -Add this to your `bb.edn`: +Add this to your `deps.edn`: ```clojure -{:paths ["src"] - :deps {com.travisshears/gum-utils {:git/url "https://git.travisshears.com/travisshears/gum-utils" - :git/tag "39K" - :git/sha "748b21d358b62db0476bc3577cb5398acc533ba1"}}} - +{:deps {com.travisshears/gum-utils { + :git/url "https://git.travisshears.com/travisshears/gum-utils" + :git/tag "40K" + :git/sha "77935f39f741" +}}} ``` ## Dev diff --git a/deps.edn b/deps.edn deleted file mode 100644 index 953701f..0000000 --- a/deps.edn +++ /dev/null @@ -1,2 +0,0 @@ -{:paths ["src"] - :deps {org.clojure/clojure {:mvn/version "1.12.1"}}} diff --git a/src/com/travisshears/gum_utils.clj b/src/gum_utils/core.clj similarity index 98% rename from src/com/travisshears/gum_utils.clj rename to src/gum_utils/core.clj index 460a100..51a6ad7 100644 --- a/src/com/travisshears/gum_utils.clj +++ b/src/gum_utils/core.clj @@ -1,4 +1,4 @@ -(ns com.travisshears.gum-utils +(ns gum-utils.core (:require [clojure.string :as str] [babashka.process :refer [shell]]))