Class: Middleman::Templates::Html5
- Inherits:
-
Base
- Object
- Thor::Group
- Base
- Middleman::Templates::Html5
- Defined in:
- middleman-core/lib/middleman-core/templates/html5.rb
Overview
HTML5 Boilerplate template
Class Method Summary (collapse)
-
+ (String) source_root
Templates are relative to this file.
Instance Method Summary (collapse)
-
- (void) build_scaffold!
Output the files.
Methods inherited from Base
#generate_bundler!, #generate_gitignore!, #generate_rack!, #initialize
Constructor Details
This class inherits a constructor from Middleman::Templates::Base
Class Method Details
+ (String) source_root
Templates are relative to this file
16 17 18 |
# File 'middleman-core/lib/middleman-core/templates/html5.rb', line 16 def self.source_root File.dirname(__FILE__) end |
Instance Method Details
- (void) build_scaffold!
This method returns an undefined value.
Output the files
22 23 24 25 26 |
# File 'middleman-core/lib/middleman-core/templates/html5.rb', line 22 def build_scaffold! template "shared/config.tt", File.join(location, "config.rb") directory "html5/source", File.join(location, "source") empty_directory File.join(location, "source") end |