Re: [ANN] org.clojure/tools.cli 0.4.1

2018-10-05 Thread Pierre-Yves Ritschard
Thanks for tools.cli, it's a pillar of a number of our projects, present in 
almost all our `main.clj` files :-)

On Sunday, September 23, 2018 at 11:16:34 PM UTC+2, Sean Corfield wrote:
>
> Alex says the auto-generation process is broken and needs to be run 
> manually for each project right now. I figured out that was 
> `clojure/contrib-api-doc` and ran it on `tools.cli` so those docs are 
> up-to-date now.
>
>  
>
> I also ran it manually for `java.jdbc` so that’s up-to-date 
> (0.7.9-SNAPSHOT) as well.
>
>  
>
> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
>  
> --
> *From:* Sean Corfield >
> *Sent:* Sunday, September 23, 2018 1:35:42 PM
> *To:* clo...@googlegroups.com 
> *Subject:* RE: [ANN] org.clojure/tools.cli 0.4.1 
>  
>
> That documentation is auto-generated behind the scenes as part of the 
> build system (I think, or maybe some other process) so if it isn’t 
> up-to-date, maybe Alex Miller can take a look?
>
>  
>
> Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
>
> "If you're not annoying somebody, you're not really alive."
> -- Margaret Atwood
>
>  
> --
> *From:* clo...@googlegroups.com   > on behalf of Patrick Kristiansen  >
> *Sent:* Sunday, September 23, 2018 12:54:25 PM
> *To:* Clojure
> *Subject:* Re: [ANN] org.clojure/tools.cli 0.4.1 
>  
> Thanks, Sean. 
>
> Any chance you could update the API documentation here: 
> http://clojure.github.io/tools.cli/index.html
>
> On Sunday, September 23, 2018 at 5:18:44 AM UTC+2, Sean Corfield wrote: 
>>
>> Tools for working with command line arguments. 
>> https://github.com/clojure/tools.cli clj -Sdeps '{:deps 
>> {org.clojure/tools.cli {:mvn/version "0.4.1"}}}' 
>> Boot/Leiningen: [org.clojure/tools.cli "0.4.1"] This is a minor update 
>> that introduces new options :update-fn and :default-fn that make it easier 
>> to work with non-idempotent command line options (such as 
>> incrementing/counting options) and addresses a problem raised in 
>> https://dev.clojure.org/jira/browse/TCLI-90 (poor interaction between 
>> the existing :assoc-fn and :default options).
>> -- 
>> Sean A Corfield -- (904) 302-SEAN
>> An Architect's View -- http://corfield.org/
>> World Singles, LLC. -- http://worldsingles.com/
>>
>> "Perfection is the enemy of the good."
>> -- Gustave Flaubert, French realist novelist (1821-1880)
>>
> -- 
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clo...@googlegroups.com 
> Note that posts from new members are moderated - please be patient with 
> your first post.
> To unsubscribe from this group, send email to
> clojure+u...@googlegroups.com 
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> --- 
> You received this message because you are subscribed to the Google Groups 
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to clojure+u...@googlegroups.com .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: [ANN] org.clojure/tools.cli 0.4.1

2018-09-23 Thread Sean Corfield
Alex says the auto-generation process is broken and needs to be run manually 
for each project right now. I figured out that was `clojure/contrib-api-doc` 
and ran it on `tools.cli` so those docs are up-to-date now.

I also ran it manually for `java.jdbc` so that’s up-to-date (0.7.9-SNAPSHOT) as 
well.

Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


From: Sean Corfield 
Sent: Sunday, September 23, 2018 1:35:42 PM
To: clojure@googlegroups.com
Subject: RE: [ANN] org.clojure/tools.cli 0.4.1

That documentation is auto-generated behind the scenes as part of the build 
system (I think, or maybe some other process) so if it isn’t up-to-date, maybe 
Alex Miller can take a look?

Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


From: clojure@googlegroups.com  on behalf of Patrick 
Kristiansen 
Sent: Sunday, September 23, 2018 12:54:25 PM
To: Clojure
Subject: Re: [ANN] org.clojure/tools.cli 0.4.1

Thanks, Sean.

Any chance you could update the API documentation here: 
http://clojure.github.io/tools.cli/index.html

On Sunday, September 23, 2018 at 5:18:44 AM UTC+2, Sean Corfield wrote:
Tools for working with command line arguments. 
https://github.com/clojure/tools.cli clj -Sdeps '{:deps {org.clojure/tools.cli 
{:mvn/version "0.4.1"}}}'
Boot/Leiningen: [org.clojure/tools.cli "0.4.1"] This is a minor update that 
introduces new options :update-fn and :default-fn that make it easier to work 
with non-idempotent command line options (such as incrementing/counting 
options) and addresses a problem raised in 
https://dev.clojure.org/jira/browse/TCLI-90 (poor interaction between the 
existing :assoc-fn and :default options).
--
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/
World Singles, LLC. -- http://worldsingles.com/

"Perfection is the enemy of the good."
-- Gustave Flaubert, French realist novelist (1821-1880)

--
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, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
clojure+unsubscr...@googlegroups.com<mailto:clojure+unsubscr...@googlegroups.com>.
For more options, visit https://groups.google.com/d/optout.

