[ANN] Re-ops, REPL driven operations

2018-02-14 Thread ronen
Re-ops , is a project that takes a different approach for configuration management and VM orchestration, by using a live Clojure REPL it enables rapid change and flexibility beyond that of existing tools. It uses pure functions and datastructures to define pipelines and operations thus making i

[ANN] re-mote , A live coding environment for configuration management (https://github.com/re-ops/re-mote)

2017-05-24 Thread ronen
Most (if not all) configuration management tools currently are static in nature, you write you code deploy it and apply (rinse and repeat). Still our live environments change rapidly and having this cycle in place really slows our reaction time down. RE-mote is a re-take on how remote opera

Re: [ANN] mixfix syntax for clojure

2015-09-10 Thread ronen
Cool library, only a small comment id rather that it didn't use the clojure.tools ns (an official ns) On Wednesday, September 9, 2015 at 3:07:04 PM UTC+3, David Larsson wrote: > > I totally agree. I will keep this library in the back of my head! > > On Wednesday, September 9, 2015 at 12:52:46 AM

Re: clojure edn function reader

2015-05-28 Thread ronen
Leon spot on, maybe ill get to implement such a thing :) On Friday, May 29, 2015 at 2:44:04 AM UTC+3, ronen wrote: > > Gary your last comment hits what I look for exactly: > > "If you are looking for an encoding of clojure's syntax extensions into > pure edn reader

Re: clojure edn function reader

2015-05-28 Thread ronen
ur custom literal reader with the edn reader? > > On Thursday, 28 May 2015, Herwig Hochleitner > wrote: > >> 2015-05-27 18:14 GMT+02:00 ronen : >> >>> Ok ill expand the question a bit hoping to make it clearer :) >>> >> >> Still not clear to me,

Re: clojure edn function reader

2015-05-27 Thread ronen
tions above, implemented in Clojure > itself. > > If none of those is what you are looking for, can you rephrase your > question? > > Andy > > [1] > http://clojure.github.io/clojure/clojure.core-api.html#clojure.core/read > [2] http://clojure.github.io/clojure/clojure

clojure edn function reader

2015-05-27 Thread ronen
Hey, I'm looking for an edn data read for clojure functions (similar to https://github.com/Datomic/day-of-datomic/blob/master/resources/day-of-datomic/clojure-data-functions.edn) Is there any known implementation? Thanks -- You received this message because you are subscribed to the Google G

Re: [ANN] munge-tout 0.1.2

2015-03-12 Thread ronen
Nice work! ill check it out thanks On Thursday, March 12, 2015 at 7:19:42 PM UTC+2, Edward Kimber wrote: > > Hi Ronen, > > It's essentially the same idea as clojure.java.data but it can do quite a > bit more, including: > - generic parameters - so if you have List

Re: [ANN] munge-tout 0.1.2

2015-03-12 Thread ronen
How this compares to clojure.java.data? Thanks On Thursday, March 12, 2015 at 12:47:59 AM UTC+2, Edward Kimber wrote: > > Munge Tout is a Java-Clojure interop library that helps convert Java > Objects into Clojure data structures. It supports conversion of Java > primitives, Lists, Sets, Maps

[ANN] Supernal, A Clojure based take on Capistrano/Fabric remote automation

2014-10-23 Thread ronen
Supernal is an automation tool similar to Capistrano/Fabric implemented in pure Clojure utilizing a Clojure based DSL. This project aims to offer: - A clear roles to host matching model which can be extended easily. - Can be used both as a library and as a standalone tool.

Re: Spawn external process and read from output

2014-03-23 Thread ronen
I highly recommend https://github.com/Raynes/conch, it has a nicer "UI" and it supports timeouts pipelining etc.. On Friday, March 21, 2014 8:34:02 AM UTC+2, Sean Corfield wrote: > > On Mar 20, 2014, at 9:41 PM, gvim > wrote: > > I'm not familiar with the Java standard library and didn't find an

[ANN] self-build, a self contained build server

2014-03-09 Thread ronen
self-build is a simple build server currently focused on simplicity and easy setup, its main goal is to enable a continues build by just running: $ lein self-build jobs.edn Right from within a lein project thus saving us from the need to setup Jenkins or other more complex solutions. Check h

Re: Integration testing in Clojure

