mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
18 lines
No EOL
489 B
Ruby
18 lines
No EOL
489 B
Ruby
require 'compass'
|
|
|
|
class Middleman::Templates::Compass < Middleman::Templates::Base
|
|
def self.source_root
|
|
# Middleman.templates_path
|
|
end
|
|
|
|
def build_scaffold
|
|
# directory options[:template].to_s, location
|
|
end
|
|
end
|
|
|
|
$stderr.puts Compass::Frameworks::ALL.map { |f| f.name }.inspect
|
|
|
|
# Dir[File.join(Middleman.templates_path, "*")].each do |dir|
|
|
# next unless File.directory?(dir)
|
|
# Middleman::Templates.register(File.basename(dir).to_sym, Middleman::Templates::Local)
|
|
# end |