Sha256: 9f8495ba99df4ad6cc271c86aeaf17c3b815be222017213e1cb83165bb318810

Contents?: true

Size: 1.58 KB

Versions: 7

Compression:

Stored size: 1.58 KB

Contents

module Shoppe
  class Engine < ::Rails::Engine
    isolate_namespace Shoppe
    
    if Shoppe.respond_to?(:root)
      config.autoload_paths << File.join(Shoppe.root, 'lib')
      config.assets.precompile += ['shoppe/sub.css', 'shoppe/printable.css']
    end
    
    # We don't want any automatic generators in the engine.
    config.generators do |g|
      g.orm             :active_record
      g.test_framework  false
      g.stylesheets     false
      g.javascripts     false
      g.helper          false
    end

    config.to_prepare do
      Dir.glob(Rails.root + "app/decorators/**/*_decorator*.rb").each do |c|
        require_dependency(c)
      end
    end
    
    initializer 'shoppe.initialize' do |app|
      # Add the default settings
      Shoppe.add_settings_group :system_settings, [:store_name, :email_address, :currency_unit, :tax_name, :demo_mode]
      
      # Add middleware
      app.config.middleware.use Shoppe::SettingsLoader
      
      # Load our migrations into the application's db/migrate path
      unless app.root.to_s.match root.to_s
        config.paths["db/migrate"].expanded.each do |expanded_path|
          app.config.paths["db/migrate"] << expanded_path
        end
      end      
      
      # Load view helpers for the base application
      ActiveSupport.on_load(:action_view) do
        require 'shoppe/view_helpers'
        ActionView::Base.send :include, Shoppe::ViewHelpers
      end
      
      # Load default navigation
      require 'shoppe/default_navigation'
    end
    
    generators do
      require 'shoppe/setup_generator'
    end
    
  end
end

Version data entries

7 entries across 7 versions & 3 rubygems

Version Path
shoppe-1.0.8 lib/shoppe/engine.rb
kylekthompson-shoppe-1.0.7 lib/shoppe/engine.rb
shoppe-1.0.7 lib/shoppe/engine.rb
shoppe-1.0.6 lib/shoppe/engine.rb
shoppe-paypal-1.1.0 vendor/bundle/ruby/2.1.0/gems/shoppe-1.0.5/lib/shoppe/engine.rb
shoppe-1.0.5 lib/shoppe/engine.rb
shoppe-1.0.3 lib/shoppe/engine.rb