From ae9d0fdcccb9629712338b40a125d66c043e89bc Mon Sep 17 00:00:00 2001 From: Brady Holt Date: Thu, 22 Mar 2012 09:22:02 -0500 Subject: [PATCH 1/6] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 40c1d9f9..ae5a9ddc 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ A C# library that converts cron expressions into human readable strings. Author: Brady Holt (http://www.geekytidbits.com) License: MIT +**Download** + +If you want to get up and running quickly and just want the library, visit the Downloads page. + **Usage Examples (as Unit Tests)** [TestMethod] From b67cbd03f1d51a1c9d17ce017f55d7e492009366 Mon Sep 17 00:00:00 2001 From: Brady Holt Date: Thu, 22 Mar 2012 09:23:19 -0500 Subject: [PATCH 2/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae5a9ddc..77718878 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ License: MIT **Download** -If you want to get up and running quickly and just want the library, visit the Downloads page. +If you want to get up and running quickly and just want the library, [visit the Downloads page](https://github.com/bradyholt/cron-expression-descriptor/downloads). **Usage Examples (as Unit Tests)** From 7f6eaede3fcec42c58905164a1f0c98acadecebb Mon Sep 17 00:00:00 2001 From: Brady Holt Date: Thu, 22 Mar 2012 09:23:53 -0500 Subject: [PATCH 3/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 77718878..32d71a59 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ License: MIT **Download** -If you want to get up and running quickly and just want the library, [visit the Downloads page](https://github.com/bradyholt/cron-expression-descriptor/downloads). +If you want to get up and running quickly and just want the library, [visit the Downloads page](https://github.com/bradyholt/cron-expression-descriptor/downloads) and download the latest CronExpressionDescriptor.dll **Usage Examples (as Unit Tests)** From bb138c4e8fdf7c2c4260bcb57e38c15e606da629 Mon Sep 17 00:00:00 2001 From: Brady Holt Date: Thu, 22 Mar 2012 09:24:11 -0500 Subject: [PATCH 4/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 32d71a59..6246d628 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ License: MIT **Download** -If you want to get up and running quickly and just want the library, [visit the Downloads page](https://github.com/bradyholt/cron-expression-descriptor/downloads) and download the latest CronExpressionDescriptor.dll +If you want to get up and running quickly and just want the library, [visit the Downloads page](https://github.com/bradyholt/cron-expression-descriptor/downloads) and download the latest CronExpressionDescriptor.dll library assembly. **Usage Examples (as Unit Tests)** From 7916b5dbe67de604272350b6d47c1aede379c3ed Mon Sep 17 00:00:00 2001 From: Brady Holt Date: Thu, 22 Mar 2012 09:24:51 -0500 Subject: [PATCH 5/6] Update README.md --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6246d628..c5096d5c 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,12 @@ A C# library that converts cron expressions into human readable strings. Author: Brady Holt (http://www.geekytidbits.com) License: MIT +**Notes** + + * Supports 5 or 6 (w/ seconds) part cron expressions. + * Does NOT support Year in cron expression. + + **Download** If you want to get up and running quickly and just want the library, [visit the Downloads page](https://github.com/bradyholt/cron-expression-descriptor/downloads) and download the latest CronExpressionDescriptor.dll library assembly. @@ -234,9 +240,4 @@ If you want to get up and running quickly and just want the library, [visit the { ExpressionDescriptor ceh = new ExpressionDescriptor("2-59/3 1,9,22 11-26 1-6 ?"); Assert.AreEqual("Every 3 minutes, between 02 and 59 minutes past the hour, during 01:00 AM, 09:00 AM, and 10:00 PM, between day 11 and 26 of the month, January through June", ceh.GetDescription()); - } - -**Notes** - - * Supports 5 or 6 (w/ seconds) part cron expressions. - * Does NOT support Year in cron expression. \ No newline at end of file + } \ No newline at end of file From 343bbd0566bad7558edcdc8f8712896ffe15f361 Mon Sep 17 00:00:00 2001 From: Brady Holt Date: Thu, 22 Mar 2012 09:28:12 -0500 Subject: [PATCH 6/6] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c5096d5c..d3f17ec3 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,11 @@ A C# library that converts cron expressions into human readable strings. Author: Brady Holt (http://www.geekytidbits.com) License: MIT -**Notes** +**Features** - * Supports 5 or 6 (w/ seconds) part cron expressions. - * Does NOT support Year in cron expression. + * Supports all cron expression special characters including * / , - ? L W, #. + * Supports 5 or 6 (w/ seconds) part cron expressions. Does NOT support Year in cron expression. + * Provides casing options (Sentence, Title, Lower, etc.) **Download**