# coding: utf-8 ################################################ # © Alexander Semyonov, 2013—2013, MIT License # # Author: Alexander Semyonov # ################################################ require 'giteaucrat/formatters/coffee_formatter' module Giteaucrat module Formatters class ErlangFormatter < CoffeeFormatter COMMENT_PARTS = %w(% % %) COPYRIGHT_REGEXP = %r{(?%+\n)(?(%\s*[^\s/]+.*\s%\n)+)(%\s+%?\n(?(%\s*.*%?\n)+))?\k\n+} end end end