Sha256: da54c74fd8d132a42b1b0692a65921d683af5f1316a5a1fce403dc501ff98474
Contents?: true
Size: 683 Bytes
Versions: 6
Compression:
Stored size: 683 Bytes
Contents
require 'rails' module Twitter module Bootswatch module Rails module Fontawesome class Engine < ::Rails::Engine initializer 'twitter-bootswatch-rails-fontawesome.setup', :after => 'less-rails.after.load_config_initializers', :group => :all do |app| app.config.assets.paths << File.join(config.root, 'vendor', 'toolkit') app.config.less.paths << File.join(config.root, 'vendor', 'toolkit') end initializer 'twitter-bootswatch-rails-fontawesome.setup_helpers' do |app| app.config.to_prepare do end end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems