Teeplate

A Crystal library for rendering multiple template files.

Build Status

Installation

Add this to your application's shard.yml:

dependencies:
  teeplate:
    github: mosop/teeplate

Supported Template Engines

Usage

require "teeplate"

Example

Let's make our crystal init template.

Template structure

Template file example

# shard.yml.ecr
name: <%= @file %>
version: 0.1.0

authors:
  - <%= @author %>

license: MIT

Template class definition

class CrystalInitTemplate < Teeplate::FileTree
  directory "#{__DIR__}/path/to/template"

  @file : String
  @class : String
  @author : String
  @year : Int32

  def initialize(out_dir, @file, @class, @author, @year)
    super out_dir
  end
end

Here we go!

CrystalInitTemplate.new("/path/to/output", "teeplate", "Teeplate", "mosop", 2016).render

Output structure

Output example

# shard.yml
name: teeplate
version: 0.1.0

authors:
  - mosop

license: MIT

Overwriting

Forced

If a file already exists, Teeplate skips rendering the file. To force overwriting, set the :force option:

class Template < Teeplate::FileTree
  directory "/path/to/template"

  @face : String

  def initialize(out_dir, @face)
    super out_dir
  end
end

Template.new("/path/to/output", ":)").render
Template.new("/path/to/output", ":(").render(force: true) # files to be overwritten
Template.new("/path/to/output", ":P").render # nothing happens

Interactive

If the :interactive option is true, Teeplate prompts us to select whether to overwrite an existing file.

shard.yml already exists...
O(overwrite)/K(keep) ?

Wish List

Release Notes

Contributing

  1. Fork it ( https://github.com/mosop/teeplate/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors