Skip to content

Instantly share code, notes, and snippets.

@iamjohnlong
Last active January 3, 2016 19:49
Show Gist options
  • Save iamjohnlong/8511379 to your computer and use it in GitHub Desktop.
Save iamjohnlong/8511379 to your computer and use it in GitHub Desktop.
# I have a hash `dates` that I get from "DateTime.now - 7, DateTime.now" in my database.
# I need to turn it into a full week where if the date doesn't exist put a 0 in as the value of the date key.
dates = {"2014-01-15"=>1, "2014-01-17"=>1, "2014-01-18"=>1, "2014-01-19"=>17}
week_hash = {
"2014-01-13"=>0,
"2014-01-14"=>0,
"2014-01-15"=>1,
"2014-01-16"=>0,
"2014-01-17"=>1,
"2014-01-18"=>1,
"2014-01-19"=>17
}
@iamjohnlong
Copy link
Author

Thanks dood! @piersadrian

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment