module Gordon::Application::Types::Base

Public Instance Methods

get_template_path() click to toggle source
# File lib/gordon/application/types.rb, line 5
def get_template_path
  curdir = File.dirname(__FILE__)
  template_path = File.join(curdir, 'templates', "#{get_template}.rb")

  File.expand_path(template_path)
end