Sha256: 6ba9d52ae725611822a341dc0624496797b2a6cfd4e11b8852260fe826a605bd
Contents?: true
Size: 934 Bytes
Versions: 2
Compression:
Stored size: 934 Bytes
Contents
## # Engine Extension 是为 Rails 引擎提供的扩展关注点。 # .enable_initializer 方法简化了知识层枚举和数据库迁移脚本的加载。 module Unidom::Common::EngineExtension extend ActiveSupport::Concern #included do |includer| #end module ClassMethods def enable_initializer(enum_enabled: false, migration_enabled: false) if enum_enabled require 'unidom/common/yaml_helper' initializer :load_config_initializers do |app| Unidom::Common::YamlHelper.load_enum config: app.config, root: config.root end end if migration_enabled initializer :append_migrations do |app| config.paths['db/migrate'].expanded.each { |expanded_path| app.config.paths['db/migrate'] << expanded_path } unless Unidom::Common::Neglection.namespace_neglected?(self.class.name)||app.root.to_s.match(root.to_s) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
unidom-common-1.9.1 | lib/unidom/common/engine_extension.rb |
unidom-common-1.9 | lib/unidom/common/engine_extension.rb |