Sha256: a17f7f696efbb3dcea89d1b2e5d6e39f8b1be27a3b7cc37a3a33dfc284a1e852
Contents?: true
Size: 632 Bytes
Versions: 1
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true module BootstrapLeather # Some documentation goes here class Engine < ::Rails::Engine isolate_namespace BootstrapLeather config.app_generators do |g| g.templates.unshift BootstrapLeather::Engine.root.join('lib/templates') end config.generators do |g| g.templates.unshift BootstrapLeather::Engine.root.join('lib/templates') 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bootstrap_leather-0.10.4 | lib/bootstrap_leather/engine.rb |