Sha256: 7f505867d083450e616beddc7a18060d5cc97241c6cd8c965c311a7f3b6ee186
Contents?: true
Size: 772 Bytes
Versions: 23
Compression:
Stored size: 772 Bytes
Contents
module Mumuki module Laboratory class Engine < ::Rails::Engine require 'mumuki/styles' require 'muvment' config.generators.stylesheets = false config.generators.javascripts = false config.generators.test_framework = :rspec config.assets.precompile += %w(user_shape.png) config.autoload_paths += %W(#{config.root}/plugins) config.autoload_paths += %W(#{config.root}/app/helpers/concerns) config.registration_notification_format = {only: [:id, :name, :email, :image_url]} config.action_dispatch.perform_deep_munge = false initializer "static assets" do |app| app.middleware.insert_before(::ActionDispatch::Static, ::ActionDispatch::Static, "#{root}/public") end end end end
Version data entries
23 entries across 23 versions & 1 rubygems