Skip to content

Commit

Permalink
Refactor code base.
Browse files Browse the repository at this point in the history
BREAKING CHANGES:
- suricatta.format ns is removed.
- suricatta.dsl  is removed
- suricatta.dsl ns is replaced with suricatta.dsl.alpha (new impl)
- suricatta custom types extensions protocols changed (simplified)
  • Loading branch information
niwinz committed Jun 27, 2019
1 parent 4e73ced commit 72a22ba
Show file tree
Hide file tree
Showing 19 changed files with 537 additions and 2,482 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/target
/classes
/checkouts
/pom.xml
/pom.xml.asc
*.jar
*.class
/.lein-*
/.nrepl-port
/doc/dist
/doc/dist
/.cpcache
/.rebel_readline_history
21 changes: 21 additions & 0 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{:deps {org.clojure/clojure {:mvn/version "1.10.1"}
org.jooq/jooq {:mvn/version "3.11.11"}}

:paths ["src"]
:aliases
{:dev {:extra-deps {com.bhauman/rebel-readline {:mvn/version "0.1.4"}
org.clojure/tools.namespace {:mvn/version "0.3.0"}
org.postgresql/postgresql {:mvn/version "42.2.6"}
com.h2database/h2 {:mvn/version "1.4.199"}
cheshire/cheshire {:mvn/version "5.8.1"}}
:extra-paths ["test"]}
:repl {:main-opts ["-m" "rebel-readline.main"]}
:ancient {:main-opts ["-m" "deps-ancient.deps-ancient"]
:extra-deps {deps-ancient {:mvn/version "RELEASE"}}}

:test {:extra-deps {lambdaisland/kaocha {:mvn/version "0.0-521"}}
:main-opts ["-m" "kaocha.runner"]}
}}



Loading

0 comments on commit 72a22ba

Please sign in to comment.