Sha256: 48bf3188b35fc6dbfa43c45e4e8c677aa30948e4da4b9017f330a4834934339c
Contents?: true
Size: 771 Bytes
Versions: 7
Compression:
Stored size: 771 Bytes
Contents
# Local templates class Middleman::Templates::Local < Middleman::Templates::Base # Look for templates in ~/.middleman # @return [String] def self.source_root File.join(File.expand_path("~/"), ".middleman") end # Just copy from the template path # @return [void] def build_scaffold! directory options[:template].to_s, location end end # Iterate over the directories in the templates path and register each one. Dir[File.join(Middleman::Templates::Local.source_root, "*")].each do |dir| next unless File.directory?(dir) template_file = File.join(dir, "template.rb") if File.exists?(template_file) require template_file else Middleman::Templates.register(File.basename(dir).to_sym, Middleman::Templates::Local) end end
Version data entries
7 entries across 7 versions & 1 rubygems