Sha256: a4064d558fc18be2ea12ebc1537f83c7ed72628a5313b4df669d6425ce43a9be

Contents?: true

Size: 358 Bytes

Versions: 1

Compression:

Stored size: 358 Bytes

Contents

require "cf/templates/version"

module Cf
  module Templates
    class FileTemplateProvider

      def initialize(id)
        @id = id
      end

      def set_template_location(template_file_path)
        @template_location = template_file_path
      end

      def get_template
        File.open(@template_location, 'rb').read
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
cf-templates-0.3.0 lib/cf/templates.rb