D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
td-agent
/
embedded
/
lib
/
ruby
/
gems
/
2.1.0
/
gems
/
tilt-1.4.1
/
lib
/
tilt
/
Filename :
plain.rb
back
Copy
require 'tilt/template' module Tilt # Raw text (no template functionality). class PlainTemplate < Template self.default_mime_type = 'text/html' def self.engine_initialized? true end def prepare end def evaluate(scope, locals, &block) @output ||= data end end end