andreychernih/railsbox

View on GitHub
app/domain/templates.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Templates
  ROOT_PATH = 'templates'
  EXT = '.erb'

  module_function

  def path(template)
    File.join(ROOT_PATH, template)
  end
end