mirror of
https://github.com/twbs/bootstrap-sass.git
synced 2022-11-09 12:27:02 -05:00
14 lines
305 B
Ruby
14 lines
305 B
Ruby
require File.expand_path('../boot', __FILE__)
|
|
|
|
require 'rails/all'
|
|
Bundler.require(*Rails.groups)
|
|
require 'bootstrap-sass'
|
|
require 'slim-rails'
|
|
require 'jquery-rails'
|
|
|
|
module Dummy
|
|
class Application < Rails::Application
|
|
config.assets.enabled = true if config.assets.respond_to?(:enabled)
|
|
end
|
|
end
|
|
|