2014-01-30 Thread ronen
Hey Conan, I'm using midje with selectors to separate integration test from unit test (like for example in thisproject) Regarding VCR iv spotted https://github.com/sonian/cartridge which seems to offer sim

Re: [ANN] Leiningen 2.3.4 released

2013-11-20 Thread ronen
Thanks guys for the hard work On Wednesday, November 20, 2013 4:30:03 PM UTC+2, Tim Visher wrote: > > Thanks so much to Phil, Nelson, Jean Niklas, and the rest of the Leiningen > team! > > On Tue, Nov 19, 2013 at 1:41 PM, Phil Hagelberg > > > wrote: > > > > Hello folks. I'm happy to announc

Re: [ANN] clojure-sec

2013-11-18 Thread ronen
First note that Im not a security expert so take my advice with a grain of salt, There are couple of middlewares that are worth checking out (in addition to friend): * https://github.com/weavejester/ring-anti-forgery * https://github.com/myfreeweb/ring-ratelimit Regarding SQL injection quotin

Re: Releasing Caribou today: Open Source Clojure Web Ecosystem

2013-11-16 Thread Ronen Cohen
This look great! Is there a sample app anywhere? On Wednesday, November 13, 2013 1:52:10 AM UTC+2, Ryan Spangler wrote: > > Hello Clojure, > > Excited to announce today the release of Caribou! http://let-caribou.in/ > > We have been building web sites and web applications with it for over two >

Re: [ANN] Parkour: Hadoop MapReduce in idiomatic Clojure

2013-11-04 Thread ronen
Thanks for releasing this, I personally had to re-invent such functionality over clojure-hadoop Did you happen to test this over AWS EMR? On Monday, November 4, 2013 3:55:23 PM UTC+2, Marshall Bockrath-Vandegrift wrote: > > I’m pleased to announce the first public release of Parkour, a librar

[ANN] Puny, a tiny layer for persisting Clojure maps into Redis hashes

2013-10-10 Thread ronen
Puny is a tiny layer for persisting Clojure maps into Redis hashes, it aims to reduce boilerplate and to enable end to end life cycle management of entities from validation to data migration and indexing. It includes support for: * Complete generated CRUD API. * Automatic keys and id management

RBAC/ACL using core.logic or similar

2013-09-29 Thread ronen
Hey, I was thinking about how to approach role and permission management in Clojure, https://shiro.apache.org/ is one example of same a framekwork It sounds like a problem that core.logic could solve but I'm not sure how to approach it Thought and ideas are welcome Thanks -- -- You rece

Re: ANN swag a DSL for documenting Compojure routes using Swagger

2013-08-17 Thread ronen
Cool, let me know how it works out for you On Saturday, August 17, 2013 5:01:46 AM UTC+3, Casper Clausen wrote: > > Nice work. Looking forward to giving it a spin. > > On Thursday, August 15, 2013 12:13:11 PM UTC+2, ronen wrote: >> >> Swagger <https://developers.hel

ANN swag a DSL for documenting Compojure routes using Swagger

2013-08-15 Thread ronen
is welcome Ronen -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this

Syncing channels

