Fork me on GitHub
#boot
<
2015-10-21
>
juhoteperi08:10:22

Ugh, just configured GPG for OS X and no wonder people have problems with that. Everything that works by default on Ubuntu had to be configured manually.

piotrek19:10:53

Hi, is there any boot and cider user here? simple_smile

domkm20:10:31

Hi @piotrek, yep, boot works fine with cider. You'll need to add cider deps in boot.repl.

piotrek20:10:13

Hi @domkm. I did it and I can connect to the repl

piotrek20:10:35

However, projectile-find-test-file doesn’t work for me

piotrek20:10:50

while it works fine in a lein-based project

piotrek20:10:19

I am just starting with emacs and cider so please forgive me any silly questions simple_smile

piotrek20:10:53

or maybe it is not cider related by rather clojure-mode has to support it somehow?

piotrek20:10:15

but I would think it should just use repl for this (and thus use cider)

domkm20:10:06

Sorry, I'm not familiar with projectile-find-test-file. What is it supposed to do?

domkm20:10:55

Oh, I guess it's like find-file but only displays test files, according to the docs.

domkm21:10:39

Yeah, doesn't work for me either. I just use projectile-find-file.

piotrek21:10:19

do you have any idea where the problem might be?

piotrek21:10:47

jumping directly between test and impl namespace files is very handy

piotrek21:10:05

and it works really nice in lein based projects

piotrek21:10:18

in the clojure-mode docs I found that it allows to provide a function which based on the provided namespace name generates the expected test namespace name

piotrek21:10:47

so I guess it invokes that function and then tries to find a file with the given test names space but is unable to find it in the project

martinklepsch21:10:26

@piotrek: maybe it’s a different configuration of source and test paths

martinklepsch21:10:49

i.e. there is no such thing as :test-paths in Boot which exists in lein I think

martinklepsch21:10:16

but that said I don’t see where cider/boot would interfere with projectile here

piotrek21:10:15

@martinklepsch: I think it might be related, I even checked the boot docs that maybe I overlooked it and it allows specifying a separate test source dirs

martinklepsch21:10:46

@piotrek: when you want to add something like tests to the classpath just use :source-paths.

piotrek21:10:22

@martinklepsch I already have my test dir in source-paths