Sha256: b463b16948b320024c7086b3bb1620c554e7dd24238a7268dfbc0e6a2ba5ce48
Contents?: true
Size: 445 Bytes
Versions: 4
Compression:
Stored size: 445 Bytes
Contents
module TinyMCE::Rails class Engine < ::Rails::Engine config.tinymce = ActiveSupport::OrderedOptions.new # Set an explicit base path for TinyMCE assets (usually defaults to /assets/tinymce) config.tinymce.base = nil initializer "precompile", :group => :all do |app| app.config.assets.precompile << "tinymce.js" end initializer "helper" do |app| ActionController::Base.helper(Helper) end end end
Version data entries
4 entries across 4 versions & 2 rubygems