rambler-digital-solutions/Generamba

View on GitHub
lib/generamba/template/installer/abstract_installer.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Generamba

  # Abstract template installer class
  class AbstractInstaller
    def install_template(template_declaration)
      raise 'Abstract Method - you should implement it in the concrete subclass'
    end
  end
end