Sha256: 5a82063e6db36d7903bbb2c860d5b22673397d0757c8e6f3173930e3e393c99c
Contents?: true
Size: 553 Bytes
Versions: 2
Compression:
Stored size: 553 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 File.expand_path('../../../tasks/release_notes.rake', __FILE__) end initializer 'release_notes.action_controller' do |app| ActiveSupport.on_load :action_controller do helper ReleaseNotes::ApplicationHelper end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
release_notes-1.0.4 | lib/release_notes/engine.rb |
release_notes-1.0.3 | lib/release_notes/engine.rb |