Sha256: 885c4d6c0d2728c90aa534b7973f8884cc412800a61c30f9c8b98fcf64aa22f1
Contents?: true
Size: 276 Bytes
Versions: 12
Compression:
Stored size: 276 Bytes
Contents
# frozen_string_literal: true require 'rails/engine' module Lite module Component class Engine < ::Rails::Engine initializer('lite-component.setup', group: :all) do |app| app.paths['config'] << File.join(config.root, 'app') end end end end
Version data entries
12 entries across 12 versions & 1 rubygems