Letting the formatters register themselves.
This commit is contained in:
parent
c55c7685b9
commit
0403b17c2e
8 changed files with 19 additions and 17 deletions
|
@ -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
|
||||
|
|
|
@ -135,3 +135,5 @@ module Twine
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
Twine::Formatters.formatters << Twine::Formatters::Android.new
|
||||
|
|
|
@ -111,3 +111,5 @@ module Twine
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
Twine::Formatters.formatters << Twine::Formatters::Apple.new
|
||||
|
|
|
@ -133,3 +133,5 @@ module Twine
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
Twine::Formatters.formatters << Twine::Formatters::Django.new
|
||||
|
|
|
@ -93,3 +93,5 @@ module Twine
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
Twine::Formatters.formatters << Twine::Formatters::Flash.new
|
||||
|
|
|
@ -102,3 +102,5 @@ module Twine
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
Twine::Formatters.formatters << Twine::Formatters::Gettext.new
|
||||
|
|
|
@ -74,3 +74,5 @@ module Twine
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
Twine::Formatters.formatters << Twine::Formatters::JQuery.new
|
||||
|
|
|
@ -132,3 +132,5 @@ module Twine
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
Twine::Formatters.formatters << Twine::Formatters::Tizen.new
|
||||
|
|
Reference in a new issue