Sha256: 1867602fd5b5117fddd387654bd2fbfa36ba6dd6684f88c64b8ee445c0c819be

Contents?: true

Size: 761 Bytes

Versions: 6

Compression:

Stored size: 761 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.exist?(template_file)
    require template_file
  else
    Middleman::Templates.register(File.basename(dir).to_sym, Middleman::Templates::Local)
  end
end

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
middleman-core-3.3.5 lib/middleman-core/templates/local.rb
middleman-core-cj-3.3.6 lib/middleman-core/templates/local.rb
middleman-core-cj-3.3.5 lib/middleman-core/templates/local.rb
middleman-core-cj-3.3.4 lib/middleman-core/templates/local.rb
middleman-core-3.3.4 lib/middleman-core/templates/local.rb
middleman-core-3.3.3 lib/middleman-core/templates/local.rb