Sha256: 26c450f08fead05bcfc63179eae5cf3e11590811b95ffb2dad2b622e261eec73
Contents?: true
Size: 479 Bytes
Versions: 7
Compression:
Stored size: 479 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| ActiveSupport.on_load(:action_view) do include Helper end end end end
Version data entries
7 entries across 7 versions & 1 rubygems