Sha256: d9c3890383e50e58062cbf6a7cd52f6b96782fc1d44a36e77401f39b405d3b45

Contents?: true

Size: 522 Bytes

Versions: 3

Compression:

Stored size: 522 Bytes

Contents

module ReleaseNotes
  class Engine < ::Rails::Engine
    require 'bootstrap-sass'
    
    isolate_namespace ReleaseNotes

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

    rake_tasks do
      load '../../tasks/release_notes.rake'
    end

    initializer 'release_notes.action_controller' do |app|
      ActiveSupport.on_load :action_controller do
        helper ReleaseNotes::ApplicationHelper
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
release_notes-1.0.1 lib/release_notes/engine.rb
release_notes-1.0.0 lib/release_notes/engine.rb
release_notes-0.5.1 lib/release_notes/engine.rb