I have ckeditor working in my development environment with no complaints. I followed this sample app to get this working.
https://github.com/fxposter/rails_3_1_with_ckeditor_and_carrierwave
The problem I am having is that when deploying to my production environment I get the following error in my log files when performing ajax requests. Normally in development mode this would call create.js.coffee with no complaints.
Started POST "/blasts" for 24.163.20.124 at 2011-11-08 12:00:21 -0500
Processing by BlastsController#create as JS
Parameters: {"utf8"=>"รข", "authenticity_token"=>"PdhwLPB1RIQMeOTZIXMWQ6I0aJy/S9Pi6bC+7VbA848=", "blast"=>{"description"=>"asdfsadf", "subject"=>"sadf", "content"=>"<p>\r\n\tasdf</p>\r\n"}, "commit"=>"Create Blast"}
Completed 500 Internal Server Error in 107ms
ActionView::MissingTemplate (Missing template blasts/create, application/create with {:handlers=>[:erb, :builder], :formats=>[:js, :html], :locale=>[:en, :en]}. Searched in:
* "/home/ctilley/Development/ratatouille_catering/app/views"
* "/home/ctilley/Development/ratatouille_catering/vendor/bundle/ruby/1.9.1/bundler/gems/ckeditor-745025f17168/app/views"
):
app/controllers/blasts_controller.rb:20:in `create'
Here is my create method the error referring to:
def create
@blast = Blast.new(params[:blast])
if @blast.save
respond_with @blast, :location => blasts_url #this is line 20
end
end
Here is create.js.coffee just in case
$('#errors').empty()
$('#errors').show()
<% if @blast.errors.any? %>
$('<%= escape_javascript(render :partial => "errors", :locals => {:target => @blast })%>')
.appendTo('#errors')
<% else %>
$('<%= escape_javascript(render(:partial => @blast))%>')
.appendTo('#blast_table')
.hide()
.fadeIn(200)
$('#errors').hide()
$('#new_blast')[0].reset()
instance = CKEDITOR.instances.blast_content
instance.setData("")
$('#blasts_count').html '<%= blasts_count %>'
<% end %>
$('#error_close').click ->
$('#errors').fadeOut()