class Trekyll::TemplateFilesInit

Public Class Methods

new() click to toggle source
# File lib/trekyll/initializator.rb, line 5
def initialize
end

Public Instance Methods

templates_init() click to toggle source
# File lib/trekyll/initializator.rb, line 7
def templates_init
    trekyll_template = File.expand_path('../../config_templates',File.dirname(__FILE__))
    local_dir = Dir.pwd
    FileUtils.cp_r trekyll_template + "/.", local_dir
end