Sha256: 4ba71559e89e3bd4f54153af7515ab2e98439fc833f93728d2b0818e474cc479

Contents?: true

Size: 1.43 KB

Versions: 5

Compression:

Stored size: 1.43 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
    
    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

5 entries across 5 versions & 1 rubygems

Version Path
shoppe-1.0.2 lib/shoppe/engine.rb
shoppe-1.0.1 lib/shoppe/engine.rb
shoppe-1.0.0 lib/shoppe/engine.rb
shoppe-0.0.21 lib/shoppe/engine.rb
shoppe-0.0.20 lib/shoppe/engine.rb