Sha256: e834a8e5855a5f2c9e7d013b5e785c06fc0c1acd714612594ef225a045b6e5ad
Contents?: true
Size: 608 Bytes
Versions: 5
Compression:
Stored size: 608 Bytes
Contents
# frozen_string_literal: true module Spina module Admin::Conferences::Blog # Spina::Blog::Engine class Engine < ::Rails::Engine isolate_namespace Spina::Admin::Conferences::Blog config.before_initialize do ::Spina::Plugin.register do |plugin| plugin.name = 'conferences-blog' plugin.namespace = 'conferences/blog' end end config.generators do |g| g.test_framework :rspec, fixture: false g.fixture_replacement :factory_bot, dir: 'spec/factories' g.assets false g.helper false end end end end
Version data entries
5 entries across 5 versions & 1 rubygems