I'm attempting to integrate jquery's datepicker with formtastic as detailed here
I've followed the directions exactly, but am getting "uninitialized constant ActiveSupport::CoreExtensions" when running this code:
<%= semantic_form_for @item, :html => { :multipart => true, :class => 'form'} do |f| %>
<div class="group">
<%= f.label :create_date, :class => 'label' %>
<%= f.input :create_date, :as => :datepicker %>
</div>
<% end %>
I attempted to put this in my config/application.rb:
require 'active_support/core_ext/date/conversions'
I've restarted the server but am still getting the same error. Am I putting this require line in the correct place?
Checking the page you linked, I assume the problem is the following line:
Looking at the file you mentioned, it appears that Rails now modifies the
Date
class directly rather than definingActiveSupport::CoreExtensions::Date
; furthermore, passing:default
as the key toDATE_FORMATS
appears to just callto_default_s
on the object. The easiest way to deal with this would probably be to remove the whole reference toActiveSupport::CoreExtensions
, since the code also specifies a default:You could also specify one of the date formats Rails adds in
conversions.rb
as so: