Sha256: 832dfe2463f3b6546090e93355efbfbaddb0830841c12f2ca3c8550818be9de5

Contents?: true

Size: 741 Bytes

Versions: 2

Compression:

Stored size: 741 Bytes

Contents

# Use this hook to configure ckeditor
if Object.const_defined?("Ckeditor")
  Ckeditor.setup do |config|
    # ==> ORM configuration
    # Load and configure the ORM. Supports :active_record (default), :mongo_mapper and
    # :mongoid (bson_ext recommended) by default. Other ORMs may be
    # available as additional gems.
    require 'ckeditor/orm/active_record'
    
    # Allowed image file types for upload. 
    # Set to nil or [] (empty array) for all file types
    # config.image_file_types = ["jpg", "jpeg", "png", "gif", "tiff"] 
    
    # Allowed attachment file types for upload. 
    # Set to nil or [] (empty array) for all file types
    # config.attachment_file_types = ["doc", "docx", "rar", "zip", "xls", "swf"]
  end
end

Version data entries

2 entries across 1 versions & 1 rubygems

Version Path
ckeditor-3.6.0.pre lib/generators/ckeditor/templates/ckeditor.rb
ckeditor-3.6.0.pre test/dummy/config/initializers/ckeditor.rb