Class: Object

Inherits:
BasicObject
Defined in:
lib/report_print/core_extensions.rb

Instance Method Summary collapse

Instance Method Details

#report_print(rp) ⇒ Object



4
5
6
7
8
9
10
11
# File 'lib/report_print/core_extensions.rb', line 4

def report_print(rp)
  rp.unless_seen(self) do
    rp.write_header(self)
    rp.multiline(after: rp.color("end", :bright_blue), after_empty: false) do
      rp.write_instance_variables(self)
    end
  end
end