What is the best way to get the day of the year for any specific date in Ruby?
For example: 31/dec/2009 should return day 365, and 01/feb/2008 should return day 32
|
feedback
|
|
Basically (shown here in irb):
For any date:
Or:
@see also: Ruby Documentation | ||||
|
feedback
|
|
Use
| |||
|
feedback
|
|
you might be able to do something with civil_to_jd(y, m, d, sg=GREGORIAN) from | |||
|
feedback
|
|
Here's an example:
| ||||
|
feedback
|