Sha256: 297c46f046d715a5f26d12c50dfc6242ad9a972cf5a0ddf82c78787296ad0aa2
Contents?: true
Size: 485 Bytes
Versions: 5
Compression:
Stored size: 485 Bytes
Contents
module Bootstrap module Generators class Engine < ::Rails::Engine initializer 'bootstrap-generators.after.load_config_initializers', :after => :load_config_initializers do |app| app.config.less.paths << File.join(config.root, 'vendor', 'twitter', 'bootstrap', 'less') if app.config.respond_to?(:less) app.config.sass.load_paths << File.join(config.root, 'vendor', 'twitter', 'bootstrap', 'sass') if app.config.respond_to?(:sass) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems