Search for '➛ acc6.top purchasing a Reddit account'
For details on the search query syntax, see the guide.
Total results: 7784, showing 193 - 216
A WebSocket client for Clojure
A stubbing, spying, and mocking library for Clojure protocols.
A Leiningen plugin to watch directories and run tasks automatically.
A simple batch processing facility
A plugin that deploys an uberjar instead of a jar. Intended to be used as an alias with the lein-release plugin.
A ClojureScript library for reading and writing comma (and other) separated values.
A jetty9-based webserver implementation for use with the puppetlabs/trapperkeeper service framework.
A GraphQL parser for Clojure using ANTLR4.
Fast matrix and vector maths library for Clojure - as a pure JVM core.matrix implementation
A Clojure library for using SQL
A client-side router for ClojureScript.
μ/log is a micro-logging library that logs events and data, not words!
A Leiningen plugin for finding dead code.
A simple, testable scheduler for asynchronous, cancellable, possibly periodic computation.
A set of helper functions for projects used in Proto REPL
It watches your code like a hawk!
A small library for loding configuration files in a
Clojure application.
A commons.clojure.core to :use everywhere
A database-independent migration library
A task that copies the files for the resource-paths to the
target-path, applying stencil to each file allowing the files to be
updated as they are copied.
## Usage
### Copy
Execute the plugin to copy the files.
lein resource
### Clean
Remove the files created by the plugin.
lein resource clean
### Print
Print the value of a stencil specified as an argument, useful for build scripts
lein resource print "{{version}}"
export MY_PROJECT_VERSION=$(lein resource print "{{name}}:{{version}}")
### Pretty Print
Dump the map of values sent to stencil.
lein resource pprint
## Configuration
To configure the plugin,add to the project.clj:
### Sample Configuration
:resource {
;; required or will do nothing
:resource-paths ["src-resource"]
OR
:resource-paths [ ["src-resource"
{
:includes [] ;; list of regex
:excludes [] ;; list of regex
:target-path "" ;; directory to store files
:extra-values {} ;; override the top level
;; values for this resource
}]]
;; optional default to the global one
:target-path "target/html"
;; When true, only copy files where src is
;; newer than default
:update false
;; optional - this is the default
:includes [ #".*" ]
;; optional - default is no excludes
;; which is en empty vector
:excludes [ #".*~" ]
;; optional - list of regex of files to skip stencil
:skip-stencil [ ]
;; optional - if true, do not echo progress to the screen
:silent false
;; optional - if true, echo lots of debug info
:verbose false
;; optional - default to nil
:extra-values
{ :year
~(.get (java.util.GregorianCalendar.)
(java.util.Calendar/YEAR)) }
## Links
### Marginalia
[Marginalia](http://gdeer81.github.io/marginalia)
[Markdown](http://daringfireball.net/projects/markdown/syntax)
[MathJax](http://www.mathjax.org/)
### test.check
[test.check](https://github.com/clojure/test.check)
JLine is a java library for reading and editing user input in console applications. It features tab-completion, command history, password masking, customizable keybindings, and pass-through handlers to use to chain to other console applications.
This artifact may shadow a release on Maven Central. You should
search there for a canonical release.
A leiningen plugin for publishing to a private S3
maven repository.
A Promise library for ClojureScript, or a poor man's core.async