Module: Sinatra::Templates
- Included in:
- Base
- Defined in:
- lib/sinatra/base.rb
Overview
Template rendering methods. Each method takes the name of a template to render as a Symbol and returns a String with the rendered output, as well as an optional hash with additional options.
‘template` is either the name or path of the template as symbol (Use `:’subdir/myview’‘ for views in subdirectories), or a string that will be rendered.
Possible options are:
:content_type The content type to use, same arguments as content_type.
:layout If set to false, no layout is rendered, otherwise
the specified layout is used (Ignored for `sass` and `less`)
:layout_engine Engine to use for rendering the layout.
:locals A hash with local variables that should be available
in the template
:scope If set, template is evaluate with the binding of the given
object rather than the application instance.
:views Views directory to use.
Defined Under Namespace
Modules: ContentTyped
Instance Method Summary collapse
- #builder(template = nil, options = {}, locals = {}, &block) ⇒ Object
- #coffee(template, options = {}, locals = {}) ⇒ Object
- #creole(template, options = {}, locals = {}) ⇒ Object
- #erb(template, options = {}, locals = {}) ⇒ Object
- #erubis(template, options = {}, locals = {}) ⇒ Object
-
#find_template(views, name, engine) {|::File.join(views, "#{name}.#{@preferred_extension}")| ... } ⇒ Object
Calls the given block for every possible template file in views, named name.ext, where ext is registered on engine.
- #haml(template, options = {}, locals = {}) ⇒ Object
- #initialize ⇒ Object
- #less(template, options = {}, locals = {}) ⇒ Object
- #liquid(template, options = {}, locals = {}) ⇒ Object
- #markaby(template = nil, options = {}, locals = {}, &block) ⇒ Object
- #markdown(template, options = {}, locals = {}) ⇒ Object
- #nokogiri(template = nil, options = {}, locals = {}, &block) ⇒ Object
- #radius(template, options = {}, locals = {}) ⇒ Object
- #rdoc(template, options = {}, locals = {}) ⇒ Object
- #sass(template, options = {}, locals = {}) ⇒ Object
- #scss(template, options = {}, locals = {}) ⇒ Object
- #slim(template, options = {}, locals = {}) ⇒ Object
- #textile(template, options = {}, locals = {}) ⇒ Object
- #yajl(template, options = {}, locals = {}) ⇒ Object
Instance Method Details
#builder(template = nil, options = {}, locals = {}, &block) ⇒ Object
576 577 578 579 |
# File 'lib/sinatra/base.rb', line 576 def builder(template=nil, ={}, locals={}, &block) [:default_content_type] = :xml render_ruby(:builder, template, , locals, &block) end |
#coffee(template, options = {}, locals = {}) ⇒ Object
605 606 607 608 |
# File 'lib/sinatra/base.rb', line 605 def coffee(template, ={}, locals={}) .merge! :layout => false, :default_content_type => :js render :coffee, template, , locals end |
#creole(template, options = {}, locals = {}) ⇒ Object
619 620 621 |
# File 'lib/sinatra/base.rb', line 619 def creole(template, ={}, locals={}) render :creole, template, , locals end |
#erb(template, options = {}, locals = {}) ⇒ Object
547 548 549 |
# File 'lib/sinatra/base.rb', line 547 def erb(template, ={}, locals={}) render :erb, template, , locals end |
#erubis(template, options = {}, locals = {}) ⇒ Object
551 552 553 554 555 |
# File 'lib/sinatra/base.rb', line 551 def erubis(template, ={}, locals={}) warn "Sinatra::Templates#erubis is deprecated and will be removed, use #erb instead.\n" \ "If you have Erubis installed, it will be used automatically." render :erubis, template, , locals end |
#find_template(views, name, engine) {|::File.join(views, "#{name}.#{@preferred_extension}")| ... } ⇒ Object
Calls the given block for every possible template file in views, named name.ext, where ext is registered on engine.
630 631 632 633 634 635 636 |
# File 'lib/sinatra/base.rb', line 630 def find_template(views, name, engine) yield ::File.join(views, "#{name}.#{@preferred_extension}") Tilt.mappings.each do |ext, engines| next unless ext != @preferred_extension and engines.include? engine yield ::File.join(views, "#{name}.#{ext}") end end |
#haml(template, options = {}, locals = {}) ⇒ Object
557 558 559 |
# File 'lib/sinatra/base.rb', line 557 def haml(template, ={}, locals={}) render :haml, template, , locals end |
#initialize ⇒ Object
542 543 544 545 |
# File 'lib/sinatra/base.rb', line 542 def initialize super @default_layout = :layout end |
#less(template, options = {}, locals = {}) ⇒ Object
571 572 573 574 |
# File 'lib/sinatra/base.rb', line 571 def less(template, ={}, locals={}) .merge! :layout => false, :default_content_type => :css render :less, template, , locals end |
#liquid(template, options = {}, locals = {}) ⇒ Object
581 582 583 |
# File 'lib/sinatra/base.rb', line 581 def liquid(template, ={}, locals={}) render :liquid, template, , locals end |
#markaby(template = nil, options = {}, locals = {}, &block) ⇒ Object
601 602 603 |
# File 'lib/sinatra/base.rb', line 601 def markaby(template=nil, ={}, locals={}, &block) render_ruby(:mab, template, , locals, &block) end |
#markdown(template, options = {}, locals = {}) ⇒ Object
585 586 587 |
# File 'lib/sinatra/base.rb', line 585 def markdown(template, ={}, locals={}) render :markdown, template, , locals end |
#nokogiri(template = nil, options = {}, locals = {}, &block) ⇒ Object
610 611 612 613 |
# File 'lib/sinatra/base.rb', line 610 def nokogiri(template=nil, ={}, locals={}, &block) [:default_content_type] = :xml render_ruby(:nokogiri, template, , locals, &block) end |
#radius(template, options = {}, locals = {}) ⇒ Object
597 598 599 |
# File 'lib/sinatra/base.rb', line 597 def radius(template, ={}, locals={}) render :radius, template, , locals end |
#rdoc(template, options = {}, locals = {}) ⇒ Object
593 594 595 |
# File 'lib/sinatra/base.rb', line 593 def rdoc(template, ={}, locals={}) render :rdoc, template, , locals end |
#sass(template, options = {}, locals = {}) ⇒ Object
561 562 563 564 |
# File 'lib/sinatra/base.rb', line 561 def sass(template, ={}, locals={}) .merge! :layout => false, :default_content_type => :css render :sass, template, , locals end |
#scss(template, options = {}, locals = {}) ⇒ Object
566 567 568 569 |
# File 'lib/sinatra/base.rb', line 566 def scss(template, ={}, locals={}) .merge! :layout => false, :default_content_type => :css render :scss, template, , locals end |
#slim(template, options = {}, locals = {}) ⇒ Object
615 616 617 |
# File 'lib/sinatra/base.rb', line 615 def slim(template, ={}, locals={}) render :slim, template, , locals end |
#textile(template, options = {}, locals = {}) ⇒ Object
589 590 591 |
# File 'lib/sinatra/base.rb', line 589 def textile(template, ={}, locals={}) render :textile, template, , locals end |
#yajl(template, options = {}, locals = {}) ⇒ Object
623 624 625 626 |
# File 'lib/sinatra/base.rb', line 623 def yajl(template, ={}, locals={}) [:default_content_type] = :json render :yajl, template, , locals end |