eric1234

Results 17 issues of eric1234

Unexpected: ```ruby NumbersInWords.in_numbers("three and a half") # => 15.5 ``` Weird maybe it's something with a three not being understood since it got the half right. ```ruby NumbersInWords.in_numbers("four and a...

Sorry if this is the wrong place to ask this. I've searched the web, asked AI, asked on a few Ruby forums and searched the issues on this repo. The...

I can do a date that includes the end of the month: ```ruby > puts *Montrose.daily(mday: [25, -1]).take(10) 2025-03-31 17:14:27 -0400 2025-04-25 17:14:27 -0400 2025-04-30 17:14:27 -0400 2025-05-25 17:14:27 -0400...

If I wanted a recurrence that is every day at 8 I can do this: ```ruby > puts Montrose.daily(hour: 8).take(10) 2025-03-28 08:53:34 -0400 2025-03-29 08:53:34 -0400 2025-03-30 08:53:34 -0400 2025-03-31...

I don't understand how to do something like "every other monday". If I just put that in tickle I get an error: ``` > Tickle.parse('every other monday') wrong number of...

If the schedule indicates an ending date then such as in the future everything works as expected: ```ruby Tickle.parse("every monday until Jan 1st, 2027") => {:next=>2024-12-23 12:00:00 -0500, :expression=>"monday", :starting=>2024-12-20...

In 7df506e I had added an endless rule but I made a mistake in the semantic predicate. I examined the first token (aka `'rule'`) and not the last one (the...