Sha256: 8493296cb3c5e4a15cef3d8c3bed228475625f520f5f22537d8c0d71d7880dd0

Contents?: true

Size: 763 Bytes

Versions: 4

Compression:

Stored size: 763 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

4 entries across 4 versions & 1 rubygems

Version Path
middleman-core-3.3.2 lib/middleman-core/templates/local.rb
middleman-core-3.3.1 lib/middleman-core/templates/local.rb
middleman-core-3.3.0 lib/middleman-core/templates/local.rb
middleman-core-3.2.2 lib/middleman-core/templates/local.rb