Sha256: b92309fd35e69ec44152dde7e19f4469a95db36ac006cb04c5f2c6fa9f9aadf1

Contents?: true

Size: 827 Bytes

Versions: 3

Compression:

Stored size: 827 Bytes

Contents

module Stache
  # Change these defaults in, say, an initializer.
  #
  # Stache.template_base_path = Rails.root.join('app', 'templates')
  #
  # Or with the block syntax:
  #
  # Stache.configure do |config|
  #   config.template_base_path = Rails.root.join('app', 'views', 'shared')
  #
  #   use :mustache # or :handlebars
  # end
  module Config
    attr_accessor :template_base_path, :shared_path

    def configure
      yield self
    end


    def template_base_path
      @template_base_path ||= ::Rails.root.join('app', 'templates')
    end

    def template_base_path= path
      @template_base_path = Pathname.new(path)
    end

    def shared_path
      @shared_path ||= ::Rails.root.join('app', 'templates', 'shared')
    end

    def use template_engine
      require "stache/#{template_engine}"
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
stache-1.0.0.rc lib/stache/config.rb
stache-0.9.1 lib/stache/config.rb
stache-0.9.0 lib/stache/config.rb