Letting the formatters register themselves.

This commit is contained in:
Sebastian Ludwig 2015-12-06 18:22:45 +01:00
parent c55c7685b9
commit 0403b17c2e
8 changed files with 19 additions and 17 deletions

View file

@ -1,25 +1,13 @@
Dir[File.join(File.dirname(__FILE__), 'formatters', '*.rb')].each do |file|
require file
end
module Twine
module Formatters
@formatters = [Formatters::Apple.new, Formatters::Android.new, Formatters::Gettext.new, Formatters::JQuery.new, Formatters::Flash.new, Formatters::Django.new, Formatters::Tizen.new]
@formatters = []
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
raise "#{formatter_class} already registered" if @formatters.include? formatter_class
@formatters << formatter_class
end
end
end
end
Dir[File.join(File.dirname(__FILE__), 'formatters', '*.rb')].each do |file|
require file
end

View file

@ -135,3 +135,5 @@ module Twine
end
end
end
Twine::Formatters.formatters << Twine::Formatters::Android.new

View file

@ -111,3 +111,5 @@ module Twine
end
end
end
Twine::Formatters.formatters << Twine::Formatters::Apple.new

View file

@ -133,3 +133,5 @@ module Twine
end
end
end
Twine::Formatters.formatters << Twine::Formatters::Django.new

View file

@ -93,3 +93,5 @@ module Twine
end
end
end
Twine::Formatters.formatters << Twine::Formatters::Flash.new

View file

@ -102,3 +102,5 @@ module Twine
end
end
end
Twine::Formatters.formatters << Twine::Formatters::Gettext.new

View file

@ -74,3 +74,5 @@ module Twine
end
end
end
Twine::Formatters.formatters << Twine::Formatters::JQuery.new

View file

@ -132,3 +132,5 @@ module Twine
end
end
end
Twine::Formatters.formatters << Twine::Formatters::Tizen.new