-- 
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, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: [ANN] org.clojure/tools.cli 0.4.1

2018-09-23 Thread Sean Corfield
That documentation is auto-generated behind the scenes as part of the build 
system (I think, or maybe some other process) so if it isn’t up-to-date, maybe 
Alex Miller can take a look?

Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN
An Architect's View -- http://corfield.org/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood


From: clojure@googlegroups.com  on behalf of Patrick 
Kristiansen 
Sent: Sunday, September 23, 2018 12:54:25 PM
To: Clojure
Subject: Re: [ANN] org.clojure/tools.cli 0.4.1

Thanks, Sean.

Any chance you could update the API documentation here: 
http://clojure.github.io/tools.cli/index.html

On Sunday, September 23, 2018 at 5:18:44 AM UTC+2, Sean Corfield wrote:
Tools for working with command line arguments. 
https://github.com/clojure/tools.cli clj -Sdeps '{:deps {org.clojure/tools.cli 
{:mvn/version "0.4.1"}}}'
Boot/Leiningen: [org.clojure/tools.cli "0.4.1"] This is a minor update that 
introduces new options :update-fn and :default-fn that make it easier to work 
with non-idempotent command line options (such as incrementing/counting 
options) and addresses a problem raised in 
https://dev.clojure.org/jira/browse/TCLI-90 (poor interaction between the 
existing :assoc-fn and :default options).
--
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/
World Singles, LLC. -- http://worldsingles.com/

"Perfection is the enemy of the good."
-- Gustave Flaubert, French realist novelist (1821-1880)

--
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, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 
clojure+unsubscr...@googlegroups.com<mailto:clojure+unsubscr...@googlegroups.com>.
For more options, visit https://groups.google.com/d/optout.

-- 
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, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ANN] org.clojure/tools.cli 0.4.1

2018-09-23 Thread Patrick Kristiansen
Thanks, Sean.

Any chance you could update the API documentation 
here: http://clojure.github.io/tools.cli/index.html

On Sunday, September 23, 2018 at 5:18:44 AM UTC+2, Sean Corfield wrote:
>
> Tools for working with command line arguments. 
> https://github.com/clojure/tools.cli clj -Sdeps '{:deps 
> {org.clojure/tools.cli {:mvn/version "0.4.1"}}}' 
> Boot/Leiningen: [org.clojure/tools.cli "0.4.1"] This is a minor update 
> that introduces new options :update-fn and :default-fn that make it easier 
> to work with non-idempotent command line options (such as 
> incrementing/counting options) and addresses a problem raised in 
> https://dev.clojure.org/jira/browse/TCLI-90 (poor interaction between the 
> existing :assoc-fn and :default options).
> -- 
> Sean A Corfield -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
> World Singles, LLC. -- http://worldsingles.com/
>
> "Perfection is the enemy of the good."
> -- Gustave Flaubert, French realist novelist (1821-1880)
>

-- 
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, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [ANN] org.clojure/tools.cli 0.4.1

2018-09-23 Thread Howard Lewis Ship
Thanks for this library, I use it in lots and lots of my projects.

On Sat, Sep 22, 2018 at 8:18 PM Sean Corfield  wrote:

> Tools for working with command line arguments.
> https://github.com/clojure/tools.cli clj -Sdeps '{:deps
> {org.clojure/tools.cli {:mvn/version "0.4.1"}}}'
> Boot/Leiningen: [org.clojure/tools.cli "0.4.1"] This is a minor update
> that introduces new options :update-fn and :default-fn that make it easier
> to work with non-idempotent command line options (such as
> incrementing/counting options) and addresses a problem raised in
> https://dev.clojure.org/jira/browse/TCLI-90 (poor interaction between the
> existing :assoc-fn and :default options).
> --
> Sean A Corfield -- (904) 302-SEAN
> An Architect's View -- http://corfield.org/
> World Singles, LLC. -- http://worldsingles.com/
>
> "Perfection is the enemy of the good."
> -- Gustave Flaubert, French realist novelist (1821-1880)
>
> --
> 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, send email to
> clojure+unsubscr...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
> ---
> You received this message because you are subscribed to the Google Groups
> "Clojure" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to clojure+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>
-- 
Howard M. Lewis Ship

Senior Mobile Developer at Walmart Labs

Creator of Apache Tapestry

(971) 678-5210
http://howardlewisship.com
@hlship

-- 
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, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[ANN] org.clojure/tools.cli 0.4.1

2018-09-22 Thread Sean Corfield
Tools for working with command line arguments.
https://github.com/clojure/tools.cli clj -Sdeps '{:deps
{org.clojure/tools.cli {:mvn/version "0.4.1"}}}'
Boot/Leiningen: [org.clojure/tools.cli "0.4.1"] This is a minor update that
introduces new options :update-fn and :default-fn that make it easier to
work with non-idempotent command line options (such as
incrementing/counting options) and addresses a problem raised in
https://dev.clojure.org/jira/browse/TCLI-90 (poor interaction between the
existing :assoc-fn and :default options).
-- 
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/
World Singles, LLC. -- http://worldsingles.com/

"Perfection is the enemy of the good."
-- Gustave Flaubert, French realist novelist (1821-1880)

-- 
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, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.