forked from willcohen/cloffeine
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from asafch/docstrings
Clarify docstrings; differentiate sync vs. async loader in async cache
- Loading branch information
Showing
9 changed files
with
225 additions
and
157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
(defproject com.appsflyer/cloffeine "0.1.8" | ||
(defproject com.appsflyer/cloffeine "0.1.9" | ||
:description "A warpper over https://github.com/ben-manes/caffeine" | ||
:url "https://github.com/AppsFlyer/cloffeine" | ||
:license {:name "Eclipse Public License" | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:url "http://www.eclipse.org/legal/epl-v10.html"} | ||
:dependencies [[com.github.ben-manes.caffeine/caffeine "2.8.8"]] | ||
:plugins [[lein-codox "0.10.7"]] | ||
:codox {:output-path "codox" | ||
:source-uri "http://github.com/AppsFlyer/cloffeine/blob/{version}/{filepath}#L{line}" | ||
:metadata {:doc/format :markdown}} | ||
:source-uri "http://github.com/AppsFlyer/cloffeine/blob/{version}/{filepath}#L{line}" | ||
:metadata {:doc/format :markdown}} | ||
:profiles {:uberjar {:aot :all} | ||
:dev {:plugins [[jonase/eastwood "0.3.5"] | ||
[lein-cloverage "1.1.1"] | ||
[lein-eftest "0.5.9"] | ||
[lein-kibit "0.1.7"] | ||
[com.jakemccrary/lein-test-refresh "0.24.1"] | ||
[lein-cloverage "1.1.2"] | ||
[lein-ancient "0.6.15"]] | ||
:eftest {:multithread? false | ||
:report eftest.report.junit/report | ||
:report-to-file "target/junit.xml"} | ||
:dependencies [[org.clojure/clojure "1.10.1"] | ||
[criterium "0.4.6"] | ||
[cheshire "5.10.0"] | ||
[com.taoensso/timbre "5.1.0"] | ||
[clj-kondo "RELEASE"] | ||
[funcool/promesa "6.0.0"] | ||
[com.google.guava/guava-testlib "28.1-jre"]] | ||
:aliases {"clj-kondo" ["run" "-m" "clj-kondo.main"] | ||
"lint" ["run" "-m" "clj-kondo.main" "--lint" "src" "test"]} | ||
:global-vars {*warn-on-reflection* true}}}) | ||
:dev {:plugins [[jonase/eastwood "0.3.5"] | ||
[lein-cloverage "1.1.1"] | ||
[lein-eftest "0.5.9"] | ||
[lein-kibit "0.1.7"] | ||
[com.jakemccrary/lein-test-refresh "0.24.1"] | ||
[lein-cloverage "1.1.2"] | ||
[lein-ancient "0.6.15"]] | ||
:eftest {:multithread? false | ||
:report eftest.report.junit/report | ||
:report-to-file "target/junit.xml"} | ||
:dependencies [[org.clojure/clojure "1.10.1"] | ||
[criterium "0.4.6"] | ||
[cheshire "5.10.0"] | ||
[com.taoensso/timbre "5.1.0"] | ||
[clj-kondo "RELEASE"] | ||
[funcool/promesa "6.0.0"] | ||
[com.google.guava/guava-testlib "28.1-jre"]] | ||
:aliases {"clj-kondo" ["run" "-m" "clj-kondo.main"] | ||
"lint" ["run" "-m" "clj-kondo.main" "--lint" "src" "test"]} | ||
:global-vars {*warn-on-reflection* true}}}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.