Re: [ANN] fsrun : file change notifier high order lein task

2013-11-27 Thread Mimmo Cosenza
in the mean time you can clone the repo, cd into it and lein install # from the terminal mimmo On Nov 27, 2013, at 8:00 AM, Deniz Kurucu makka...@gmail.com wrote: Ah yes, sorry it is not on clojars yet. Wanted some feedback before pushing it there :) On Wed, Nov 27, 2013 at 2:26 AM,

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-27 Thread Deniz Kurucu
Thanks! On Wed, Nov 27, 2013 at 10:31 AM, Mimmo Cosenza mimmo.cose...@gmail.comwrote: in the mean time you can clone the repo, cd into it and lein install # from the terminal mimmo On Nov 27, 2013, at 8:00 AM, Deniz Kurucu makka...@gmail.com wrote: Ah yes, sorry it is not on clojars

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-27 Thread James Reeves
It'll be easier to get feedback if you push it to Clojars. I want to try it out, but not enough to clone the repo and manually install it. Since it's only version 0.1.0, it's not as if it's expected to be flawless. - James On 27 November 2013 07:00, Deniz Kurucu makka...@gmail.com wrote: Ah

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-27 Thread Mimmo Cosenza
Deniz, you need to install gpg to be able to push a release to clojars. here is the lein documentation When deploying a release that's not a snapshot, Leiningen will attempt to sign it using GPG to prove your authorship of the release. See the deploy guide. for details of how to set that up.

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-27 Thread Deniz Kurucu
Thanks, will check docs and will push to clojars. On Wed, Nov 27, 2013 at 2:20 PM, Mimmo Cosenza mimmo.cose...@gmail.comwrote: Deniz, you need to install gpg to be able to push a release to clojars. here is the lein documentation When deploying a release that's not a snapshot, Leiningen

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-27 Thread Mimmo Cosenza
Great. And remember to add it to the plugins directory as suggested by Phil. During the wend I'll try to use it in my now project for the same reason you created it (i.e. to automagically run the unit tests when an emitted js file changes) and I'll let you know about my experience with it. It

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-27 Thread Plínio Balduino
Hi, Deniz I cloned the repo and installed locally to use with my code that count the size of and article and it was very useful. Thanks for your contribution and congratulations for your work. Plinio Balduino On 27/11/2013, at 05:00, Deniz Kurucu makka...@gmail.com wrote: Ah yes, sorry

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-27 Thread Deniz Kurucu
Hi, I'm glad it was useful for you, if you notice any bugs please let me know. Thanks. On Wed, Nov 27, 2013 at 8:17 PM, Plínio Balduino pbaldu...@gmail.comwrote: Hi, Deniz I cloned the repo and installed locally to use with my code that count the size of and article and it was very

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-27 Thread Deniz Kurucu
Hi, Just pushed fsrun to clojars : [fsrun 0.1.1] Thanks, for looking. On Wed, Nov 27, 2013 at 8:58 PM, Deniz Kurucu makka...@gmail.com wrote: Hi, I'm glad it was useful for you, if you notice any bugs please let me know. Thanks. On Wed, Nov 27, 2013 at 8:17 PM, Plínio Balduino

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-26 Thread Phil Hagelberg
Cool; this looks really handy. Could you add it to the list of plugins on the Leiningen wiki? https://github.com/technomancy/leiningen/wiki/Plugins -Phil -- -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-26 Thread Mimmo Cosenza
yes, it's very cool mimmo On Nov 26, 2013, at 10:31 PM, Phil Hagelberg p...@hagelb.org wrote: Cool; this looks really handy. Could you add it to the list of plugins on the Leiningen wiki? https://github.com/technomancy/leiningen/wiki/Plugins -Phil -- -- You received this message

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-26 Thread Plinio Balduino
Excellent, Deniz But I'm getting an error when I try to run for the first time: Could not find artifact fsrun:fsrun:jar:0.1.0 in central (http://repo1.maven.org/maven2/) Could not find artifact fsrun:fsrun:jar:0.1.0 in clojars (https://clojars.org/repo/) This could be due to a typo in

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-26 Thread Deniz Kurucu
Ah yes, sorry it is not on clojars yet. Wanted some feedback before pushing it there :) On Wed, Nov 27, 2013 at 2:26 AM, Plinio Balduino pbaldu...@gmail.comwrote: Excellent, Deniz But I'm getting an error when I try to run for the first time: Could not find artifact fsrun:fsrun:jar:0.1.0

Re: [ANN] fsrun : file change notifier high order lein task

2013-11-25 Thread Phillip Lord
Deniz Kurucu makka...@gmail.com writes: fsrun is a simple high order lein task that run some other tasks when a file modification occurs. Originally, i wanted to run my clojurescript tests automatically and created fsrun. It is my first clojure project, so please keep that in mind :) github

[ANN] fsrun : file change notifier high order lein task

2013-11-24 Thread Deniz Kurucu
fsrun is a simple high order lein task that run some other tasks when a file modification occurs. Originally, i wanted to run my clojurescript tests automatically and created fsrun. It is my first clojure project, so please keep that in mind :) github : https://github.com/makkalot/fsrun Thanks.