Class: Awestruct::HamlFile

Inherits:
FrontMatterFile show all
Includes:
Hamlable
Defined in:
lib/awestruct/haml_file.rb

Instance Attribute Summary

Attributes inherited from FrontMatterFile

#front_matter, #raw_page_content

Attributes inherited from Renderable

#site

Instance Method Summary collapse

Methods included from Hamlable

#content, #render

Methods inherited from RenderableFile

#raw_page_content, #render

Methods inherited from Renderable

#render

Constructor Details

#initialize(site, source_path, relative_source_path, options = {}) ⇒ HamlFile

Returns a new instance of HamlFile.



14
15
16
# File 'lib/awestruct/haml_file.rb', line 14

def initialize(site, source_path, relative_source_path, options = {})
  super(site, source_path, relative_source_path, options)
end

Instance Method Details

#output_extensionObject



22
23
24
# File 'lib/awestruct/haml_file.rb', line 22

def output_extension
  File.extname( output_filename )
end

#output_filenameObject



18
19
20
# File 'lib/awestruct/haml_file.rb', line 18

def output_filename
  File.basename( self.source_path, '.haml' )
end