Module: Paggio::Format
- Defined in:
- lib/paggio/format.rb
Class Method Summary collapse
Class Method Details
.escape(string) ⇒ Object
22 23 24 |
# File 'lib/paggio/format.rb', line 22 def self.escape(string) string.to_s end |
.print(io, text, level = 0) ⇒ Object
18 19 20 |
# File 'lib/paggio/format.rb', line 18 def self.print(io, text, level = 0) io.print "#{"\t" * level}#{text}" end |
.puts(io, text, level = 0) ⇒ Object
14 15 16 |
# File 'lib/paggio/format.rb', line 14 def self.puts(io, text, level = 0) io.puts "#{"\t" * level}#{text}" end |