File: template_factory.rb

package info (click to toggle)
ruby-liquid 5.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,444 kB
  • sloc: ruby: 14,571; makefile: 6
file content (9 lines) | stat: -rw-r--r-- 142 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Liquid
  class TemplateFactory
    def for(_template_name)
      Liquid::Template.new
    end
  end
end