Sha256: e3cb6d98d7eede4e9faf9eeaea1ef16e1c1a6143c6e2d81c754a8c3690c6da33

Contents?: true

Size: 435 Bytes

Versions: 1

Compression:

Stored size: 435 Bytes

Contents

module ReportUi
  class Engine < Rails::Engine
    paths.app.controllers     << "lib/app/controllers"
    paths.app.helpers         << "lib/app/helpers"
    paths.app.models          << "lib/app/models"
    paths.app.views           << "lib/app/views"
    paths.config.routes       = "lib/config/routes.rb"

    initializer "static assets" do |app|
      app.middleware.use ::ActionDispatch::Static, "#{root}/public"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
report_ui-0.0.1.alpha lib/report_ui/engine.rb