Created
January 30, 2017 20:48
-
-
Save jrgifford/d2cfac2364eee08c16152a32c28db494 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
params = {} | |
params[:start_date] = "2017/08/03" | |
params[:end_date] = "2017/08/05" | |
start_date = Date.parse(params[:start_date]) | |
end_date = Date.parse(params[:end_date]) | |
dates = (start_date..end_date).step(1.day).map { |date| | |
date.strftime('%y-%m-%d') | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment