Is there a ruby gem/plugin which will convert something like */10 * * * 1,3 to “Triggers every 10 minutes on Monday, Wednesday” ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There’s nothing I know of and I also didn’t find anything with Google. You may be able to hack something together on your own though:
Once you have the vars, you can start assembling the parts for your output:
Obviously that’s just some rough ideas (for example you may want a regex with capture groups for parsing the entry), but since the crontab entries are well specified, it shouldn’t be too hard to come up with something that works for most of the entries you are likely to encounter.