Sha256: ecf527d60217343176bcc75cad32732e0eb8cf6c3edd9d7250103f37891ba999

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

module Vedeu

  # Generic class to loading a template and parsing it via ERb.
  #
  # @api private
  class Template

    include Vedeu::ViewHelpers

    # @param (see Vedeu::Template#new)
    # @return [void]
    def self.parse(object, path, options = {})
      new(object, path, options).parse
    end

    # Returns a new instance of Vedeu::Template.
    #
    # @param object [Class]
    # @param path [String]
    # @param options [Hash]
    # @option options name [String] The name of an interface.
    # @return [Template]
    def initialize(object, path, options = {})
      @object  = object
      @path    = path.to_s
      @options = options || {}
    end

    # @return [void]
    def parse
      ERB.new(load, nil, '-').result(binding)
    end

    protected

    # @!attribute [r] object
    # @return [Class]
    attr_reader :object

    # @!attribute [r] options
    # @return [Hash]
    attr_reader :options

    private

    # @return [String]
    def load
      File.read(path)
    end

    # @raise [MissingRequired] when the path is empty.
    # @raise [MissingRequired] when the path does not exist.
    # @return [String]
    def path
      fail MissingRequired, 'No path to template specified.' if @path.empty?

      unless File.exist?(@path)
        fail MissingRequired, "Template file cannot be found. (#{@path})"
      end

      @path
    end

  end # Template

end # Vedeu

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vedeu-0.4.53 lib/vedeu/support/template.rb
vedeu-0.4.52 lib/vedeu/support/template.rb
vedeu-0.4.51 lib/vedeu/support/template.rb