Skip to content

Instantly share code, notes, and snippets.

@jb08
Last active November 15, 2023 23:29
Show Gist options
  • Save jb08/9514ee00cdb3caffe21b5c99525c3a92 to your computer and use it in GitHub Desktop.
Save jb08/9514ee00cdb3caffe21b5c99525c3a92 to your computer and use it in GitHub Desktop.
Date enumeration example
> s = Date.new(2023, 11, 12)
=> #<Date: 2023–11–12>
> e = Date.new(2023, 11, 15)
=> #<Date: 2023–11–15>
> (s..e).map(&:to_s)
=> ["2023–11–12", "2023–11–13", "2023–11–14", "2023–11–15"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment