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