Sha256: afbc81037cb31732e5243ab9d75aec1799e255d6eccfdbfb6d3b630be95ac49d

Contents?: true

Size: 1.11 KB

Versions: 2

Compression:

Stored size: 1.11 KB

Contents

# encoding: utf-8
require 'tudu_file_keys'

module Tudu
  # = Tudu::Templates
  module Templates
    # == Tudufile file template
    TUDU_FILE_TEMPLATE = <<-EOS
# encoding: utf-8

# !!!!!!! in tudu ver 0.0.1 this file not using !!!!!!!

# if you want to use notification, set target type. default => :none
# you can set :none, :mail
# target_type :mail

# if you want to use notification, set targets. default => []
# if you choose target_type none, you must not set targets.
# if you choose mail, you must set target email addresses.
# targets ["target1@abcdefg", "target2@abcdefg"]
    EOS

    # == todo file template
    TUDU_TODOS_FILE_TEMPLATE = ''
    # == doing file template
    TUDU_DOINGS_FILE_TEMPLATE = ''
    # == done file template
    TUDU_DONES_FILE_TEMPLATE = ''

    # == template files
    INIT_FILES_TEMPLATE = {
      TuduFileKeys::TUDU_FILE_KEY => TUDU_FILE_TEMPLATE,
      TuduFileKeys::TUDU_TODO_KEY => TUDU_TODOS_FILE_TEMPLATE,
      TuduFileKeys::TUDU_DOING_KEY => TUDU_DOINGS_FILE_TEMPLATE,
      TuduFileKeys::TUDU_DONE_KEY => TUDU_DONES_FILE_TEMPLATE
    }
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tudu-0.0.7 lib/tudu_templates.rb
tudu-0.0.6 lib/tudu_templates.rb