class Megam::Config
Public Class Methods
add_formatter(name, file_path=nil)
click to toggle source
# File lib/megam/config.rb 26 def self.add_formatter(name, file_path=nil) 27 formatters << [name, file_path] 28 end
formatters()
click to toggle source
# File lib/megam/config.rb 30 def self.formatters 31 @formatters ||= [] 32 end
inspect()
click to toggle source
# File lib/megam/config.rb 22 def self.inspect 23 configuration.inspect 24 end