module P

Constants

VERSION

Public Class Methods

template_paths() click to toggle source
# File lib/p.rb, line 7
def self.template_paths
  template_paths = []
  template_paths << File.join(ENV['HOME'], ".p") # ~/.p directory
  template_paths << File.join(File.dirname(__FILE__), "templates") # Built-in template directory
  template_paths
end