Sha256: 92e4000cf319884e5492d7923717d38294dc4c67bbb44590ce077fa490a972f5

Contents?: true

Size: 808 Bytes

Versions: 3

Compression:

Stored size: 808 Bytes

Contents

# frozen_string_literal: true

module LoggableActivity
  # Engine
  #
  # This module defines the LoggableActivity engine for use within a Rails application.
  # It leverages Rails::Engine to create an isolated namespace, ensuring that the components
  # of the LoggableActivity engine (such as models, controllers, and views) do not interfere
  # with those of the host application or other engines.
  #
  # Example Usage:
  # In a Rails application, you can mount this engine to make its functionality available:
  #
  #   mount LoggableActivity::Engine, at: "/loggable_activity"
  #
  # This will allow the application to utilize the features provided by the LoggableActivity engine
  # under the specified mount path.
  #
  class Engine < ::Rails::Engine
    isolate_namespace LoggableActivity
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
loggable_activity-0.5.7 lib/loggable_activity/engine.rb
loggable_activity-0.5.6 lib/loggable_activity/engine.rb
loggable_activity-0.5.4 lib/loggable_activity/engine.rb