Class: ScriptLogger
- Inherits:
-
Object
- Object
- ScriptLogger
- Defined in:
- lib/script_logger.rb
Instance Attribute Summary collapse
-
#entries ⇒ Object
Returns the value of attribute entries.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
-
#log_name ⇒ Object
readonly
Returns the value of attribute log_name.
Class Method Summary collapse
Instance Method Summary collapse
- #entry_count ⇒ Object
-
#initialize(args) ⇒ ScriptLogger
constructor
A new instance of ScriptLogger.
- #log(entry) ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(args) ⇒ ScriptLogger
Returns a new instance of ScriptLogger.
11 12 13 14 15 |
# File 'lib/script_logger.rb', line 11 def initialize(args) @log_name = args[:log_name] @headers = args[:headers] @entries = [] << CSV.generate_line(@headers).chomp end |
Instance Attribute Details
#entries ⇒ Object
Returns the value of attribute entries.
9 10 11 |
# File 'lib/script_logger.rb', line 9 def entries @entries end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
8 9 10 |
# File 'lib/script_logger.rb', line 8 def headers @headers end |
#log_name ⇒ Object (readonly)
Returns the value of attribute log_name.
8 9 10 |
# File 'lib/script_logger.rb', line 8 def log_name @log_name end |
Class Method Details
.all_logs_formatted ⇒ Object
37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/script_logger.rb', line 37 def self.all_logs_formatted output = ObjectSpace.each_object(self).inject("") do |all_logs,log| all_logs += "#{log}\n\n" end <<-STR #{output} STR end |
Instance Method Details
#entry_count ⇒ Object
24 25 26 |
# File 'lib/script_logger.rb', line 24 def entry_count entries.count - 1 end |
#log(entry) ⇒ Object
17 18 19 20 21 22 |
# File 'lib/script_logger.rb', line 17 def log(entry) unknown_entry_keys = entry.keys - headers raise "Unknown Entry Keys: #{unknown_entry_keys}" if unknown_entry_keys.any? ordered_entry = headers.map {|entry_key| entry.fetch(entry_key, nil)} entries << CSV.generate_line(ordered_entry).chomp end |
#to_s ⇒ Object
28 29 30 31 32 33 34 35 |
# File 'lib/script_logger.rb', line 28 def to_s output = entries.inject("") { |r,entry| r += "#{entry}\n" } log_title = "#{log_name} -- #{entry_count} records" <<-STR #{log_title.center(40,'-')} #{output} STR end |