Commit 126f8dcb0125bb82787175aed81be55162442a5e

if "object" doesn't respond to the method specified, it was throwing an error. Fixed (thanks, Joe Tanner!)

Commit diff

lib/calendar_date_select.rb

 
154154 use_time = options[:time]
155155
156156 if options[:time].to_s=="mixed"
157 use_time = false if Date===obj.send(method)
157 use_time = false if Date===(obj.respond_to?(method) && obj.send(method))
158158 end
159159
160160 calendar_options = calendar_date_select_process_options(options)
toggle raw diff