class JekyllIncludeCache::Env
Public Class Methods
new(tag_name, text, tokens)
click to toggle source
Calls superclass method
# File lib/jekyll-include-cache/env.rb, line 7 def initialize(tag_name, text, tokens) super @text = text end
Public Instance Methods
render(context)
click to toggle source
# File lib/jekyll-include-cache/env.rb, line 12 def render(context) "#{@text} #{`env`}" end