stujo/applinks

View on GitHub
lib/applinks/engine.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Applinks
  class Engine < ::Rails::Engine
    isolate_namespace Applinks
    initializer "applinks" do |app|
      ::ApplicationHelper.send :include, Applinks::ApplicationHelper
    end

    config.generators do |g|
      g.test_framework      :rspec,        :fixture => false
      g.fixture_replacement :factory_girl, :dir => 'spec/factories'
      g.assets false
      g.helper false
    end

  end
end