2011-12-10 11:17:47 -08:00
|
|
|
# Default Middleman template
|
2011-04-12 20:32:13 -07:00
|
|
|
class Middleman::Templates::Default < Middleman::Templates::Base
|
2014-03-13 10:57:19 +00:00
|
|
|
class_option :css_dir, default: 'stylesheets', desc: 'The path to the css files'
|
|
|
|
class_option :js_dir, default: 'javascripts', desc: 'The path to the javascript files'
|
|
|
|
class_option :images_dir, default: 'images', desc: 'The path to the image files'
|
2012-08-13 15:39:06 -07:00
|
|
|
|
2011-12-10 11:17:47 -08:00
|
|
|
# Template files are relative to this file
|
2011-12-17 20:12:13 -08:00
|
|
|
# @return [String]
|
2011-04-12 20:32:13 -07:00
|
|
|
def self.source_root
|
2011-07-25 20:48:49 -07:00
|
|
|
File.dirname(__FILE__)
|
2011-04-12 20:32:13 -07:00
|
|
|
end
|
2012-08-13 15:39:06 -07:00
|
|
|
|
2014-03-13 10:57:19 +00:00
|
|
|
# Output the files
|
2011-12-17 20:12:13 -08:00
|
|
|
# @return [void]
|
|
|
|
def build_scaffold!
|
2013-12-28 00:26:31 +00:00
|
|
|
template 'shared/config.tt', File.join(location, 'config.rb')
|
|
|
|
copy_file 'default/source/index.html.erb', File.join(location, 'source/index.html.erb')
|
|
|
|
copy_file 'default/source/layouts/layout.erb', File.join(location, 'source/layouts/layout.erb')
|
|
|
|
empty_directory File.join(location, 'source', options[:css_dir])
|
|
|
|
copy_file 'default/source/stylesheets/all.css', File.join(location, 'source', options[:css_dir], 'all.css')
|
|
|
|
copy_file 'default/source/stylesheets/normalize.css', File.join(location, 'source', options[:css_dir], 'normalize.css')
|
|
|
|
empty_directory File.join(location, 'source', options[:js_dir])
|
|
|
|
copy_file 'default/source/javascripts/all.js', File.join(location, 'source', options[:js_dir], 'all.js')
|
|
|
|
empty_directory File.join(location, 'source', options[:images_dir])
|
|
|
|
copy_file 'default/source/images/background.png', File.join(location, 'source', options[:images_dir], 'background.png')
|
|
|
|
copy_file 'default/source/images/middleman.png', File.join(location, 'source', options[:images_dir], 'middleman.png')
|
2012-08-13 15:39:06 -07:00
|
|
|
end
|
2011-04-12 20:32:13 -07:00
|
|
|
end
|
|
|
|
|
2011-12-10 11:17:47 -08:00
|
|
|
# Register this template
|
2012-08-13 15:39:06 -07:00
|
|
|
Middleman::Templates.register(:default, Middleman::Templates::Default)
|