Class: Awestruct::Handlers::JavascriptHandler
Constant Summary
collapse
- CHAIN =
Awestruct::HandlerChain.new( /\.js$/,
Awestruct::Handlers::FileHandler,
Awestruct::Handlers::FrontMatterHandler,
Awestruct::Handlers::InterpolationHandler,
Awestruct::Handlers::JavascriptHandler
)
Instance Attribute Summary
Attributes inherited from BaseHandler
#delegate, #site
Instance Method Summary
collapse
Methods inherited from BaseHandler
#content_line_offset, #dependencies, #execute_shell, #front_matter, #inherit_front_matter, #input_mtime, #output_path, #path, #raw_content, #relative_source_path, #stale?, #to_chain
Constructor Details
Returns a new instance of JavascriptHandler.
19
20
21
|
# File 'lib/awestruct/handlers/javascript_handler.rb', line 19
def initialize(site, delegate)
super( site, delegate )
end
|
Instance Method Details
#content_syntax ⇒ Object
35
36
37
|
# File 'lib/awestruct/handlers/javascript_handler.rb', line 35
def content_syntax
:javascript
end
|
#output_extension ⇒ Object
31
32
33
|
# File 'lib/awestruct/handlers/javascript_handler.rb', line 31
def output_extension
'.js'
end
|
#output_filename ⇒ Object
27
28
29
|
# File 'lib/awestruct/handlers/javascript_handler.rb', line 27
def output_filename
File.basename( relative_source_path || path)
end
|
#rendered_content(context, with_layouts = false) ⇒ Object
39
40
41
|
# File 'lib/awestruct/handlers/javascript_handler.rb', line 39
def rendered_content(context, with_layouts=false)
delegate.rendered_content( context, with_layouts )
end
|
#simple_name ⇒ Object
23
24
25
|
# File 'lib/awestruct/handlers/javascript_handler.rb', line 23
def simple_name
File.basename( relative_source_path || path, '.js' )
end
|