# File lib/integration/rails_date_helper_override.rb, line 102
    def select_date(date = Date.current, options = {}, html_options = {})
      options[:order] ||= [:day, :month, :year]
      if DATE_HELPERS_RECEIVE_HTML_OPTIONS
        stock_select_date(date, options, html_options)
      else
        stock_select_date(date, options)
      end
    end