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

Version Path
bootstrap_leather-0.10.14 lib/bootstrap_leather/engine.rb
bootstrap_leather-0.10.13 lib/bootstrap_leather/engine.rb
bootstrap_leather-0.10.11 lib/bootstrap_leather/engine.rb
bootstrap_leather-0.10.10 lib/bootstrap_leather/engine.rb
bootstrap_leather-0.10.9 lib/bootstrap_leather/engine.rb
bootstrap_leather-0.10.8 lib/bootstrap_leather/engine.rb
bootstrap_leather-0.10.7 lib/bootstrap_leather/engine.rb
bootstrap_leather-0.10.6 lib/bootstrap_leather/engine.rb
bootstrap_leather-0.10.5 lib/bootstrap_leather/engine.rb