Sha256: 726fb06ee53452aa182f98b9d77de5abaca1d2e29d7e8c94aa8b7f0979679353

Contents?: true

Size: 563 Bytes

Versions: 5

Compression:

Stored size: 563 Bytes

Contents

module SpreeCustomNotifications
  class Engine < Rails::Engine
    require 'spree/core'
    isolate_namespace Spree
    engine_name 'spree_custom_notifications'

    config.autoload_paths += %W(#{config.root}/lib)

    # use rspec for tests
    config.generators do |g|
      g.test_framework :rspec
    end

    def self.activate
      Dir.glob(File.join(File.dirname(__FILE__), '../../app/**/*_decorator*.rb')) do |c|
        Rails.configuration.cache_classes ? require(c) : load(c)
      end
    end

    config.to_prepare &method(:activate).to_proc
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
spree_custom_notifications-0.5 lib/spree_custom_notifications/engine.rb
spree_custom_notifications-0.4 lib/spree_custom_notifications/engine.rb
spree_custom_notifications-0.3 lib/spree_custom_notifications/engine.rb
spree_custom_notifications-0.2 lib/spree_custom_notifications/engine.rb
spree_custom_notifications-0.1 lib/spree_custom_notifications/engine.rb