Re: Namespace question and request for project with non-trivial use of clojure.spec

2016-12-16 Thread Josh Tilles
Although I can’t recall off the top of my head any example applications that demo non-trivial spec usage, you might be able to find some good projects using CrossClj: https://crossclj.info/ns/org.clojure/clojure/1.9.0-alpha14/project.clj.html#used. (There’s a good chance that any project that’

Re: Namespace question and request for project with non-trivial use of clojure.spec

2016-12-16 Thread jmckitrick
That did the trick. Thanks! On Fri, Dec 16, 2016 at 12:29 PM Alex Miller wrote: > > > On Friday, December 16, 2016 at 10:59:50 AM UTC-6, Jonathon McKitrick > wrote: > > I've run into some odd namespace issues with clojure.spec, and I'm sure > it's because I'm doing something wrong. I have this i

Re: Namespace question and request for project with non-trivial use of clojure.spec

2016-12-16 Thread Alex Miller
On Friday, December 16, 2016 at 10:59:50 AM UTC-6, Jonathon McKitrick wrote: > > I've run into some odd namespace issues with clojure.spec, and I'm sure > it's because I'm doing something wrong. I have this in my ns declaration: > > [foo.schema :as schema] > > However: > > foo.main> (s/valid? :f

Namespace question and request for project with non-trivial use of clojure.spec

2016-12-16 Thread Jonathon McKitrick
I've run into some odd namespace issues with clojure.spec, and I'm sure it's because I'm doing something wrong. I have this in my ns declaration: [foo.schema :as schema] However: foo.main> (s/valid? :foo.schema/email "f...@bar.com") true foo.main> (s/valid? :schema/email "f...@bar.com") Excepti