Skip to content

Commit

Permalink
Merge branch 'master' of github.com:bradyholt/cron-expression-descriptor
Browse files Browse the repository at this point in the history
  • Loading branch information
bradymholt committed Mar 26, 2012
2 parents 1300683 + 343bbd0 commit 2061ed1
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ A C# library that converts cron expressions into human readable strings.
Author: Brady Holt (http://www.geekytidbits.com)
License: MIT

**Features**

* 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**

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)**

[TestMethod]
Expand Down Expand Up @@ -230,9 +241,4 @@ License: MIT
{
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.
}

0 comments on commit 2061ed1

Please sign in to comment.