Added legacy method for registering formatters back (was removed in 0403b17
) to ensure backwards compability.
This commit is contained in:
parent
faa896b91b
commit
1e363f9c65
1 changed files with 11 additions and 0 deletions
|
@ -4,6 +4,17 @@ module Twine
|
|||
|
||||
class << self
|
||||
attr_reader :formatters
|
||||
|
||||
###
|
||||
# registers a new formatter
|
||||
#
|
||||
# formatter_class - the class of the formatter to register
|
||||
#
|
||||
# returns array of active formatters
|
||||
#
|
||||
def register_formatter formatter_class
|
||||
@formatters << formatter_class.new
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Reference in a new issue