Sha256: 05f8ae2e9ca5eb6629f99817e6cd0daaadad343dc669165f8249543e6f9e762f
Contents?: true
Size: 555 Bytes
Versions: 9
Compression:
Stored size: 555 Bytes
Contents
# frozen_string_literal: true module BootstrapLeather # Bootstrap Leather Engine class Engine < ::Rails::Engine config.app_generators do |g| # Use bootstrap leather for scaffolds g.templates.unshift BootstrapLeather::Engine.root.join('lib/templates') end config.generators do |g| g.hidden_namespaces << :test_unit << :mongoid g.orm :active_record g.template_engine :haml g.test_framework :rspec, fixture: false g.stylesheets false g.javascripts false end end end
Version data entries
9 entries across 9 versions & 1 rubygems