mirror of
https://github.com/moparisthebest/mailcatcher
synced 2024-10-31 23:45:06 -04:00
16 lines
344 B
Ruby
16 lines
344 B
Ruby
require "sprockets"
|
|
require "sprockets-sass"
|
|
require "compass"
|
|
|
|
require "mail_catcher/web/application"
|
|
|
|
module MailCatcher
|
|
module Web
|
|
Assets = Sprockets::Environment.new(Application.root).tap do |sprockets|
|
|
Dir["#{Application.root}/{,vendor}/assets/*"].each do |path|
|
|
sprockets.append_path(path)
|
|
end
|
|
end
|
|
end
|
|
end
|