Method: Jets::Naming.template_path

Defined in:
lib/jets/naming.rb

.template_path(app_class) ⇒ Object



7
8
9
10
# File 'lib/jets/naming.rb', line 7

def template_path(app_class)
  underscored = app_class.to_s.underscore.gsub('/','-')
  "#{template_path_prefix}-#{underscored}.yml"
end