Yes, you can. In config / initializers / some_initializer.rb
Date::DATE_FORMATS[:default] = "%m/%d/%Y"
Now all your dates will always be in the above format. If you want to selectively select it only occasionally. Then
Date::DATE_FORMATS[:myformat] = "%m/%d/%Y"
And then you can use whatever you like
your_date.to_s(:myformat)
source share