2013-07-27 Thread ronen
Iv been giving core.async a spin in clojurescript/nodejs settings and stumbled upon a simple use case: - You have two channels c1 and c2 both produced from http calls - c2 is produced from a call the consumes c1 result as an input (let [id (http://groups.google.com/group/clojure?hl=en --

Re: ANN: substantiation, An opinionated nested maps validations library

2013-07-27 Thread ronen
uly 27, 2013 10:23:17 PM UTC+3, Ben wrote: > > Why not just use functions for the validations? string? instead of > :String. Then you get disjunction for free. > > > On Sat, Jul 27, 2013 at 12:22 PM, ronen >wrote: > >> >> Thanks for the feedback! >> >>

Re: ANN: substantiation, An opinionated nested maps validations library

2013-07-27 Thread ronen
RI. uri) > true > (catch Exception e false))) > > (def location-rule {:name String :lat Number :long Number}) > > (def contributor-rule {(required :id) uri? :gender #{"m" "f"} :birthDate > String >:locales [St

ANN: substantiation, An opinionated nested maps validations library

2013-07-26 Thread ronen
Ronen -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group,

Re: [ClojureScript] ANN: core.match 0.2.0-beta2

2013-06-17 Thread ronen
Thank you! On Monday, June 17, 2013 8:10:19 AM UTC+3, Ambrose Bonnaire-Sergeant wrote: > > Fantastic news! > > > On Mon, Jun 17, 2013 at 1:04 PM, David Nolen > > wrote: > >> At long last I've come around to overhauling core.match. >> >> Changes/Fixes/Enhancements are documented here: >> http://g

Re: Clojure for Map Reduce (on hadoop > 0.22)

2013-06-03 Thread ronen
Iv used Alex version and works great (on that note thank you Alex for keeping it going) Ronen On Wednesday, May 29, 2013 11:45:13 AM UTC+3, Alex Ott wrote: > > Hi > > https://github.com/alexott/clojure-hadoop - updated version > > > On Wed, May 29, 2013 at 1:55 AM, Rames

Re: ANN: vim-redl -- advanced fuzzy omnicompletion and VimClojure-style repl with enhanced debugging features

2013-04-04 Thread ronen
Very nice work, Thank you On Wednesday, April 3, 2013 11:08:30 PM UTC+3, dgrnbrg wrote: > > Although I've announced vim-redl in the past, now you can reap the > benefits of all of its features without leaving fireplace behind! Just go > to https://github.com/dgrnbrg/vim-redl for installation i

Re: [ANN] analyze 0.3.0 - Hygienic transformation

2013-02-15 Thread ronen
Great! The Clojure eco system is really fast paced Ronen On Friday, February 15, 2013 9:30:19 AM UTC+2, Ambrose Bonnaire-Sergeant wrote: > > Jonas already has another project which uses analyze > https://github.com/jonase/eastwood > > On Fri, Feb 15, 2013 at 12:19 P

Re: [ANN] analyze 0.3.0 - Hygienic transformation

2013-02-14 Thread ronen
It looks as if https://github.com/jonase/kibit/ is a lint/check style tool that only reads the source code, this limits its utilization: "Kibit reads source code without any macro expansion or evaluation. A macro can t

Re: [ANN] analyze 0.3.0 - Hygienic transformation

2013-02-11 Thread ronen
isions when working with the AST, gensyms in macros achieve similar results I guess this is useful in typed Clojure or similar tools to perform type checking Ronen On Monday, February 11, 2013 7:54:31 PM UTC+2, kovasb wrote: > > What is a hygienic AST? > > Thanks > k > > &

Re: ANN: lein-open and lein-grep 0.1.0

2013-02-04 Thread ronen
Nice plugins! Thanks for releasing On Monday, February 4, 2013 2:21:09 PM UTC+2, Gabriel Horner wrote: > > Announcing two leiningen plugins: > > lein-open, http://github.com/cldwalker/lein-open, opens a local jar in an > editor easily e.g. `lein open compojure`. By default it opens dependencies

Re: Prismatic Plumbing and Graph Open-Source Release

2013-01-29 Thread ronen
Great! Thanks again Ronen On Wednesday, January 30, 2013 2:53:06 AM UTC+2, Aria Haghighi wrote: > > Yes, we'll be releasing flop soon. > > On Tuesday, January 29, 2013 4:49:45 PM UTC-8, ronen wrote: >> >> Amazing work Prismatic team, is there a plan to release

Re: Prismatic Plumbing and Graph Open-Source Release

2013-01-29 Thread ronen
Amazing work Prismatic team, is there a plan to release Flop? http://lanyrd.com/2012/clojurewest/spdfg/ Thanks! Ronen On Tuesday, January 29, 2013 8:46:54 PM UTC+2, Aria Haghighi wrote: > > Hey all, > > Prismatic has open-sourced our Plumbing and Graph library on > github<

Re: New Clojure user group in Israel

2013-01-10 Thread ronen
Great initiative guys, I remember the days when Clojure was an exotic beast no one heard of Its great to have a Clojurian meetup Ronen On Monday, December 17, 2012 12:58:21 PM UTC+2, Daniel Szmulewicz wrote: > > Hi everybody, > > Happy to announce that Israel has its first Clojur

Re: ANN: codeq

2012-10-10 Thread ronen
Awesome! this is my gateway drug into Datomic On Wednesday, October 10, 2012 4:27:37 PM UTC+2, Rich Hickey wrote: > > I released a little app today that imports Git repos into Datomic. My hope > is that it can be used as the underpinnings of some interesting Clojure > tooling. > > More info her

Re: is this a problem for clojure.contrib.dataflow? Or something else?

2012-08-21 Thread ronen
BTW you can give it a go using Amazon EMR, that way you can check it without investing in the infra before hand Ronen On Tuesday, August 21, 2012 11:02:18 PM UTC+3, matt hoffman wrote: > > Great, thanks -- I hadn't looked too closely at Cascalog yet only because > I don't

Re: is this a problem for clojure.contrib.dataflow? Or something else?

2012-08-20 Thread ronen
Also last time I checked dataflow in contrib was dead, Cascalog, datomic and to some extent core.logic fill this niche Ronen On Tuesday, August 21, 2012 3:55:46 AM UTC+3, ronen wrote: > > Terabyte size and chain of dependent tasks might hint toward > Cascalog<https://github.co

Re: is this a problem for clojure.contrib.dataflow? Or something else?

2012-08-20 Thread ronen
tomic.com/> although from your description is sounds less so. Ronen On Tuesday, August 21, 2012 3:14:23 AM UTC+3, Leif wrote: > > +1. I know of a couple tools in python for this purpose that are called > "workflow management systems." It would be good to know if there is a

Re: How to measure pieces of Clojure code?

2012-08-10 Thread ronen
Hmm if by space you mean memory then I think that only a profiler can help with that, regarding time using https://github.com/hugoduncan/criterium for benchmarking is the path I would take Ronen On Saturday, August 11, 2012 1:21:05 AM UTC+3, Hussein B. wrote: > > Hi, > I want to me

Re: Clojure alternatives to Esper

2012-04-24 Thread ronen
Iv been integrating Drools fusion with Clojure using a DSL to describe rules: https://github.com/narkisr/gelfino/wiki/drools I think it showcases nicely how interop can be done Ronen On Tuesday, April 24, 2012 12:23:39 AM UTC+3, Rogier wrote: > > Good questions. Mostly that it s

Gelfino

2012-02-04 Thread ronen
information http://documentup.com/narkisr/gelfino/ Feedback is welcome Ronen -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated -

Re: ANN: Midje 1.3.0

2011-12-15 Thread ronen
Joining the congrats, one of the must have tools for any Clojure project Ronen On Dec 14, 8:01 am, Denis Labaye wrote: > Midje is getting better and better. > > Congrats! > > > > > > > > On Mon, Dec 12, 2011 at 5:41 PM, Brian Marick wrote: > >

Clojure on the reversim podcast

2011-11-09 Thread ronen
Iv been hosted on reversim (an Israeli software podcast) for a talk about Clojure, The talk is in Hebrew: http://www.reversim.com/ Ronen -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@google

Re: Using match library (latest snapshot) ns not found

2011-09-22 Thread ronen
Just did Ronen On Sep 23, 1:59 am, David Nolen wrote: > On Thu, Sep 22, 2011 at 6:56 PM, ronen wrote: > > Thanks David, the ns is found now (using lein checkouts), one of the > > reasons iv tried moving to latest snapshot was an error during > > compilation for the foll

Re: Using match library (latest snapshot) ns not found

2011-09-22 Thread ronen
s id rather open an issue for this :), Thank you David for an awesome library Ronen On Sep 23, 1:33 am, David Nolen wrote: > I'm temporarily bringing back project.clj until we get a proper release out > the door (hopefully soon). Let me know if HEAD works for you. > > David >

Using match library (latest snapshot) ns not found

2011-09-22 Thread ronen
: Peeking into the jar it is there, Iv also tried using: match.core but failed again, any idea on how to resolve this? Thanks Ronen -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroup

Re: Spread work onto multiple threads (in pure Clojure)

2011-09-22 Thread ronen
pmap redundant. Sean: I could use pmap, but ill be limited in number of threads still in my case I can live with that. Thank you all for clearing it out, looks like I was on the right track Ronen On Sep 22, 8:00 am, Sean Corfield wrote: > On Wed, Sep 21, 2011 at 6:06 PM, ronen wrote: > &g

Spread work onto multiple threads (in pure Clojure)

2011-09-21 Thread ronen
b.com/getwoven/work), yet id rather achieve this in pure Clojure. Thanks Ronen -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - pl

