lib/ckeditor/hooks/formtastic.rb



# frozen_string_literal: true

require 'formtastic'

class CkeditorInput
  include ::Formtastic::Inputs::Base

  def to_html
    input_wrapping do
      label_html <<
        builder.cktext_area(method, input_html_options)
    end
  end
end