ZeroFill makes it easy to add any missing dates to a series of dates. Popular use cases include calendars and charts with no data for some dates.
Compatible with Ruby 1.9.3 and 2.0.0 (and has no dependencies!). Untested in 1.8.7 but should work.
For instance, say you want to output some info for these days:
July 29: 10
July 31: 7
August 2: 3
Wait - what about July 30 and August 1, the days missing from that list? ZeroFill can help!
July 29: 10
July 30: 0
July 31: 7
August 1: 0
August 2: 3
Voila! You have a series of 5 dates with zeros added for the missing dates.
Simply pass a series (array or hash) into ZeroFill.by_date()
- Pass a hash of pairs of Dates (or DateTimes) and content (a string, integer, or whatever!):
myDates = {
Date.parse("2013-07-29") => 10, #Monday
Date.parse("2013-07-31") => 7, #Wednesday
Date.parse("2013-08-02") => 3 #Friday
}
ZeroFill.by_date(myDates)
- Or, pass an array of hashes. Each hash includes a Date or DateTime object and the value. Note: the name of the keys in the hash are irrelevant as long as they are consistent throughout the array. ZeroFill automatically detects which key represents a Date/DateTime object
myDates = [
{ date: Date.parse("2013-07-31"), content: "My Birthday" },
{ date: Date.parse("2013-07-14"), content: "Movie Night" }
]
ZeroFill.by_date(myDates)
- Return all dates for any months represented in your date series:
myDates = [
{ date: Date.parse("2013-07-31"), content: "My Birthday" },
{ date: Date.parse("2013-08-13"), content: "First day of class" }
]
ZeroFill.by_date(myDates, includes: :month)
=> All dates in July & August
- Return all dates for any weeks represented in your date series:
myDates = [
{ date: Date.parse("2013-07-31"), content: "My Birthday" }
]
ZeroFill.by_date(myDates, includes: :week)
=> All dates in the week of Saturday, July 28 to Sunday, August 3
- Sort dates from latest to earliest (Default is ascending - earliest to latest)
ZeroFill.by_date(myDates, order: :descending)
- Change the default value of Zero Filled dates (Default is 0)
ZeroFill.by_date(myDates, default_value: "Nothing Found!")
=> All missing dates' values are populated with "Nothing Found"
- Specify the start date of returned dates. For instance, to return dates starting with July 10:
ZeroFill.by_date(myDates, start_at: Date.parse("2013-07-10"))
=> Returns dates from July 10 until the latest date in your series.
- Specify the end date of returned dates. For instance, to return dates ending with August 7:
ZeroFill.by_date(myDates, end_at: Date.parse("2013-08-07"))
=> Returns dates from earliest date in your series through August 7
- by_hour option - allow ZeroFill of hours. Include full-day support (like month option for by_date)
- by_month option - ZeroFill by month including support for full-year
- Support passing date strings instead of date objects
- Date padding option: Allow padding of the results by X days (i.e. show 3 days after the end of the series)
Knock out TODOs, add support for more input types, more formatting options, etc.
- Fork the repo
- Create a branch with a thoughtful name
- Hack away
- Add tests
- Make sure the tests pass by running
rake
- Document any new options in the README
- Squash your commits into logical groups
- Submit a pull request and we'll see what happens!
Copyright (c) 2013, developed and maintained by MOBI Wireless Management, and is released under the open MIT License. See the LICENSE file in this repository for details.