Re: napalm

2011-08-17 Thread ronen
Very nice work, it sure does cures a pain point in Java land. Ronen On Aug 16, 1:20 am, Miro Bezjak wrote: > First, apologies to anyone not interested. This isn't clojure project but it > helps to setup it. Windows users can skip this announcement because napalm > doesn't

Re: Alright, fess up, who's unhappy with clojurescript?

2011-07-28 Thread ronen
f it wasn't for your work id wouldn't be so much excited with javascript as I am now! Iv bought the Closure book and I can't wait to see all the cool stuff that the Clojure community will bring to this arena! Ronen On Jul 25, 10:38 am, Mark Derricutt wrote: > Oracle announced/talke

Couch-fuse

2010-05-08 Thread ronen
Iv just released the first version of couch-fuse a Couchdb fuse filesystem that is implemented in Clojure, for more details head on to http://github.com/narkisr/couch-fuse. Ronen -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to

Re: Something similar to (match) from scheme?

2010-03-12 Thread ronen
http://www.brool.com/index.php/pattern-matching-in-clojure On Mar 11, 2:02 pm, Luka wrote: > Is there a way to do pattern matching on values in clojure similar to > this: > >  http://docs.plt-scheme.org/reference/match.html > > What I'm trying to do is simple lexing/parsing:  I would match parts

