cronenberg
provides two core components
TimeItem
: An enum that represents cron command time or date fieldCronItem
: A struct that represents cron command entry, for example, * * 5-7 1,2,5 8 sudo rm -rf /
```rust extern crate cronenberg;
use cronenberg::CronItem; use cronenberg::TimeItem::*; use std::str::FromStr; use std::string::ToString;
let s = "* * 5-7 1,2,5 8 sudo rm -rf /"; asserteq!( CronItem::fromstr(s).unwrap(), CronItem { minute: AllValues, hour: AllValues, dayofmonth: Interval((5, 7)), month: MultipleValues(vec![1, 2, 5]), dayofweek: SingleValue(8), command: String::from("sudo rm -rf /"), } );
let cronitem = CronItem { minute: MultipleValues(vec![1, 10]), hour: Interval((1, 4)), dayofmonth: Interval((1, 11)), month: MultipleValues(vec![1, 2, 5]), dayofweek: AllValues, command: String::from("sudo rm -rf /"), }; asserteq!("1,10 1-4 1-11 1,2,5 * sudo rm -rf /", cronitem.tostring()); ```
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)Ayrat Badykov (@ayrat555)
cronenberg is released under the MIT License.