Sha256: e0e85a4546aa648b7e8a3dc3624533bc4f378a8382229e098b88adb87d350a16

Contents?: true

Size: 411 Bytes

Versions: 6

Compression:

Stored size: 411 Bytes

Contents

require 'haml'
require 'will_paginate'

module Bhf
  class Engine < Rails::Engine

    # Config defaults
    config.page_title = nil
    config.mount_at = 'bhf'
    config.auth_logic_from = 'ApplicationController'
    
    # config.bhf_logic = YAML::load(IO.read('config/bhf.yml'))

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

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bhf-0.1.5 lib/engine.rb
bhf-0.1.4 lib/engine.rb
bhf-0.1.3 lib/engine.rb
bhf-0.1.2 lib/engine.rb
bhf-0.1.1 lib/engine.rb
bhf-0.1.0 lib/engine.rb