Re: insert-rows

2009-12-04 Thread ronen
Hey mark I guess that you are using ClojureQL, can you post your function call? Ronen On Nov 25, 6:39 pm, Mark Stang wrote: > Hi, > I am working on reading a pipe delimited file into a SQL database. > > I can read the lines using >   (doseq [line (read-lines "myfile.csv&q

Re: Mocking (with EasyMock?) java calls

2009-11-15 Thread ronen
Id recommend using mockito instead: http://mockito.org/ On Nov 12, 1:55 am, Howard Lewis Ship wrote: > Try looking at this: > > http://github.com/hlship/cascade/blob/master/src/main/clojure/cascade... > > > > On Thu, Nov 5, 2009 at 5:00 AM, vanallan wrote: > > > Hi > > Im trying to convert a co

Re: ANN: Clojure live-repl

2009-10-28 Thread ronen
Under Linux I had to fix the paths in liverepl.sh to include the build folder: java -cp "$LIVEREPL_HOME/build/*:$JDK_HOME/lib/tools.jar" net.djpowell.liverepl.client.Main "$CLOJURE_JAR" "$LIVEREPL_HOME/build/ liverepl-agent.jar" "$LIVEREPL_HOME/build/liverepl-server.jar" "$@" --~--~-~--~

Re: for those who just can't get enough of monads

2009-09-07 Thread ronen
lticore change all that) Its interesting to watch how paradigms shift around. Ronen --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com

Re: maplocalleader & vimclojure

2009-09-05 Thread ronen
Youtube (if you are interested). Thank you for your patience & hard work Ronen On Sep 5, 11:03 am, Meikel Brandmeyer wrote: > Hi, > > Am 04.09.2009 um 00:00 schrieb ronen: > > > > > Im also not getting Clojure when calling :nmap, > > > n          * /<+.\

Re: Fixing production systems on-the-fly

2009-09-05 Thread ronen
Not Clojure specific, the Spring framework has "refreshable beans" support which enables partial code swap on production systems (http:// tiny.cc/3zctU), its much more limited than Erlang but still might proove to be useful. On Sep 4, 9:30 pm, tmountain wrote: > I just put together some example

Re: Fixing production systems on-the-fly

2009-09-05 Thread ronen
Not Clojure specific, the Spring framework has "refreshable beans" support which enables partial code swap on production systems (http:// tiny.cc/3zctU), its much more limited than Erlang but still might proove to be useful. On Sep 4, 9:30 pm, tmountain wrote: > I just put together some example

Re: maplocalleader & vimclojure

2009-09-03 Thread ronen
7;m routine-blinded so any documentation > > from the "outside" with a fresh view is highly appreciated! > > > > Try this in vim: > > > > :call vimclojure#Repl.New() > > > Please don't do that. Poking in the guts doesn't help. The problem is

maplocalleader & vimclojure

2009-09-02 Thread ronen
epl via the |sr| shortcut. At the prompt just type expressions" Im typing sr with and without pipes with no avail. My vimrc settings are: " Vim Clojure let vimclojure#NailgunClient = "/home/ronen/.vimclojure/ng" let clj_want_gorilla = 1 let clj_paren_rainbow = 1

Re: When to use macros

2009-08-30 Thread ronen
Cool, I guess that there is no "one" correct answer but more a question of style & experience, the separation of logic & code mangling into two parts makes the most sense to me. Ill continue to sharp my macro foo ;) On Aug 30, 8:16 pm, Vagif Verdi wrote: > I would argue that macros always shou

When to use macros

2009-08-29 Thread ronen
In a lot of cases its seems that macros are used even when a function can do the same task, Macros seems to be less readable than their functional counterparts & more complex to write (to me at least). Its clear that there are special cases in which macros are the perfect solution (like partial e

Re: Very minor problem in the REPL

2009-07-25 Thread ronen
Iv stumbled this also when using Threads, (http:// javadevelopmentforthemasses.blogspot.com/2009/07/easiest-singleton- around.html) user=> (defn singleton-factory [] (println "creating object") (+ 1 2)) user=> (use 'clojure.contrib.singleton) nil user=> (def t-singleton (per-thr

Re: ANN: FnParse, a functional parsing library

2009-07-14 Thread ronen
Looks quite nice, can you tell how it compares (performance wise) to other parsing libraries? On Jul 6, 3:55 am, Wilson MacGyver wrote: > Thanks for the tip on looking at clojure.contrib. I keep forgetting to   > check there. > > On Jul 5, 2009, at 4:20 PM, samppi wrote: > > > > > If you need a

Re: The "->" & "." nested usage

2009-06-08 Thread ronen
tring. String.) ;works for any x where string has a constructor > that takes something of type x > > for example > > (-> "file.txt" File. FileReader. BufferedReader.) > > will return a buffered reader on file.txt (assuming you import those > classes from ja

Re: The "->" & "." nested usage

2009-06-08 Thread ronen
tring. is only treated as new String ...  when it is placed in the > function position (String. ...) >  in (-> String. String.) the first String. is never put in the > function position, so effectively you get > (String. String.) > > > > On Mon, Jun 8, 2009 at 12:38 PM, ronen

The "->" & "." nested usage

2009-06-08 Thread ronen
Following a blog post on building large object graphs I was suggested with the following solution: (def nested-object (-> GrandFather. Father. GrandSon.)) this indeed seems to be correct however fails in even in a simple example: user=> (-> String. String.) java.lang.ClassNotFoundException: St

Re: how would I do this functionally? (internally mutable state)

2009-06-02 Thread ronen
As mentioned before, most file systems have the ability of providing callback to changes in files/directories, at SE 6 using this ability requires resorting to native code (JNA or JNI, see http://jnotify.sourceforge.net/) , in SE 7 this will be implemented in NIO 2 (http://java.sun.com/ developer

Re: Method overloading & proxy method

2009-05-09 Thread ronen
Well the solution in my case was to create a map from visited types to visited members (http://tinyurl.com/poq5e2) the visitation logic uses this map in order to invoke the next visit (http://tinyurl.com/ pkugra). This "pattern" enables visitors to be implemented in Clojure for pure Java based fr

Re: clojure dependency management and build

2009-04-10 Thread ronen
Iv been using gant which has built in support for Ivy & Ant (for example http://tiny.cc/tRGKB), since the build scripts are code they make it easier to keep build scripts DRY. On Apr 9, 9:40 pm, Bradford Cross wrote: > On Thu, Apr 9, 2009 at 11:34 AM, Stuart Sierra > wrote: > > > > > > > I keep

Re: Method overloading & proxy method

2009-03-22 Thread ronen
not all of them. My best guess is that I should somehow manually map the proxy methods. On Mar 22, 6:19 pm, Stuart Sierra wrote: > On Mar 21, 6:13 pm, ronen wrote: > > > > > Hello there, > > Iv been trying to implement a proxy on a class > > (http://code.google.

Method overloading & proxy method

2009-03-21 Thread ronen
Hello there, Iv been trying to implement a proxy on a class ( http://code.google.com/p/javaparser/source/browse/trunk/JavaParser/src/japa/parser/ast/visitor/VoidVisitorAdapter.java?spec=svn77&r=77) that has multiple overloaded methods (same arity different types), trying (defn create-visitor []