You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 16, 2021. It is now read-only.
Copy file name to clipboardexpand all lines: README.md
+61-49
Original file line number
Diff line number
Diff line change
@@ -1,58 +1,23 @@
1
-
# clj-foundation pre-1.0
1
+
# clj-foundation
2
2
3
-
## Definition of Done for 1.0 release
4
-
5
-
* On APIs - While 1.0 will be a major release with some inevitable API breakage, we will strive:
6
-
* To maintain API compatiblity with prior releases to the greatest extent possible
7
-
* To remove duplicated functionality (which may contradict the API compatibility principle)
8
-
* To maintain API compatibility with code copied from internal Brad's Deals projects to the greatest extent possible.
9
-
* Clear naming convention for namespaces that are provisional (non-frozen, WIP) API.
10
-
11
-
* Known tech debt that may influence APIs
12
-
* Consider migrating db.clj's local configuration mechanism to config.clj (and then make an instance of the generic implementation inside db.clj)
13
-
14
-
* Target Clojure 1.9
15
-
* All functions will have type information supplied via Clojure 1.9 specs.
16
-
* Functions currently using plumatic/schema to specify type constraints will be migrated to Specs
17
-
18
-
* On testing
19
-
* All functions will be unit tested using a style designed to illustrate behavior under failure modes as well as happy path scenarios.
20
-
* We will collectively agree on a style of testing that seems to hit the sweet spot between overspecification and underspecification.
21
-
* (Details are not set in stone but definitely up for negotiation)
22
-
* When defects are detected, we will first reproduce the defect's root cause using a failing test case that will prevent the defect from reoccurring without the test notifying us.
23
-
* Generative testing with Specs
24
-
* Integrate kbitz (suggest Clojure idioms), some Clojure linting library; if it's easy to make these available to clients of clj-foundation, do so.
25
-
26
-
* Debug library
27
-
* dbg, ppdbg macros
28
-
* trace?
29
-
30
-
* Documentation
31
-
* Machine generate as much as possible?
32
-
33
-
* Make clj_infrastructure as a separate library
34
-
* Move db.clj there?
35
-
* Abstract db.clj API using monads at the foundation layer and implement for relational, nosql, etc. in infrastructure?
* Abstractions for creating/consuming lazy sequences?
38
-
* Abstractions for aggregating a sequence of database results into a map[concatinated-key value(s)]
39
-
40
-
## Provisional ideas for 1.0
41
-
42
-
* Figure out how to isolate namespaces and their dependencies at the classpath level, including runtime reloading and evolution semantics after the fashion of OSGi at the REPL or in a running application.
43
-
* Update and include clojure.osgi for clean deployment into OSGi frameworks?
44
-
* Deploy to Clojars?
45
-
46
-
47
-
# Why clj-foundation?
3
+
## Why clj-foundation?
48
4
49
5
clj-foundation supplies namespaces making additional simple things easy and hard things possible in Clojure that are intended for use across all Clojure projects at Brad's Deals.
50
6
51
7
* Enhances the core language in resonable, useful, and conservative ways.
52
8
* Enables programming using a monadic style without requiring explicit monad types.
53
9
* Describes, specifies, and illustrates best practices at Brad's Deals for working in Clojure.
54
10
* The only dependencies are Clojure, Potemkin, and Schema in order to minimize adoption friction.
55
-
**(This is up for renegotiation for 1.0)*
11
+
12
+
## Other Clojure foundational libraries that compliment this one
13
+
14
+
* Hara: http://docs.caudate.me/hara/index.html
15
+
16
+
## High-quality domain-specific libraries complimenting this
17
+
18
+
* Cassandra as a mutable, versioned map: https://github.com/MyPost/cassius
19
+
* Git from the Clojure REPL: https://github.com/zcaudate/gita
20
+
56
21
57
22
# Features
58
23
@@ -167,8 +132,8 @@ where "version" currently is "[
161
+
* To maintain API compatibility with code copied from internal Brad's Deals projects to the greatest extent possible.
162
+
* Clear naming convention for namespaces that are provisional (non-frozen, WIP) API.
163
+
164
+
* Known tech debt that may influence APIs
165
+
* Consider migrating db.clj's local configuration mechanism to config.clj (and then make an instance of the generic implementation inside db.clj)
166
+
167
+
* Target Clojure 1.9
168
+
* All functions will have type information supplied via Clojure 1.9 specs.
169
+
* Functions currently using plumatic/schema to specify type constraints will be migrated to Specs
170
+
171
+
* On testing
172
+
* All functions will be unit tested using a style designed to illustrate behavior under failure modes as well as happy path scenarios.
173
+
* We will collectively agree on a style of testing that seems to hit the sweet spot between overspecification and underspecification.
174
+
* (Details are not set in stone but definitely up for negotiation)
175
+
* When defects are detected, we will first reproduce the defect's root cause using a failing test case that will prevent the defect from reoccurring without the test notifying us.
176
+
* Generative testing with Specs
177
+
* Integrate kbitz (suggest Clojure idioms), some Clojure linting library; if it's easy to make these available to clients of clj-foundation, do so.
178
+
179
+
* Debug library
180
+
* dbg, ppdbg macros
181
+
* trace?
182
+
183
+
* Documentation
184
+
* Machine generate as much as possible?
185
+
186
+
* Make clj_infrastructure as a separate library
187
+
* Move db.clj there?
188
+
* Abstract db.clj API using monads at the foundation layer and implement for relational, nosql, etc. in infrastructure?
* Abstractions for creating/consuming lazy sequences?
191
+
* Abstractions for aggregating a sequence of database results into a map[concatinated-key value(s)]
192
+
193
+
## Provisional ideas for 1.0
194
+
195
+
* Figure out how to isolate namespaces and their dependencies at the classpath level, including runtime reloading and evolution semantics after the fashion of OSGi at the REPL or in a running application.
196
+
* Update and include clojure.osgi for clean deployment into OSGi frameworks?
0 commit comments